/src/tests/usr.bin/xlint/lint1/ |
msg_031.c | 8 struct complete { struct 16 struct complete complete_var;
|
msg_135.c | 24 struct complete { struct 42 struct complete *complete; local in function:pointer_to_structs 44 complete = (struct complete *)incomplete; 45 sink(complete);
|
/src/lib/libedit/TEST/ |
tc1.c | 67 static unsigned char complete(EditLine *, int); 88 complete(EditLine *el, int ch) function in typeref:typename:unsigned char 158 el_set(el, EL_ADDFN, "ed-complete", "Complete argument", complete); 161 el_set(el, EL_BIND, "^I", "ed-complete", NULL);
|
wtc1.c | 57 complete(EditLine *el, int ch) function in typeref:typename:unsigned char 142 el_wset(el, EL_ADDFN, L"ed-complete", L"Complete argument", complete); 145 el_wset(el, EL_BIND, L"^I", L"ed-complete", NULL);
|
/src/sys/external/bsd/common/include/linux/ |
completion.h | 39 * that to complete(completion) and suggest the same change upstream, 116 complete(struct completion *completion) function in typeref:typename:void 156 * until someone calls complete or complete_all. 188 * Wait interruptibly with a timeout for someone to call complete or 269 * Wait interruptibly for someone to call complete or complete_all. 300 * complete or complete_all.
|
/src/sys/netbt/ |
bluetooth.h | 120 void (*complete)(void *, int); member in struct:btproto
|
/src/usr.bin/ftp/ |
complete.c | 1 /* $NetBSD: complete.c,v 1.48 2024/09/25 16:53:58 christos Exp $ */ 34 __RCSID("$NetBSD: complete.c,v 1.48 2024/09/25 16:53:58 christos Exp $"); 68 * Determine if complete is ambiguous. If unique, insert. 128 * Complete a command 158 * Complete a local file 240 * Complete an option 270 * Complete a remote file 285 (void)strlcpy(cmdbuf, "complete", sizeof(cmdbuf)); 349 * Generic complete routine 352 complete(EditLine *cel, int ch __unused function in typeref:typename:unsigned char [all...] |
/src/sys/arch/arm/broadcom/ |
bcm2835_vcaudioreg.h | 47 VC_AUDIO_MSG_TYPE_COMPLETE, // playback of samples complete 155 VC_AUDIO_COMPLETE_T complete; member in union:__anon5827fd4f0b08::__anon5827fd4f0c0a
|
/src/sys/arch/arm/s3c2xx0/ |
s3c2440_dma.c | 265 to complete */ 601 uint32_t complete; local in function:s3c2440_dmac_wait_xfer 607 complete = dxs->dxs_complete; 608 while(complete == 0) { 610 DPRINTF(("s3c2440_dma_xfer_wait: Complete: %x\n", complete)); 616 complete = 1; 621 complete = dxs->dxs_complete; 678 DPRINTF(("Abort: Wait for transfer to complete\n"));
|
/src/sys/dev/std/ |
ieee1212.c | 89 int complete, i, numdirs, type, val, *dirs; local in function:p1212_iscomplete 134 complete = 0; 138 while (!complete) { 249 complete = 1; 270 DPRINTF(("ROM is not complete\n")); 274 DPRINTF(("ROM is not complete (check != size)\n"));
|
/src/sys/external/bsd/drm2/dist/drm/i915/gvt/ |
scheduler.h | 95 int (*complete)(struct intel_vgpu_workload *); member in struct:intel_vgpu_workload
|
/src/lib/libpuffs/ |
framebuf.c | 662 int rv, complete; local in function:puffs__framev_input 673 complete = 0; 674 rv = fctrl->rfb(pu, pufbuf, fio->io_fd, &complete); 684 if (complete == 0) 730 int rv, complete, done; local in function:puffs__framev_output 738 complete = 0; 739 rv = fctrl->wfb(pu, pufbuf, fio->io_fd, &complete); 748 if (complete == 0) 751 /* else, complete write */
|
/src/sys/dev/scsipi/ |
st.c | 717 SC_DEBUG(periph, SCSIPI_DB2, ("open complete\n")); 1192 int flags, error, complete = 1; local in function:ststart1 1305 complete = 0; 1311 return complete; 1320 int error, complete; local in function:ststart 1333 complete = ststart1(periph, bp, &error); 1336 if (complete) { 1346 if (complete) {
|
/src/sys/arch/newsmips/apbus/ |
spifireg.h | 58 volatile uint32_t complete; /* WO: Command complete (?) */ member in struct:spifi_reg
|
/src/sys/dev/pci/ |
mly.c | 1532 void (*complete)(struct mly_softc *, struct mly_ccb *); local in function:mly_ccb_complete 1539 complete = mc->mc_complete; 1545 if (complete != NULL) 1546 (*complete)(mly, mc);
|
/src/sbin/scsictl/ |
scsictl.c | 459 static int complete[] = { local in function:device_format 628 if (j >= complete[i]) {
|
/src/sys/arch/sparc/include/ |
cpu.h | 167 volatile int complete; member in struct:xpmsg
|
/src/usr.bin/xlint/lint1/ |
lex.c | 693 read_quoted(bool *complete, char delim, bool wide) 709 *complete = true; 719 *complete = false; 871 check_quoted(const buffer *buf, bool complete, char delim) 913 if (it.value < ' ' && !it.escaped && complete) 926 if (!complete && delim == '"') 929 if (!complete && delim == '\'') 937 bool complete; local in function:lex_quoted 938 buffer buf = read_quoted(&complete, delim, wide); 939 check_quoted(&buf, complete, delim) [all...] |