Home
last modified time | relevance | path

Searched refs:type (Results 151 – 175 of 4320) sorted by path

12345678910>>...173

/illumos-gate/usr/src/cmd/audio/include/
H A Dlibaudio_impl.h62 #define MALLOC(type) \ argument
63 (type *)(long)malloc(sizeof (type))
64 #define CALLOC(number, type) \ argument
65 (type *)(long)calloc((unsigned)(number), sizeof (type))
66 #define REALLOC(ptr, number, type) \ argument
67 (type *)(long)realloc((char *)(ptr), (unsigned)(number) * sizeof (type))
H A Dwav.h142 #error unknown machine type;
/illumos-gate/usr/src/cmd/audio/utilities/
H A DAudioGain.cc177 int type) in Process() argument
221 if (type & AUDIO_GAIN_INSTANT) in Process()
224 if (type & AUDIO_GAIN_WEIGHTED) in Process()
H A Dfilehdr.c1138 int type; in audio_encode_wav() local
1178 type = AUDIO_WAV_TYPE_ID; in audio_encode_wav()
1179 AUDIO_WAV_HOST2FILE_INT(&type, &fhdr.wav_type_ID); in audio_encode_wav()
/illumos-gate/usr/src/cmd/auditconfig/
H A Dauditconfig.c202 static int str2type(char *s, uint_t *type);
204 static int str2ipaddr(char *s, uint32_t *addr, uint32_t type);
328 uint_t type; in parse_args() local
434 if (str2type (*argv, &type)) in parse_args()
441 if (str2ipaddr(*argv, addr, type)) in parse_args()
1265 uint_t type; in do_setkaudit() local
1269 (void) str2type(t, &type); in do_setkaudit()
1270 (void) str2ipaddr(s, &ai.ai_termid.at_addr[0], type); in do_setkaudit()
1271 ai.ai_termid.at_type = type; in do_setkaudit()
2883 str2ipaddr(char *s, uint32_t *addr, uint32_t type) in str2ipaddr() argument
[all …]
/illumos-gate/usr/src/cmd/auditrecord/
H A Daudit_record_attr.txt155 comment="type", so_type
182 # au_to_arg32 "type", so_type
473 comment=1, type, "type":
507 # family and type need argument number
516 comment=1, socket type, "type"
634 comment=1, socket type, "type"
1134 comment=filesystem type
1138 comment=filesystem type:
1401 comment=1, type of ID, "ID type":
1406 comment=1, type of ID, "ID type":
[all …]
/illumos-gate/usr/src/cmd/auditreduce/
H A Dtoken.c42 static int ipc_type_match(int flag, char type);
346 int32_t type; in ip_addr_ex_token() local
349 adrm_int32(adr, (int32_t *)&type, 1); in ip_addr_ex_token()
350 adrm_u_char(adr, address, type); in ip_addr_ex_token()
373 char type; in ip_token() local
380 adrm_char(adr, &type, 1); in ip_token()
516 int32_t type; in acl_token() local
518 adrm_int32(adr, &type, 1); in acl_token()
538 uint16_t flags, type; in ace_token() local
543 adrm_u_short(adr, &type, 1); in ace_token()
[all …]
/illumos-gate/usr/src/cmd/awk/
H A Dawk.g.y98 %type <p> pas pattern ppattern plist pplist patlist prarg term re
99 %type <p> pa_pat pa_stat pa_stats
100 %type <s> reg_expr
101 %type <p> simple_stmt opt_simple_stmt stmt stmtlist
102 %type <p> var varname funcname varlist
103 %type <p> for if else while
104 %type <i> do st
105 %type <i> pst opt_pst lbrace rbrace rparen comma nl opt_nl and bor
106 %type <i> subop print
H A Db.c66 #define type(v) (v)->nobj /* badly overloaded here */ macro
235 switch (type(p)) { in penter()
253 FATAL("can't happen: unknown type %d in penter", type(p)); in penter()
261 switch (type(p)) { in freetr()
277 FATAL("can't happen: unknown type %d in freetr", type(p)); in freetr()
423 switch (type(v)) { in cfoll()
426 f->re[info(v)].ltype = type(v); in cfoll()
453 FATAL("can't happen: unknown type %d in cfoll", type(v)); in cfoll()
466 switch (type(p)) { in first()
474 if (type(p) == EMPTYRE) { in first()
[all …]
H A Dlex.c43 int type; member
514 switch (kp->type) { /* special handling */ in word()
518 RET(kp->type); in word()
522 RET(kp->type); in word()
526 RET(kp->type); in word()
531 RET(kp->type); in word()
/illumos-gate/usr/src/cmd/awk_xpg4/
H A Dawk.h305 NODE *node(int type, NODE *left, NODE *right);
310 NODE *emptynode(int type, size_t nlength);
323 NODE * finstall(LOCCHARP name, FUNCTION f, int type);
324 void kinstall(LOCCHARP name, int type);
H A Dawk.y140 %type <node> prog rule pattern expr rvalue lvalue fexpr varlist varlist2
141 %type <node> statement statlist fileout exprlist eexprlist simplepattern
142 %type <node> getline optvar var
143 %type <node> dummy
540 int type; local
544 && (type = np->n_type)!=FUNC && type!=UFUNC
548 if ((type=np->n_type)==COMMA) {
565 (type = np->n_left->n_type)!= FUNC && type!=UFUNC)
H A Dawk2.c590 int type; in openfile() local
600 if ((type = np->n_type) == APPEND) in openfile()
601 type = WRITE; in openfile()
610 if (op->f_mode == type && strcmp(op->f_name, cp) == 0) in openfile()
653 op->f_mode = type; in openfile()
H A Dawk3.c282 node(int type, NODE *left, NODE *right) in node() argument
286 np = emptynode(type, 0); in node()
369 emptynode(int type, size_t length) in emptynode() argument
378 if (running && type != VAR && type != ARRAY) { in emptynode()
384 np->n_type = type; in emptynode()
408 kinstall(LOCCHARP name, int type) in kinstall() argument
415 np->n_keywtype = type; in kinstall()
424 finstall(LOCCHARP name, FUNCTION func, int type) in finstall() argument
430 np = emptynode(type, l); in finstall()
558 register int type; in execute() local
[all …]
H A Dawk4.c721 register uint type; in matherr() local
736 if ((type = ep->type) > (uint)PLOSS) in matherr()
737 type = 0; in matherr()
738 (void)fprintf(stderr, "awk: %s", strmsg(msgs[type])); in matherr()
/illumos-gate/usr/src/cmd/backup/dump/
H A Ddumptape.c2154 int state, type; in checkpoint() local
2178 type = nextspcl->s_spcl.c_type; in checkpoint()
2184 type = spcl.c_type; in checkpoint()
2187 switch (type) { /* set output state */ in checkpoint()
/illumos-gate/usr/src/cmd/backup/lib/
H A Dgetdate.y57 int type; member
116 %type <Number> tDAY tDAYZONE tMINUTE_UNIT tMONTH tMONTH_UNIT
117 %type <Number> tSEC_UNIT tSNUMBER tUNUMBER tZONE
118 %type <Meridian> tMERIDIAN o_merid
652 return tp->type;
657 return tp->type;
664 return tp->type;
670 return tp->type;
680 return tp->type;
687 return tp->type;
[all …]
/illumos-gate/usr/src/cmd/backup/restore/
H A Ddirs.c60 #define INIT_TEMPFILE(name, type) \ argument
65 "%s/rst" type "%ld.XXXXXX", tmpdir, dumpdate); \
H A Dlint.sed11 /byteorder.c",.*inconsistent use of a value type/d
H A Drestore.c29 listfile(char *name, ino_t ino, int type) in listfile() argument
36 vprintf(stdout, "%s", type == LEAF ? gettext("leaf") : gettext("dir ")); in listfile()
46 addfile(char *name, ino_t ino, int type) in addfile() argument
69 if (type == NODE) { in addfile()
81 type |= LINK; in addfile()
83 ep = addentry(name, ino, type); in addfile()
84 if (type == NODE) in addfile()
97 deletefile(char *name, ino_t ino, int type) in deletefile() argument
176 nodeupdates(char *name, ino_t ino, int type) in nodeupdates() argument
270 (((key & INOFND) && ip->e_type != type) || in nodeupdates()
[all …]
H A Dsymtab.c258 addentry(char *name, ino_t inum, int type) in addentry() argument
275 np->e_type = type & ~(LINK|ROOT); in addentry()
316 if ((type & ROOT) && (np->e_flags & XATTR)) { in addentry()
324 if (type & LINK) { in addentry()
H A Dtape.c1323 int type; member
1354 for (fsdtype = fsdtypes; fsdtype->type; fsdtype++) in metaproc()
1355 if (fsdtype->type == fsd->fsd_type) in metaproc()
1364 for (fsdtype = fsdtypes; fsdtype->type; fsdtype++) in metaproc()
H A Dutilities.c259 lf_linkit(char *existing, char *new, int type) in lf_linkit() argument
270 (type == SYMLINK ? "symbolic" : "hard"), new, existing); in lf_linkit()
274 if (type == SYMLINK) { in lf_linkit()
296 } else if (type == HARDLINK) { in lf_linkit()
318 panic(gettext("%s: unknown type %d\n"), "linkit", type); in lf_linkit()
323 if (type == SYMLINK) in lf_linkit()
/illumos-gate/usr/src/cmd/bart/
H A Dcompare.c32 static void extract_fname_ftype(char *line, char *fname, char *type);
33 static int report_add(char *fname, char *type);
34 static int report_delete(char *fname, char *type);
37 static void report_error(char *fname, char *type, char *ctrl_val,
41 static void parse_line(char *line, char *fname, char *type, char *size,
228 parse_line(char *line, char *fname, char *type, char *size, char *mode, in parse_line() argument
238 get_token(line, &pos, line_len, type, TYPE_SIZE); in parse_line()
253 if (type[0] == 'F') in parse_line()
255 else if ((type[0] == 'B') || (type[0] == 'C')) in parse_line()
257 else if (type[0] == 'L') in parse_line()
[all …]
H A Dcreate.c46 int type, struct FTW *ftwx);
344 walker(const char *name, const struct stat64 *sp, int type, struct FTW *ftwx) in walker() argument
351 switch (type) { in walker()

12345678910>>...173