Home
last modified time | relevance | path

Searched refs:field (Results 51 – 75 of 337) sorted by relevance

12345678910>>...14

/illumos-gate/usr/src/lib/nametoaddr/straddr/common/
H A Dstraddr.c408 searchhost(struct netconfig *netconfigp, char *token, int field, char *hostbuf) in searchhost() argument
480 cmpstr = (field == FIELD1)? fileaddr : filehost; in searchhost()
481 retstr = (field == FIELD1)? filehost : fileaddr; in searchhost()
485 if (field == FIELD2) { in searchhost()
515 searchserv(struct netconfig *netconfigp, char *token, int field, char *servname) in searchserv() argument
548 cmpstr = (field == FIELD1)? fileservice : fileport; in searchserv()
549 retstr = (field == FIELD1)? fileport : fileservice; in searchserv()
/illumos-gate/usr/src/common/nvme/
H A Dnvme_identify.c25 nvme_identify_field_valid_cns(const nvme_field_info_t *field, in nvme_identify_field_valid_cns() argument
38 return (nvme_field_range_check(field, 0, max, msg, msglen, cns)); in nvme_identify_field_valid_cns()
42 nvme_identify_field_valid_buf(const nvme_field_info_t *field, in nvme_identify_field_valid_buf() argument
45 return (nvme_field_range_check(field, NVME_IDENTIFY_BUFSIZE, in nvme_identify_field_valid_buf()
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/privs/
H A Dtst.procpriv.ksh44 trace(what->field); printf("\n"); }
47 BEGIN { errmsg = ""; trace(what->field); \
51 BEGIN { errmsg = ""; printf("field: "); trace(what->field); printf("\n"); }
H A Dtst.getf.ksh32 printf("field: "); trace(this->fp->field); printf("\n"); }
35 BEGIN { errmsg = ""; this->fp = getf(0); trace(this->fp->field); \
/illumos-gate/usr/src/cmd/bnu/
H A DDevices31 # Types that appear in the 5th field must be either built-in
34 # field in the Dialers file.
38 # Both refer to the phone number field in the Systems file (field 5)
68 # (The third field in Systems matches the first field in Devices)
127 # either in the Devices file (where device type is field 1)
128 # or in the Systems file (where it is field 3).
/illumos-gate/usr/src/cmd/sgs/elfedit/modules/common/
H A Dshdr.msg133 Integer value to set for symbol sh_info field. The meaning\n\
137 Integer value to set for symbol sh_link field. The meaning\n\
148 Integer value to set for symbol sh_offset field. The value\n\
189 present, the sh_addr field of the section at the specified\n\
253 sh_info field of the specified section.\n\
262 present, the sh_info field of the section at the specified\n\
267 sh_link field of the specified section.\n\
283 The sh_name field of a section header is an index into\n\
301 sh_offset field of the specified section.\n\
317 sh_size field of the specified section.\n\
[all …]
H A Dsym.msg110 into the symbol st_shndx field. Note that this will produce\n\
159 Integer value to set for symbol st_other field. Note\n\
211 st_info field of an ELF symbol.\n\
221 field of the symbol at the specified index is set to the given\n\
226 st_info field of the specified symbol. It provides raw access\n\
250 If both arguments are present, the name field of the symbol at\n\
285 st_shndx field of the specified symbol.\n\
303 size of the specified symbol (st_size field).\n\
317 st_type portion of the st_info field of the specified\n\
332 value of the specified symbol (st_value field).\n\
[all …]
H A Dphdr.msg110 Integer value to set for program header p_offset field.\n\
169 in the p_type field of an ELF program header element.\n\
175 present, the p_type field of the program header at the\n\
180 p_offset field of the specified program header.\n\
189 present, the p_offset field of the element at the\n\
194 p_vaddr field of the specified program header.\n\
203 present, the p_vaddr field of the element at the specified\n\
208 p_paddr field of the specified program header.\n\
226 p_filesz field of the specified program header.\n\
240 p_memsz field of the specified program header.\n\
[all …]
/illumos-gate/usr/src/cmd/ttymon/
H A Dtmpmtab.c63 int input, state, size, rawc, field, linenum; in read_pmtab() local
102 field = FAILURE; in read_pmtab()
165 field = state; in read_pmtab()
190 field = state; in read_pmtab()
199 field = state; in read_pmtab()
215 field = state; in read_pmtab()
229 field = state; in read_pmtab()
260 field = state; in read_pmtab()
272 field = state; in read_pmtab()
298 "<--error detected here", states[field], line); in read_pmtab()
/illumos-gate/usr/src/lib/libgrubmgmt/common/
H A Dlibgrub_cmd.def36 * first field - command,
37 * second field - enum for command
38 * third field - command flags
39 * forth field - parse function
/illumos-gate/usr/src/boot/sys/sys/
H A Dstddef.h41 #define offsetof(type, field) __offsetof(type, field) argument
/illumos-gate/usr/src/tools/smatch/src/validation/
H A Dsm_overflow.c1 struct field { … struct
6 …struct field a; … argument
H A Dtransparent-union.c2 int field; member
5 int field; member
/illumos-gate/usr/src/cmd/fm/modules/common/sensor-transport/
H A Dsensor_transport.c388 char *sensor, *last_sensor, *field, *last_field; in parse_spoof_param() local
400 if ((field = strtok_r(sensor, ":", &last_field)) == NULL || in parse_spoof_param()
401 nvlist_add_string(spoof, ST_SPOOF_FMRI, field) != 0) in parse_spoof_param()
404 if ((field = strtok_r(NULL, ":", &last_field)) == NULL || in parse_spoof_param()
405 nvlist_add_string(spoof, ST_SPOOF_SENSOR, field) != 0) in parse_spoof_param()
408 if ((field = strtok_r(NULL, ":", &last_field)) == NULL || in parse_spoof_param()
410 strtol(field, NULL, 0)) != 0) in parse_spoof_param()
/illumos-gate/usr/src/lib/libfru/libnvfru/
H A Dnvfru.c60 convert_field(const uint8_t *field, const fru_regdef_t *def, const char *path, in convert_field() argument
78 (void) memcpy(&timefield, field, sizeof (timefield)); in convert_field()
97 field, def->payloadLen); in convert_field()
119 (void) nvlist_add_string(nv, path, (char *)field); in convert_field()
125 def->payloadLen), field, def->payloadLen); in convert_field()
137 (void) nvlist_add_byte_array(nv, path, (uchar_t *)field, in convert_field()
/illumos-gate/usr/src/lib/libfru/include/
H A Dlibfru.h125 } field; member
143 } field; member
179 } field; member
192 } field; member
/illumos-gate/usr/src/cmd/sort/
H A Dfields.c372 ASSERT(is_end || field > -1); in field_boundary()
374 if (is_end && field == -1) in field_boundary()
377 while (field-- > 0) { in field_boundary()
417 ASSERT(is_end || field > -1); in field_boundary_wide()
419 if (is_end && field == -1) in field_boundary_wide()
422 while (field-- > 0) { in field_boundary_wide()
463 ASSERT(is_end || field > -1); in field_boundary_tabbed()
465 if (is_end && field == -1) in field_boundary_tabbed()
468 while (field-- > 0) { in field_boundary_tabbed()
528 if (is_end && field == -1) in field_boundary_tabbed_wide()
[all …]
H A Doptions.c123 int field = 0; in parse_field_spec() local
131 field = (10 * field) + (C[i] - '0'); in parse_field_spec()
181 F->f_start_field = field; in parse_field_spec()
190 F->f_end_field = field; in parse_field_spec()
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/in.routed/
H A Dtrace.c653 uint64_t field, in trace_bits() argument
666 while (field != 0 && in trace_bits()
668 if ((b & field) == b) { in trace_bits()
675 field &= ~(b | tbl->bits_clear); in trace_bits()
679 if (field != 0) { in trace_bits()
682 (void) fprintf(ftrace, "%#llx", field); in trace_bits()
713 while (field != 0 && tbl->bits_mask != 0) { in trace_string()
726 if (field != 0) { in trace_string()
729 cp += sprintf(cp, "%#x", field); in trace_string()
740 if_bit_string(uint_t field, boolean_t force) in if_bit_string() argument
[all …]
/illumos-gate/usr/src/lib/libfru/libfruraw/
H A Draw_access.c420 char *field; in get_container_info() local
433 token = tokenizer(buf, "#", &field, &matched); in get_container_info()
435 token = tokenizer(buf, ":", &field, &matched); in get_container_info()
456 token = tokenizer(field, ":", &field, &matched); in get_container_info()
463 token = tokenizer(field, ":\n", &field, &matched); in get_container_info()
472 num_sections].description.field.read_only in get_container_info()
476 num_sections].description.field.read_only in get_container_info()
499 token = tokenizer(field, ":\n ", &field, &matched); in get_container_info()
905 if (!segdesc->field.ignore_checksum) { in get_packets()
989 if (segdesc->field.opaque) { in fru_get_num_packets()
[all …]
/illumos-gate/usr/src/lib/libnvme/common/
H A Dlibnvme_wdc.c64 nvme_wdc_e6_field_valid_offset(const nvme_field_info_t *field, in nvme_wdc_e6_field_valid_offset() argument
71 "must be %u-byte aligned", field->nlfi_human, in nvme_wdc_e6_field_valid_offset()
72 field->nlfi_spec, off, NVME_DWORD_SIZE); in nvme_wdc_e6_field_valid_offset()
77 return (nvme_field_range_check(field, 0, max, msg, msglen, off)); in nvme_wdc_e6_field_valid_offset()
458 nvme_wdc_e6_req_field_t field) in nvme_wdc_e6_req_clear_need() argument
460 req->wer_need &= ~(1 << field); in nvme_wdc_e6_req_clear_need()
/illumos-gate/usr/src/cmd/sendmail/db/
H A Ddb_int.h70 #define SSZ(name, field) ((int)&(((name *)0)->field)) argument
73 #define SSZA(name, field) ((int)&(((name *)0)->field[0])) argument
/illumos-gate/usr/src/lib/libresolv2/common/isc/
H A Deventlib_p.h186 #define emulMaskInit(ctx, field, ev, lastnext) \ argument
187 ctx->field.ctx = ctx; \
188 ctx->field.type = ev; \
189 ctx->field.result = lastnext;
/illumos-gate/usr/src/cmd/troff/
H A Dn4.c570 int neg, abs, field; local
572 neg = abs = field = digits = 0;
596 field++;
603 field++;
609 if (!field) {
661 if ((field != digits) && (digits > 0))
677 nonumb = !field;
/illumos-gate/usr/src/cmd/mailx/
H A Dsend.c76 char line[LINESIZE], field[BUFSIZ]; in msend() local
121 snprintf(field, sizeof (field), in msend()
124 (*fp)(field, obuf); in msend()
164 cp2 = field; in msend()
168 oldign = doign && isign(field, flag&M_SAVING); in msend()
175 if (icequal(field, "status")) { in msend()
182 if (icequal(field, "content-length")) { in msend()

12345678910>>...14