Searched refs:def (Results 1 - 25 of 1424) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/ucblib/libcurses/
H A Dfullname.c25 * This routine fills in "def" with the full name of the terminal.
30 fullname(char *bp, char *def) argument
34 *def = 0; /* in case no name */
37 cp = def; /* start of answer */
46 return (def);
H A Dlongname.c25 * This routine fills in "def" with the long name of the terminal.
29 longname(char *bp, char *def) argument
37 cp = def;
42 return (def);
/illumos-gate/usr/src/cmd/rpcgen/
H A Drpc_hout.c71 print_datadef(definition *def) argument
73 if (def->def_kind == DEF_PROGRAM) /* handle data only */
76 if (def->def_kind != DEF_CONST)
78 switch (def->def_kind) {
80 pstructdef(def);
83 puniondef(def);
86 penumdef(def);
89 ptypedef(def);
92 pprogramdef(def);
95 pconstdef(def);
105 print_funcdef(definition *def) argument
153 pconstdef(definition *def) argument
163 pargdef(definition *def) argument
188 pstructdef(definition *def) argument
201 puniondef(definition *def) argument
276 pprogramdef(definition *def) argument
408 penumdef(definition *def) argument
438 ptypedef(definition *def) argument
542 definition *def; local
[all...]
H A Drpc_util.c123 findit(definition *def, char *type) argument
125 return (streq(def->def_name, type));
131 definition *def; local
133 def = (definition *)FINDVAL(defined, type, findit);
134 if (def == NULL || def->def_kind != DEF_TYPEDEF)
136 switch (def->def.ty.rel) {
138 if (streq(def->def
185 typedefed(definition *def, char *type) argument
195 definition *def; local
[all...]
H A Drpc_sample.c58 write_sample_svc(definition *def) argument
60 if (def->def_kind != DEF_PROGRAM)
62 write_sample_server(def);
66 write_sample_clnt(definition *def) argument
71 if (def->def_kind != DEF_PROGRAM)
74 for (vp = def->def.pr.versions; vp != NULL; vp = vp->next) {
75 write_sample_client(def->def_name, vp);
211 write_sample_server(definition *def) argument
216 for (vp = def
301 definition *def; local
[all...]
H A Drpc_tblout.c76 definition *def; local
80 def = (definition *)l->val;
81 if (def->def_kind == DEF_PROGRAM) {
82 write_table(def);
88 write_table(definition *def) argument
97 for (vp = def->def.pr.versions; vp != NULL; vp = vp->next) {
100 locase(def->def_name), vp->vers_num);
H A Drpc_cout.c68 emit(definition *def) argument
70 if (def->def_kind == DEF_CONST)
72 if (def->def_kind == DEF_PROGRAM) {
73 emit_program(def);
76 if (def->def_kind == DEF_TYPEDEF) {
84 if (strcmp(def->def.ty.old_type, def->def_name) == 0)
87 print_header(def);
88 switch (def
106 findtype(definition *def, char *type) argument
117 definition *def; local
147 print_header(definition *def) argument
287 emit_enum(definition *def) argument
295 emit_program(definition *def) argument
315 emit_union(definition *def) argument
682 emit_struct(definition *def) argument
719 emit_typedef(definition *def) argument
[all...]
/illumos-gate/usr/src/lib/libfru/libfru/
H A DAncestor.cc40 def(d),
68 fprintf(stderr, "Tag Name: %s\n", def->name);
114 return (def);
146 fru_regdef_t *def = NULL; local
158 def = (fru_regdef_t *)
160 Ancestor *ant = createTaggedAncestor(def, element);
183 Ancestor::createTaggedAncestor(const fru_regdef_t *def, Str element) argument
186 if (def->tagType == FRU_X)
190 mk_tag(def->tagType, def
223 definitionContains(const fru_regdef_t *def, const fru_regdef_t *parent_def, Str element, uint32_t offset, Ancestor *ant, Str path) argument
[all...]
H A DnameSyntaxYacc.y70 = Ancestor::listTaggedAncestors((char *)$1->def->name);
80 if ($1->def->dataType != FDTYPE_Record)
86 for ( int i=0;i<$1->def->enumCount;i++)
88 if ( strcmp ($3->def->name, $1->def->enumTable[i].text) == 0 )
104 if ( $2->def->tagType == FRU_X )
116 const fru_regdef_t *def = fru_reg_lookup_def_by_name($1);
117 if ( def == NULL )
125 pathDef->def = (fru_regdef_t *)def;
[all...]
H A DPayloadReader.cc35 (pathDef->def->iterationType != FRU_NOT_ITERATED)
180 if (iterPoss != path->def->iterationCount) {
201 int length = ((path->def->payloadLen - ITER_CONT_BYTE_LEN)
202 /path->def->iterationCount);
204 rc = calcOffset(path->def->iterationType,
238 calc_data_len = (path->def->payloadLen
240 path->def->iterationCount;
259 calc_data_len = path->def->payloadLen;
265 if (path->def->dataType == FDTYPE_Record) {
270 if (path->def
[all...]
H A DAncestor.h75 const fru_regdef_t *def; member in struct:Ancestor
83 static Ancestor * createTaggedAncestor(const fru_regdef_t *def,
85 static int definitionContains(const fru_regdef_t *def,
H A DParser.h46 fru_regdef_t *def; member in struct:PathDef
/illumos-gate/usr/src/test/libc-tests/tests/priv_gettext/
H A Dpriv_gettext.c40 static const char *def = "Allows DTrace kernel-level tracing.\n"; variable
58 priv_verify(def);
66 priv_verify(def);
72 priv_verify(def);
81 priv_verify(def);
/illumos-gate/usr/src/lib/libfru/libnvfru/
H A Dnvfru.c58 convert_field(const uint8_t *field, const fru_regdef_t *def, const char *path, argument
66 switch (def->dataType) {
68 assert(def->payloadLen <= sizeof (value));
69 switch (def->dispType) {
72 if (def->payloadLen > sizeof (timefield)) {
94 sizeof (value) - def->payloadLen),
95 field, def->payloadLen);
97 switch (def->payloadLen) {
123 def->payloadLen), field, def
142 convert_element(const uint8_t *data, const fru_regdef_t *def, char *ppath, nvlist_t *nv, boolean_t from_iter) argument
261 const fru_regdef_t *def; local
[all...]
/illumos-gate/usr/src/uts/i86pc/cpu/scripts/
H A DMakefile36 def all install setup: $(PERLFILES)
/illumos-gate/usr/src/cmd/prtfru/
H A Dprtfru.c146 static void print_element(const uint8_t *data, const fru_regdef_t *def,
307 const fru_regdef_t *def; local
368 if ((def = fru_reg_lookup_def_by_name(element[i])) == NULL) {
375 if (def->tagType != FRU_X) tagged[i] = 1;
377 if (def->dataType == FDTYPE_Record) {
378 if (def->iterationType == FRU_NOT_ITERATED)
380 def->enumTable[0].text);
386 element[i], def->enumTable[0].text);
388 for (j = 1; j < def->enumCount; j++)
389 output(",\n\t%s", def
480 print_field(const uint8_t *field, const fru_regdef_t *def) argument
699 print_element(const uint8_t *data, const fru_regdef_t *def, const char *parent_path, int indent) argument
1043 const fru_regdef_t *def; local
[all...]
/illumos-gate/usr/src/cmd/format/
H A Ddefect.c235 pr_defect(struct defect_entry *def, int num) argument
245 fmt_print("%4d%8d%7d", num, def->cyl, def->head);
251 if (def->bfi != UNKNOWN) {
252 fmt_print("%8d", def->bfi);
253 if (def->nbits != UNKNOWN)
254 fmt_print("%8d", def->nbits);
257 fmt_print("%8d", def->sect);
258 fmt_print("%8llu", chs2bn(def->cyl, def
272 sort_defect(struct defect_entry *def, struct defect_list *list) argument
409 struct defect_entry def; local
438 add_def(struct defect_entry *def, struct defect_list *list, int index) argument
[all...]
H A Ddefect.h112 int makebfi(struct defect_list *list, struct defect_entry *def);
113 void calc_bfi(struct defect_list *list, struct defect_entry *def,
117 void pr_defect(struct defect_entry *def, int num);
118 int sort_defect(struct defect_entry *def, struct defect_list *list);
121 void add_def(struct defect_entry *def, struct defect_list *list,
/illumos-gate/usr/src/lib/libsmedia/
H A DMakefile32 def := TARGET= def macro
/illumos-gate/usr/src/lib/libsmedia/plugins/
H A DMakefile33 def := TARGET= def macro
/illumos-gate/usr/src/cmd/fruadm/
H A Dfruadm.c135 displayBinary(unsigned char *data, size_t length, fru_elemdef_t *def) argument
141 if (def->disp_type == FDISP_Hex) {
149 switch (def->disp_type) {
207 display_data(unsigned char *data, size_t length, fru_elemdef_t *def) argument
217 switch (def->data_type) {
220 displayBinary(data, length, def);
226 switch (def->disp_type) {
254 for (i = 0; i < def->enum_count; i++) {
255 if (def->enum_table[i].value == lldata) {
257 char *tmp = strdup(def
284 fru_elemdef_t def, def1; local
386 fru_elemdef_t def; local
501 fru_segdef_t def; local
627 fru_elemdef_t def; local
[all...]
/illumos-gate/usr/src/lib/libnisdb/
H A Dldap_ldap.h41 __nis_rule_value_t *rv, __nis_object_dn_t *def,
/illumos-gate/usr/src/uts/intel/cxgbe/
H A DMakefile29 all def clean clobber lint modlintlib clean.lint install: $(SUBDIRS)
/illumos-gate/usr/src/cmd/truss/
H A Dlistopts.c122 goto def;
130 goto def;
138 goto def;
146 goto def;
152 goto def;
158 goto def;
164 goto def;
170 goto def;
176 goto def;
182 goto def;
[all...]
/illumos-gate/usr/src/grub/grub-0.97/docs/
H A Dtexinfo.tex6 \def\texinfoversion{2004-11-25.16}
113 \def\linenumber{l.\the\inputlineno:\space}
168 \def\spaceisspace{\catcode\spaceChar=\spacecat}
172 \def\gobble#1{}
175 \def\makecsname#1{\expandafter\noexpand\csname#1\endcsname}
198 \def\finalout{\overfullrule=0pt}
206 \def\|{%
235 \def\gloggingall{\begingroup \globaldefs = 1 \loggingall \endgroup}%
236 \def\loggingall{%
259 \def\smallbrea
[all...]

Completed in 137 milliseconds

1234567891011>>