/src/lib/libc/stdio/ |
makebuf.c | 66 char evb[64], *evp; local in function:__senvbuf 74 if ((evp = getenv(evb)) == NULL && (evp = getenv("STDBUF")) == NULL) 77 switch (*evp) { 80 evp++; 85 evp++; 90 evp++; 95 if (!isdigit((unsigned char)*evp)) 98 s = strtoi(evp, NULL, 0, 0, 1024 * 1024, &e);
|
/src/share/examples/rump/btplay/ |
btplay.c | 72 hci_event_hdr_t *evp; local in function:main 119 evp = (void *)msg; 138 if (evp->event != HCI_EVENT_COMMAND_COMPL) 146 if (evp->event == HCI_EVENT_INQUIRY_COMPL) 148 if (evp->event == HCI_EVENT_INQUIRY_RESULT) { 183 if (evp->event != HCI_EVENT_REMOTE_NAME_REQ_COMPL) 186 nresp = (void *)(evp+1);
|
/src/sys/kern/ |
subr_evcnt.c | 129 struct evcnt * const *evp; local in function:evcnt_init 137 __link_set_foreach(evp, evcnts) { 138 if (*evp == &dummy_static_evcnt) 140 evcnt_attach_static(*evp);
|
/src/lib/librumpuser/ |
rumpuser_dl.c | 363 struct evcnt *const *evp, *const *evp_end; local in function:process_object 388 evp = dlsym(handle, "__start_link_set_evcnts"); 390 if (evp && evp_end) { 391 for (; evp < evp_end; evp++) 392 doevcntattach(*evp); 393 assert(evp == evp_end);
|
/src/sys/compat/netbsd32/ |
netbsd32_time.c | 418 struct sigevent *evp = dst; local in function:netbsd32_timer_create_fetch 426 netbsd32_to_sigevent(&ev32, evp); 435 syscallarg(netbsd32_sigeventp_t) evp; 440 SCARG(uap, clock_id), SCARG_P32(uap, evp),
|
/src/sys/dev/apm/ |
apm.c | 367 struct apm_event_info *evp; local in function:apm_record_event 373 evp = &sc->sc_event_list[sc->sc_event_ptr]; 377 evp->type = event_type; 378 evp->index = ++apm_evindex; 754 struct apm_event_info *evp; local in function:apmioctl 803 evp = (struct apm_event_info *)data; 806 *evp = sc->sc_event_list[i];
|
/src/sys/dev/hpc/apm/ |
apmdev.c | 378 struct apm_event_info *evp; local in function:apm_record_event 384 evp = &sc->sc_event_list[sc->sc_event_ptr]; 388 evp->type = event_type; 389 evp->index = ++apm_evindex; 810 struct apm_event_info *evp; local in function:apmdevioctl 844 evp = (struct apm_event_info *)data; 847 *evp = sc->sc_event_list[i];
|
/src/sys/arch/xen/xen/ |
evtchn.c | 1180 struct evtsource *evp = evtsource[i]; local in function:event_get_handler 1182 if (strcmp(evp->ev_intrname, intrid) == 0) 1183 return evp; 1193 struct evtsource *evp; local in function:xen_intr_get_count 1197 evp = event_get_handler(intrid); 1198 if (evp != NULL && cpu_idx == cpu_index(evp->ev_cpu)) 1199 count = evp->ev_evcnt.ev_count; 1209 struct evtsource *evp; local in function:xen_intr_get_assigned 1215 evp = event_get_handler(intrid) 1225 struct evtsource *evp; local in function:xen_intr_get_devname 1245 struct evtsource *evp; local in function:interrupt_construct_intrids [all...] |
/src/sys/arch/sparc/dev/ |
tctrl.c | 741 struct apm_event_info *evp; local in function:tctrl_apm_record_event 745 evp = &sc->sc_event_list[sc->sc_event_ptr]; 749 evp->type = event_type; 750 evp->index = ++tctrl_apm_evindex; 1092 struct apm_event_info *evp; local in function:tctrlioctl 1152 evp = (struct apm_event_info *)data; 1155 *evp = sc->sc_event_list[i];
|
/src/usr.sbin/pstat/ |
pstat.c | 302 char *e_vnodebase, *endvnode, *evp; local in function:vnodemode 323 for (evp = e_vnodebase; evp < endvnode; evp += VPTRSZ + VNODESZ) { 324 vp = (struct vnode *)(evp + VPTRSZ); 356 ovflw = vnode_print(*(struct vnode **)evp, vp);
|
/src/sys/ddb/ |
db_command.c | 1147 struct evcnt ev, *evp; local in function:db_event_print_cmd 1176 evp = (struct evcnt *)db_read_ptr("allevents"); 1177 while (evp != NULL) { 1178 db_read_bytes((db_addr_t)evp, sizeof(ev), (char *)&ev); 1179 evp = ev.ev_list.tqe_next;
|
/src/lib/libedit/ |
history.c | 203 #define he_seterrev(evp, code) {\ 204 evp->num = code;\ 205 evp->str = he_strerror(code);\ 417 HistEventPrivate *evp = (void *)&h->cursor->ev; local in function:history_def_add 421 elen = Strlen(evp->str); 429 memcpy(s, evp->str, elen * sizeof(*s)); 432 h_free(evp->str); 433 evp->str = s; 483 HistEventPrivate *evp = (void *)&hp->ev; local in function:history_def_delete 493 h_free(evp->str) [all...] |
/src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/ |
tsan_rtl.h | 860 Event *evp = &trace[pos]; local in function:__tsan::TraceAddEvent 862 *evp = ev;
|