| /netbsd/src/sys/dev/ic/ |
| D | pca9564.c | 123 uint8_t control; in pca9564_acquire_bus() local 126 control = CSR_READ(sc, PCA9564_I2CCON); in pca9564_acquire_bus() 127 control |= I2CCON_ENSIO; in pca9564_acquire_bus() 128 control &= ~(I2CCON_STA|I2CCON_STO|I2CCON_SI|I2CCON_AA); in pca9564_acquire_bus() 129 control &= ~I2CCON_CR_MASK; in pca9564_acquire_bus() 130 control |= sc->sc_i2c_clock; in pca9564_acquire_bus() 131 CSR_WRITE(sc, PCA9564_I2CCON, control); in pca9564_acquire_bus() 141 uint8_t control; in pca9564_release_bus() local 144 control = CSR_READ(sc, PCA9564_I2CCON); in pca9564_release_bus() 145 control &= ~I2CCON_ENSIO; in pca9564_release_bus() [all …]
|
| D | lpt.c | 158 u_char control; in lptopen() local 193 control = LPC_SELECT | LPC_NINIT; in lptopen() 194 bus_space_write_1(iot, ioh, lpt_control, control); in lptopen() 212 control |= LPC_IENABLE; in lptopen() 214 control |= LPC_AUTOLF; in lptopen() 215 sc->sc_control = control; in lptopen() 216 bus_space_write_1(iot, ioh, lpt_control, control); in lptopen() 302 u_char control = sc->sc_control; in lptpushbytes() local 328 control | LPC_STROBE); in lptpushbytes() 331 bus_space_write_1(iot, ioh, lpt_control, control); in lptpushbytes() [all …]
|
| /netbsd/src/lib/libm/arch/x86_64/ |
| D | fenv.c | 126 uint16_t control; in __init_libm() local 128 __fnstcw(&control); in __init_libm() 129 __fe_dfl_env.x87.control = control; in __init_libm() 283 uint16_t control; in fegetround() local 291 __fnstcw(&control); in fegetround() 294 if ((control & _X87_ROUNDING_MASK) in fegetround() 299 return (control & _X87_ROUNDING_MASK); in fegetround() 311 uint16_t control; in fesetround() local 318 __fnstcw(&control); in fesetround() 324 control &= ~_X87_ROUNDING_MASK; in fesetround() [all …]
|
| /netbsd/src/lib/libm/arch/i387/ |
| D | fenv.c | 110 .control = __NetBSD_NPXCW__, /* Control word register */ 142 uint16_t control; in __init_libm() local 148 __fnstcw(&control); in __init_libm() 149 __fe_dfl_env.x87.control = control; in __init_libm() 301 uint16_t control; in fegetround() local 309 __fnstcw(&control); in fegetround() 311 return (control & __X87_ROUND_MASK); in fegetround() 323 uint16_t control; in fesetround() local 330 __fnstcw(&control); in fesetround() 331 control &= ~__X87_ROUND_MASK; in fesetround() [all …]
|
| /netbsd/src/external/bsd/openldap/dist/doc/drafts/ |
| D | draft-ietf-ldapext-ldapv3-dupent-xx.txt | 34 This document describes a Duplicate Entry Representation control 35 extension for the LDAP Search operation. By using the control with 52 value is represented in the list. The Server-Side Sorting control 66 valued attribute is sorted into the list, a separate control is 79 ordered list of all members of a group. It would use this control 95 for the request control is "2.16.840.1.113719.1.27.101.1" and the 101 This control is included in the searchRequest message as part of the 155 When two or more attributes are specified by this control, the 159 limited number of attributes in the control. 167 processing the control. [all …]
|
| D | draft-legg-ldap-acm-admin-xx.txt | 42 pertains to access control administration, for use by the Lightweight 45 administration, e.g., subschema, access control and collective 47 support access control administration, but does not define a 48 particular access control scheme. 78 as it pertains to access control administration, for use by the 83 e.g., subschema, access control and collective attributes. The parts 86 describes the administrative framework for access control. 88 An access control scheme describes the means by which access to 91 employing access control schemes but does not define a particular 92 access control scheme. Two access control schemes known as Basic [all …]
|
| /netbsd/src/external/bsd/tcpdump/dist/ |
| D | print-llc.c | 157 uint16_t control; in llc_print() local 182 control = GET_U_1(p + 2); in llc_print() 183 if ((control & LLC_U_FMT) == LLC_U_FMT) { in llc_print() 208 control = GET_LE_U_2(p + 2); in llc_print() 249 ND_PRINT(", ctrl 0x%02x: ", control); in llc_print() 251 ND_PRINT(", ctrl 0x%04x: ", control); in llc_print() 263 && control == LLC_UI) { in llc_print() 281 control == LLC_UI) { in llc_print() 287 control == LLC_UI) { in llc_print() 299 control == LLC_UI) { in llc_print() [all …]
|
| D | print-atalk.c | 297 uint8_t control; in atp_print() local 310 control = GET_U_1(ap->control); in atp_print() 311 switch (control & 0xc0) { in atp_print() 315 control & atpXO? " " : "*", in atp_print() 323 switch (control & (atpEOM|atpSTS)) { in atp_print() 338 control & atpEOM? "*" : " ", in atp_print() 341 switch (control & (atpXO|atpSTS)) { in atp_print() 364 if (control & (atpXO|atpEOM|atpSTS)) { in atp_print() 366 if (control & atpXO) { in atp_print() 370 if (control & atpEOM) { in atp_print() [all …]
|
| /netbsd/src/external/bsd/atf/dist/atf-c++/ |
| D | utils_test.cpp | 344 const pid_t control = fork(); in ATF_TEST_CASE_BODY() local 345 ATF_REQUIRE(control != -1); in ATF_TEST_CASE_BODY() 346 if (control == 0) in ATF_TEST_CASE_BODY() 350 ATF_REQUIRE(waitpid(control, &status, 0) != -1); in ATF_TEST_CASE_BODY() 359 const pid_t control = fork(); in ATF_TEST_CASE_BODY() local 360 ATF_REQUIRE(control != -1); in ATF_TEST_CASE_BODY() 361 if (control == 0) in ATF_TEST_CASE_BODY() 365 ATF_REQUIRE(waitpid(control, &status, 0) != -1); in ATF_TEST_CASE_BODY() 374 const pid_t control = fork(); in ATF_TEST_CASE_BODY() local 375 ATF_REQUIRE(control != -1); in ATF_TEST_CASE_BODY() [all …]
|
| /netbsd/src/external/bsd/atf/dist/atf-c/ |
| D | utils_test.c | 399 const pid_t control = fork(); in ATF_TC_BODY() local 400 ATF_REQUIRE(control != -1); in ATF_TC_BODY() 401 if (control == 0) in ATF_TC_BODY() 405 ATF_REQUIRE(waitpid(control, &status, 0) != -1); in ATF_TC_BODY() 414 const pid_t control = fork(); in ATF_TC_BODY() local 415 ATF_REQUIRE(control != -1); in ATF_TC_BODY() 416 if (control == 0) in ATF_TC_BODY() 420 ATF_REQUIRE(waitpid(control, &status, 0) != -1); in ATF_TC_BODY() 429 const pid_t control = fork(); in ATF_TC_BODY() local 430 ATF_REQUIRE(control != -1); in ATF_TC_BODY() [all …]
|
| /netbsd/src/external/bsd/tcpdump/dist/tests/ |
| D | ptp_v2_1.out | 1 …ed2 : 0, clock identity : 0x38f3abfffe96ec12, port id : 1, seq id : 690, control : 0 (Sync), log m… 2 …ed2 : 0, clock identity : 0x38f3abfffe96ec12, port id : 1, seq id : 690, control : 0 (Sync), log m… 3 …ed2 : 0, clock identity : 0x38f3abfffe96ec12, port id : 1, seq id : 697, control : 0 (Sync), log m… 4 …ed2 : 0, clock identity : 0x38f3abfffe96ec12, port id : 1, seq id : 346, control : 0 (Sync), log m… 5 …ed2 : 0, clock identity : 0x38f3abfffe96ec12, port id : 1, seq id : 691, control : 0 (Sync), log m… 6 …ed2 : 0, clock identity : 0x38f3abfffe96ec12, port id : 1, seq id : 691, control : 0 (Sync), log m… 7 …ed2 : 0, clock identity : 0x38f3abfffe96ec12, port id : 1, seq id : 698, control : 0 (Sync), log m… 8 …ed2 : 0, clock identity : 0x38f3abfffe96ec12, port id : 1, seq id : 692, control : 0 (Sync), log m… 9 …ed2 : 0, clock identity : 0x38f3abfffe96ec12, port id : 1, seq id : 692, control : 0 (Sync), log m… 10 …ed2 : 0, clock identity : 0x38f3abfffe96ec12, port id : 1, seq id : 699, control : 0 (Sync), log m… [all …]
|
| D | ptp_ethernet.out | 1 …ed2 : 0, clock identity : 0x7483efffff01ac16, port id : 274, seq id : 0, control : 0 (Sync), log m… 2 …ed2 : 0, clock identity : 0x7483efffff01ac16, port id : 274, seq id : 0, control : 2 (Follow_Up), … 3 …ed2 : 0, clock identity : 0x7483efffff01ac16, port id : 274, seq id : 0, control : 5 (Other), log … 4 …ed2 : 0, clock identity : 0x7483efffff01ac16, port id : 274, seq id : 1, control : 0 (Sync), log m… 5 …ed2 : 0, clock identity : 0x7483efffff01ac16, port id : 274, seq id : 1, control : 2 (Follow_Up), … 6 …ed2 : 0, clock identity : 0x7483efffff01ac16, port id : 274, seq id : 2, control : 0 (Sync), log m… 7 …ed2 : 0, clock identity : 0x7483efffff01ac16, port id : 274, seq id : 2, control : 2 (Follow_Up), … 8 …ed2 : 0, clock identity : 0x7483efffff01ac16, port id : 274, seq id : 1, control : 5 (Other), log … 9 …ed2 : 0, clock identity : 0x7483efffff01ac16, port id : 274, seq id : 3, control : 0 (Sync), log m… 10 …ed2 : 0, clock identity : 0x7483efffff01ac16, port id : 274, seq id : 3, control : 2 (Follow_Up), … [all …]
|
| /netbsd/src/external/gpl3/gdb/dist/gdb/ |
| D | infrun.c | 767 = user_visible_resume_ptid (cur_thr->control.stepping_command); in follow_fork() 854 (tp->control.step_resume_breakpoint); in follow_fork() 855 step_range_start = tp->control.step_range_start; in follow_fork() 856 step_range_end = tp->control.step_range_end; in follow_fork() 859 step_frame_id = tp->control.step_frame_id; in follow_fork() 861 = clone_momentary_breakpoint (tp->control.exception_resume_breakpoint); in follow_fork() 870 tp->control.step_range_start = 0; in follow_fork() 871 tp->control.step_range_end = 0; in follow_fork() 872 tp->control.step_frame_id = null_frame_id; in follow_fork() 907 tp->control.step_resume_breakpoint in follow_fork() [all …]
|
| /netbsd/src/sys/dev/scsipi/ |
| D | scsipi_cd.h | 46 u_int8_t control; member 62 u_int8_t control; member 72 u_int8_t control; member 82 u_int8_t control; member 95 u_int8_t control; member 106 u_int8_t control; member 158 uint8_t control; member 183 uint8_t control; member 217 uint8_t control; member 252 uint8_t control; member [all …]
|
| D | scsi_tape.h | 64 u_int8_t control; member 77 u_int8_t control; member 85 u_int8_t control; member 94 u_int8_t control; member 107 u_int8_t control; member 117 u_int8_t control; member 125 u_int8_t control; member 208 u_int8_t control; member
|
| D | scsi_spc.h | 85 uint8_t control; member 94 uint8_t control; member 115 uint8_t control; member 126 uint8_t control; member 353 uint8_t control; member 379 uint8_t control; member 393 uint8_t control; member 419 uint8_t control; member 453 u_int8_t control; member 506 uint8_t control; member [all …]
|
| /netbsd/src/sys/compat/netbsd32/ |
| D | netbsd32_socket.c | 130 copyout32_msg_control(struct lwp *l, struct msghdr *mp, struct mbuf *control) in copyout32_msg_control() argument 138 if (len <= 0 || control == 0) { in copyout32_msg_control() 140 free_control_mbuf(l, control, control); in copyout32_msg_control() 146 for (m = control; len > 0 && m != NULL; m = m->m_next) { in copyout32_msg_control() 150 m = control; in copyout32_msg_control() 157 free_control_mbuf(l, control, m); in copyout32_msg_control() 194 struct mbuf *from, struct mbuf *control) in msg_recv_copyout() argument 199 error = copyout32_msg_control(l, msg, control); in msg_recv_copyout() 232 struct mbuf *from, *control; in netbsd32_recvmsg() local 243 &from, msg.msg_control != NULL ? &control : NULL, retval); in netbsd32_recvmsg() [all …]
|
| /netbsd/src/usr.sbin/sdpd/ |
| D | server.c | 95 server_init(server_t *srv, char const *control, char const *sgroup) in server_init() argument 99 assert(control != NULL); in server_init() 134 && server_open_control(srv, control) in server_init() 147 server_open_control(server_t *srv, char const *control) in server_open_control() argument 152 if (unlink(control) == -1 && errno != ENOENT) { in server_open_control() 154 control, strerror(errno), errno); in server_open_control() 174 strlcpy(un.sun_path, control, sizeof(un.sun_path)); in server_open_control() 184 if (chmod(control, S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH) == -1) { in server_open_control() 207 srv->fdidx[fd].control = true; in server_open_control() 267 srv->fdidx[fd].control = false; in server_open_l2cap() [all …]
|
| /netbsd/src/external/gpl3/gdb/dist/sim/lm32/ |
| D | dv-lm32timer.c | 33 unsigned int control; member 63 if (timer->control & 0x4) in do_timer_event() 70 else if (timer->control & 1) in do_timer_event() 77 if ((timer->snapshot == 0) && (timer->control & 1)) in do_timer_event() 83 if (timer->control & 4) in do_timer_event() 114 timers->control = value; in lm32timer_io_write_buffer() 115 if (timers->control & 0x4) in lm32timer_io_write_buffer() 151 value = timers->control; in lm32timer_io_read_buffer() 214 timers->control = 0; in lm32timer_finish()
|
| /netbsd/src/sys/dev/i2c/ |
| D | gttwsi_core.c | 207 uint32_t control, status; in gttwsi_send_stop() local 212 control = CONTROL_STOP | CONTROL_TWSIEN; in gttwsi_send_stop() 214 control |= CONTROL_IFLG; in gttwsi_send_stop() 215 gttwsi_write_4(sc, TWSI_CONTROL, control); in gttwsi_send_stop() 315 gttwsi_wait(struct gttwsi_softc *sc, uint32_t control, uint32_t expect, in gttwsi_wait() argument 330 control |= CONTROL_INTEN; in gttwsi_wait() 332 control |= CONTROL_IFLG; in gttwsi_wait() 334 gttwsi_write_4(sc, TWSI_CONTROL, control | CONTROL_TWSIEN); in gttwsi_wait() 338 control = gttwsi_read_4(sc, TWSI_CONTROL); in gttwsi_wait() 339 if (control & CONTROL_IFLG) in gttwsi_wait() [all …]
|
| /netbsd/src/external/bsd/openldap/dist/doc/rfc/ |
| D | rfc3876.txt | 31 This document describes a control for the Lightweight Directory 34 match a "values return" filter. Without support for this control, a 49 some user defined selection criteria. Without the control specified 67 This document specifies an LDAPv3 control to enable a user to return 69 elements of a newly defined "values return" filter. This control can 80 The valuesReturnFilter control is either critical or non-critical as 83 client. If the server supports the control and it is present on a 84 Search operation, the server MUST obey the control, regardless of the 87 If the control is marked as critical, and either the server does not 88 support the control or the control is applied to an operation other [all …]
|
| D | rfc4527.txt | 70 One request control, called the Pre-Read request control, indicates 72 returned. Another control, called the Post-Read request control, 74 to be returned. Each request control has a corresponding response 75 control used to return the entry. 128 The Pre-Read request control is a LDAP Control [RFC4511] whose 131 criticality may be TRUE or FALSE. This control is appropriate for 134 The corresponding response control is a LDAP Control whose 137 may be TRUE or FALSE. This control is appropriate for the 141 When the request control is attached to an appropriate update LDAP 142 request, the control requests the return of a copy of the target [all …]
|
| /netbsd/src/external/public-domain/xz/dist/src/liblzma/lzma/ |
| D | lzma2_decoder.c | 69 const uint32_t control = in[*in_pos]; in lzma2_decode() local 73 if (control == 0x00) in lzma2_decode() 76 if (control >= 0xE0 || control == 1) { in lzma2_decode() 85 if (control >= 0x80) { in lzma2_decode() 88 coder->uncompressed_size = (control & 0x1F) << 16; in lzma2_decode() 93 if (control >= 0xC0) { in lzma2_decode() 108 if (control >= 0xA0) in lzma2_decode() 114 if (control > 2) in lzma2_decode()
|
| /netbsd/src/sys/kern/ |
| D | uipc_syscalls.c | 519 struct mbuf *to, *control; in do_sys_sendmsg_so() local 528 control = (mp->msg_flags & MSG_CONTROLMBUF) ? mp->msg_control : NULL; in do_sys_sendmsg_so() 581 if (control == NULL) { in do_sys_sendmsg_so() 582 error = sockargs(&control, mp->msg_control, in do_sys_sendmsg_so() 597 MCLAIM(control, so->so_mowner); in do_sys_sendmsg_so() 604 error = (*so->so_send)(so, sa, &auio, NULL, control, flags, l); in do_sys_sendmsg_so() 606 control = NULL; in do_sys_sendmsg_so() 631 m_freem(control); in do_sys_sendmsg_so() 705 struct mbuf *from, *control; in sys_recvmsg() local 714 msg.msg_control != NULL ? &control : NULL, retval); in sys_recvmsg() [all …]
|
| D | uipc_usrreq.c | 210 struct mbuf *control) in stub_compat_70_unp_addsockcred() argument 214 return control; in stub_compat_70_unp_addsockcred() 347 unp_output(struct mbuf *m, struct mbuf *control, struct unpcb *unp) in unp_output() argument 364 control = unp_addsockcred(curlwp, control); in unp_output() 366 MODULE_HOOK_CALL(uipc_unp_70_hook, (curlwp, control), in unp_output() 367 stub_compat_70_unp_addsockcred(curlwp, control), control); in unp_output() 369 control) == 0) { in unp_output() 370 unp_dispose(control); in unp_output() 371 m_freem(control); in unp_output() 461 struct mbuf *control, struct lwp *l) in unp_send() argument [all …]
|