/src/sbin/gpt/ |
remove.c | 79 struct gpt_find find; local in function:cmd_remove 81 memset(&find, 0, sizeof(find)); 82 find.msg = "removed"; 86 if (gpt_add_find(gpt, &find, ch) == -1) 92 return gpt_change_ent(gpt, &find, change, NULL);
|
type.c | 81 struct gpt_find find; local in function:cmd_type 83 memset(&find, 0, sizeof(find)); 85 find.msg = "type changed"; 103 if (gpt == NULL || gpt_add_find(gpt, &find, ch) == -1) 114 return gpt_change_ent(gpt, &find, change, &newtype);
|
label.c | 127 struct gpt_find find; local in function:cmd_label 130 memset(&find, 0, sizeof(find)); 131 find.msg = "label changed"; 150 if (gpt_add_find(gpt, &find, ch) == -1) 161 return gpt_change_ent(gpt, &find, change, name);
|
uuid.c | 103 struct gpt_find find; local in function:cmd_uuid 110 memset(&find, 0, sizeof(find)); 111 find.msg = "UUID changed"; 129 if (gpt_add_find(gpt, &find, ch) == -1) 140 rc = gpt_change_ent(gpt, &find, change_ent, &ctx); 144 if (find.all) 145 return gpt_change_hdr(gpt, &find, change_hdr, &ctx);
|
/src/sys/external/bsd/drm/dist/bsd-core/ |
drm_drawable.c | 61 struct bsd_drm_drawable_info find, *result; local in function:drm_get_drawable_info 63 find.handle = handle; 64 result = RB_FIND(drawable_tree, &dev->drw_head, &find);
|
/src/sys/arch/sun3/sun3/ |
autoconf.c | 189 findfunc_t find; local in function:cpu_rootconf 210 find = NULL; 215 find = nf->func; 218 if (find) 219 booted_device = (*find)(promname, bp->ctlrNum, bp->unitNum); 234 * Functions to find devices using PROM boot parameters. 267 /* Find the device at this target/LUN */
|
/src/sys/arch/sun68k/sun68k/ |
autoconf.c | 132 /* find these first */ 145 /* Find all `early' mainbus buses */ 151 /* Find the remaining buses */ 155 /* Lastly, find the PROM console */ 317 findfunc_t find; local in function:cpu_rootconf 341 find = NULL; 346 find = nf->func; 349 if (find) 350 booted_device = (*find)(promname, prom_ctlr, prom_unit); 365 * Functions to find devices using PROM boot parameters [all...] |
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
sanitizer_stackdepotbase.h | 40 static Node *find(Node *s, args_type args, u32 hash); 61 Node *StackDepotBase<Node, kReservedBits, kTabSizeLog>::find(Node *s, function in class:__sanitizer::StackDepotBase 106 // First, try to find the existing stack. 107 Node *node = find(s, args, h); 112 node = find(s2, args, h);
|
/src/sys/fs/autofs/ |
autofs_vnops.c | 653 struct autofs_node *anp, find; local in function:autofs_node_find 658 find.an_name = autofs_strndup(name, namelen, KM_SLEEP); 659 anp = RB_FIND(autofs_node_tree, &parent->an_children, &find); 668 kmem_strfree(find.an_name);
|
/src/sys/arch/hpc/stand/hpcboot/menu/ |
menu.cpp | 532 print(L"couldn't find temporary directory.\n", TRUE); 572 HANDLE find; local in function:_find_pref_dir 575 find = FindFirstFile(path, &fd); 577 if (find != INVALID_HANDLE_VALUE) { 584 FindClose(find); 587 } while (FindNextFile(find, &fd)); 589 FindClose(find);
|
/src/sys/ddb/ |
db_sym.c | 146 char *find, *p; local in function:db_sift 152 find = dsa->symstr; /* String we're looking for. */ 157 if ((c = *find++) != 0) { 158 len = strlen(find); 164 } while (strncmp(p, find, len) != 0); 209 * Find the closest symbol to val, and return its name 299 * If we could not find a reasonable name+offset representation,
|
/src/sys/dist/pf/net/ |
pf_osfp.c | 431 /* Find a fingerprint in the list */ 433 pf_osfp_find(struct pf_osfp_list *list, struct pf_os_fingerprint *find, 441 if (f->_field != find->_field) \ 444 if (f->_field == 0 || find->_field % f->_field) \ 450 if (f->fp_tcpopts != find->fp_tcpopts || 451 f->fp_optcnt != find->fp_optcnt || 452 f->fp_ttl < find->fp_ttl || 453 f->fp_ttl - find->fp_ttl > ttldiff || 455 (find->fp_flags & (PF_OSFP_DF|PF_OSFP_TS0))) 463 if (find->fp_mss == 0 578 struct pf_os_fingerprint *f, *f2, find; local in function:pf_osfp_validate [all...] |
/src/sys/dev/pci/ |
radeonfb_bios.c | 144 /* find looks for the table relative to its "parent" */ 145 uint16_t (*find)(struct radeonfb_softc *, struct rb_table *); member in struct:rb_table 156 NULL, /* find */ 164 NULL, /* find */ 172 NULL, /* find */ 180 NULL, /* find */ 188 NULL, /* find */ 196 rb_find_mem_reset_table, /* find */ 204 rb_find_short_mem_reset_table, /* find */ 212 rb_find_asic_table, /* find */ [all...] |
/src/games/adventure/ |
init.c | 116 find, invent; variable in typeref:typename:int 245 find = vocab(DECR('f', 'i', 'n', 'd', '\0'), 2, 0);
|