Home
last modified time | relevance | path

Searched refs:node (Results 1 – 25 of 974) sorted by path

12345678910>>...39

/illumos-gate/usr/src/boot/common/
H A Dmerge_help.awk92 node = first;
93 while (node != -1)
96 printf "# T%s ", help[node, "T"];
97 if (help[node, "S"] != "") printf "S%s ", help[node, "S"];
98 printf "D%s\n\n", help[node, "D"];
99 for (i = 0; i < help[node, "text"]; i++)
100 printf "%s\n", help[node, "text", i];
101 node = help[node, "link"];
/illumos-gate/usr/src/boot/efi/libefi/
H A Ddevpath.c141 EFI_DEVICE_PATH *node, *copy; in efi_devpath_trim() local
144 if ((node = efi_devpath_last_node(devpath)) == NULL) in efi_devpath_trim()
146 prefix = (UINT8 *)node - (UINT8 *)devpath; in efi_devpath_trim()
149 len = prefix + DevicePathNodeLength(NextDevicePathNode(node)); in efi_devpath_trim()
153 node = (EFI_DEVICE_PATH *)((UINT8 *)copy + prefix); in efi_devpath_trim()
154 SetDevicePathEndNode(node); in efi_devpath_trim()
H A Definet.c297 EFI_DEVICE_PATH *devpath, *node; in efinet_dev_init() local
318 if ((node = efi_devpath_last_node(devpath)) == NULL) in efinet_dev_init()
321 if (DevicePathType(node) != MESSAGING_DEVICE_PATH || in efinet_dev_init()
322 DevicePathSubType(node) != MSG_MAC_ADDR_DP) in efinet_dev_init()
H A Defipart.c231 EFI_DEVICE_PATH *node, *parent; in efipart_ignore_device() local
292 if (node == NULL) in efipart_ignore_device()
307 if (node == NULL) { in efipart_ignore_device()
317 if (node == NULL) in efipart_ignore_device()
435 EFI_DEVICE_PATH *node; in efipart_testfd() local
438 if (node == NULL) in efipart_testfd()
450 EFI_DEVICE_PATH *node; in efipart_initfd() local
530 EFI_DEVICE_PATH *node; in efipart_testcd() local
533 if (node == NULL) in efipart_testcd()
595 if (node == NULL) in efipart_hdinfo_add_node()
[all …]
/illumos-gate/usr/src/boot/efi/loader/
H A Dmain.c88 EFI_DEVICE_PATH *devpath, *dp, *node; in efi_zfs_is_preferred() local
103 node = efi_devpath_last_node(devpath); in efi_zfs_is_preferred()
104 if (node == NULL) in efi_zfs_is_preferred()
512 EFI_DEVICE_PATH *node; in parse_uefi_con_out() local
530 node = (EFI_DEVICE_PATH *)buf; in parse_uefi_con_out()
531 while ((char *)node < ep) { in parse_uefi_con_out()
532 if (IsDevicePathEndType(node)) { in parse_uefi_con_out()
538 (DevicePathSubType(node) == ACPI_DP || in parse_uefi_con_out()
541 acpi = (void *)node; in parse_uefi_con_out()
549 uart = (void *)node; in parse_uefi_con_out()
[all …]
/illumos-gate/usr/src/boot/libsa/
H A Duuid_from_string.c112 u->node[0] = fromhex(s + 24, 2, &ok); in uuid_from_string()
113 u->node[1] = fromhex(s + 26, 2, &ok); in uuid_from_string()
114 u->node[2] = fromhex(s + 28, 2, &ok); in uuid_from_string()
115 u->node[3] = fromhex(s + 30, 2, &ok); in uuid_from_string()
116 u->node[4] = fromhex(s + 32, 2, &ok); in uuid_from_string()
117 u->node[5] = fromhex(s + 34, 2, &ok); in uuid_from_string()
H A Duuid_to_string.c104 tohex(&w, 2, u->node[0]); in uuid_to_string()
105 tohex(&w, 2, u->node[1]); in uuid_to_string()
106 tohex(&w, 2, u->node[2]); in uuid_to_string()
107 tohex(&w, 2, u->node[3]); in uuid_to_string()
108 tohex(&w, 2, u->node[4]); in uuid_to_string()
109 tohex(&w, 2, u->node[5]); in uuid_to_string()
/illumos-gate/usr/src/boot/sys/sys/
H A Duuid.h50 uint8_t node[_UUID_NODE_LEN]; member
/illumos-gate/usr/src/cmd/abi/appcert/static_prof/
H A Dstatic_prof.c1402 dt_list * node) in add_dtneeded() argument
1407 head = node; in add_dtneeded()
1410 if (strcmp(tail->libname, node->libname) == 0) { in add_dtneeded()
1411 free(node); in add_dtneeded()
1416 if (strcmp(tail->libname, node->libname) == 0) { in add_dtneeded()
1417 free(node); in add_dtneeded()
1421 tail->next = node; in add_dtneeded()
/illumos-gate/usr/src/cmd/acct/
H A Dacctcon.c498 print_node(const void *node, VISIT order, int level) in print_node() argument
501 tb.ta_uid = (*(struct ctab **)node)->ct_uid; in print_node()
502 CPYN(tb.ta_name, (*(struct ctab **)node)->ct_name); in print_node()
503 tb.ta_con[0] = ((*(struct ctab **)node)->ct_con[0]) / 60.0; in print_node()
504 tb.ta_con[1] = ((*(struct ctab **)node)->ct_con[1]) / 60.0; in print_node()
505 tb.ta_sc = (*(struct ctab **)node)->ct_sess; in print_node()
H A Dacctprc.c154 void print_node(const void *node, VISIT order, int level) { in print_node() argument
157 tb.ta_uid = (*(struct utab **)node)->ut_uid; in print_node()
158 CPYN(tb.ta_name, (char *)uidtonam((*(struct utab **)node)->ut_uid)); in print_node()
159 tb.ta_cpu[0] = (*(struct utab **)node)->ut_cpu[0]; in print_node()
160 tb.ta_cpu[1] = (*(struct utab **)node)->ut_cpu[1]; in print_node()
161 tb.ta_kcore[0] = (*(struct utab **)node)->ut_kcore[0]; in print_node()
162 tb.ta_kcore[1] = (*(struct utab **)node)->ut_kcore[1]; in print_node()
163 tb.ta_pc = (*(struct utab **)node)->ut_pc; in print_node()
H A Dacctprc2.c129 void print_node(const void *node, VISIT order, int level) { in print_node() argument
131 tb.ta_uid = (*(struct utab **)node)->ut_uid; in print_node()
132 CPYN(tb.ta_name, (*(struct utab **)node)->ut_name); in print_node()
133 tb.ta_cpu[0] = ((*(struct utab **)node)->ut_cpu[0]); in print_node()
134 tb.ta_cpu[1] = ((*(struct utab **)node)->ut_cpu[1]); in print_node()
135 tb.ta_kcore[0] = (*(struct utab **)node)->ut_kcore[0]; in print_node()
136 tb.ta_kcore[1] = (*(struct utab **)node)->ut_kcore[1]; in print_node()
137 tb.ta_pc = (*(struct utab **)node)->ut_pc; in print_node()
/illumos-gate/usr/src/cmd/ahciem/
H A Dahciem.c154 ahciem_devinfo(di_node_t node, void *arg) in ahciem_devinfo() argument
164 if ((driver = di_driver_name(node)) == NULL) in ahciem_devinfo()
168 inst = di_instance(node); in ahciem_devinfo()
171 while ((m = di_minor_next(node, m)) != DI_MINOR_NIL) { in ahciem_devinfo()
/illumos-gate/usr/src/cmd/ast/libshell/common/tests/
H A Dsun_solaris_cr_6805792_varmovetest1.sh106 compound node
108 node.one="dummy1"
109 node.two="dummy2"
116 nameref nodeone=node.one
117 nameref nodetwo=node.two
122 typeset -m tr.subtree["a_node"]=node
134 nameref node=tr.subtree["a_node"]
136 node.one="hello"
137 node.two="world"
H A Dsun_solaris_vartree001.sh82 nameref node=srcdata.hashnodes["${index}"]
H A Dsun_solaris_vartree002.sh67 nameref node=srcdata.hashnodes["${index}"]
134 nameref node=srcdata.hashnodes["${index}"]
H A Dsun_solaris_vartree003.sh178 nameref node=vndnode.entries["$l"]
/illumos-gate/usr/src/cmd/auditd/
H A Ddoorway.c587 audit_q_t *node; in qpool_init() local
601 if (node == NULL) in qpool_init()
617 audit_rec_t *node; in bpool_init() local
625 if (node == NULL) in bpool_init()
674 audit_q_t *node; in qpool_withdraw() local
680 return (node); in qpool_withdraw()
687 if (node == NULL) in qpool_withdraw()
691 return (node); in qpool_withdraw()
720 node = realloc(node, AUDIT_REC_HEADER + new_length); in bpool_withdraw()
757 return (node); in bpool_withdraw()
[all …]
/illumos-gate/usr/src/cmd/availdevs/
H A Davaildevs.c56 set_uint64_prop(xmlNodePtr node, const char *attr, uint64_t value) in set_uint64_prop() argument
60 (void) xmlSetProp(node, (xmlChar *)attr, (xmlChar *)tmp); in set_uint64_prop()
/illumos-gate/usr/src/cmd/awk_xpg4/
H A Dawk.h305 NODE *node(int type, NODE *left, NODE *right);
H A Dawk.y52 NODE *node; member
143 %type <node> dummy
175 $$ = node(PACT, $1, node(PRINT, NNULL, NNULL));
282 $$ = node(QUEST, $1, node(COLON, $3, $5));
400 $$ = $<node>3;
406 $$ = node(FOR, node(COMMA, $3, node(COMMA, $5, $7)), $9);
425 $$ = node(FORIN, node(IN, $3, $5), $7);
434 $$ = node(IF, $3, node(ELSE, $5, $7));
437 $$ = node(IF, $3, node(ELSE, $5, NNULL));
513 $$ = node(GETLINE, $4, node(PIPESYM, $1, NNULL));
[all …]
H A Dawk1.c272 field0 = node(FIELD, const0, NNULL); in awkvarinit()
323 incNR = node(ASG, varNR, node(ADD, varNR, const1)); in awkvarinit()
324 incFNR = node(ASG, varFNR, node(ADD, varFNR, const1)); in awkvarinit()
325 clrFNR = node(ASG, varFNR, const0); in awkvarinit()
337 ARGVsubi = node(INDEX, vlook(s_ARGV), constant); in awkarginit()
766 yylval.node = intnode(number); in lexnumber()
768 yylval.node = realnode((REAL)wcstod(linebuf, (wchar_t **)0)); in lexnumber()
791 yylval.node = np = vlook(linebuf); in lexid()
823 yylval.node = np; in lexid()
870 yylval.node = stringnode(linebuf, FALLOC, length); in lexstring()
[all …]
H A Dawk2.c428 NODE *ENVsubname = node(INDEX, varENVIRON, namep); in dobegin()
H A Dawk3.c282 node(int type, NODE *left, NODE *right) in node() function
H A Dawk4.c421 tnp = node(INDEX, tnp, constant); in f_split()
620 asortfunc = node(CALLUFUNC, NNULL, in f_asort()
621 node(COMMA, NNULL, in f_asort()
622 node(COMMA, in f_asort()

12345678910>>...39