/illumos-gate/usr/src/uts/sparc/krtld/ |
H A D | kobj_convrelstr.c | 88 conv_reloc_SPARC_type(Word type) argument 93 if (type < R_SPARC_NUM) 94 return (rels[type]); 98 strbuf[ndx--] = '0' + (type % 10); 99 type = type / 10; 100 } while ((ndx >= (int)0) && (type > (Word)0));
|
/illumos-gate/usr/src/uts/intel/amd64/krtld/ |
H A D | kobj_convrelstr.c | 61 conv_reloc_amd64_type(Word type) argument 66 if (type < R_AMD64_NUM) 67 return (rels[type]); 71 strbuf[ndx--] = '0' + (type % 10); 72 type = type / 10; 73 } while ((ndx >= (int)0) && (type > (Word)0));
|
/illumos-gate/usr/src/uts/intel/ia32/krtld/ |
H A D | kobj_convrelstr.c | 64 conv_reloc_386_type(Word type) argument 69 if (type < R_386_NUM) 70 return (rels[type]); 74 strbuf[ndx--] = '0' + (type % 10); 75 type = type / 10; 76 } while ((ndx >= (int)0) && (type > (Word)0));
|
/illumos-gate/usr/src/pkg/manifests/ |
H A D | system-kernel.man9p.inc | 18 file path=usr/share/man/man9p/inquiry-device-type.9p 30 target=inquiry-device-type.9p 32 target=inquiry-device-type.9p 34 target=inquiry-device-type.9p 36 target=inquiry-device-type.9p
|
/illumos-gate/usr/src/cmd/audio/include/ |
H A D | libaudio_impl.h | 64 #define MALLOC(type) \ 65 (type *)(long)malloc(sizeof (type)) 66 #define CALLOC(number, type) \ 67 (type *)(long)calloc((unsigned)(number), sizeof (type)) 68 #define REALLOC(ptr, number, type) \ 69 (type *)(long)realloc((char *)(ptr), (unsigned)(number) * sizeof (type))
|
/illumos-gate/usr/src/cmd/sgs/tsort/common/ |
H A D | zfopen.c | 42 zfopen(int severity, char *path, char *type) argument 46 if ((fp = fopen(path, type)) == NULL) { 49 if (type[1] == '+') 52 switch (type[0]) { 63 mode = type;
|
/illumos-gate/usr/src/lib/libast/common/sfio/ |
H A D | sfmutex.c | 31 int sfmutex(Sfio_t* f, int type) argument 33 int sfmutex(f, type) 35 int type; 39 NOTUSED(f); NOTUSED(type); 59 if(type == SFMTX_LOCK) 61 else if(type == SFMTX_TRYLOCK) 63 else if(type == SFMTX_UNLOCK) 65 else if(type == SFMTX_CLRLOCK)
|
/illumos-gate/usr/src/lib/libast/common/stdio/ |
H A D | _stdvbuf.c | 29 _stdsetvbuf(Sfio_t* f, char* buf, int type, size_t size) argument 31 return setvbuf(f, buf, type, size);
|
/illumos-gate/usr/src/lib/libwrap/ |
H A D | mystdarg.h | 15 #define VARARGS(func,type,arg) func(type arg, ...) 16 #define VASTART(ap,type,name) va_start(ap,name) 20 #define VARARGS(func,type,arg) func(va_alist) va_dcl 21 #define VASTART(ap,type,name) {type name; va_start(ap); name = va_arg(ap, type)
|
/illumos-gate/usr/src/cmd/lvm/metassist/layout/ |
H A D | layout_messages.h | 44 extern void print_layout_volume_msg(char *type, uint64_t nbytes); 45 extern void print_layout_explicit_msg(char *type); 47 extern void print_layout_submirrors_msg(char *type, uint64_t nbytes, int nsubs); 48 extern void print_layout_submirrors_failed_msg(char *type, int count, 51 extern void print_populate_volume_msg(char *type, uint64_t nbytes); 52 extern void print_populate_volume_ncomps_msg(char *type, uint64_t nbytes, 61 extern void print_insufficient_resources_msg(char *type);
|
/illumos-gate/usr/src/cmd/sgs/libconv/common/ |
H A D | relocate.c | 38 conv_reloc_type(Half mach, Word type, Conv_fmt_flags_t fmt_flags, argument 43 return (conv_reloc_386_type(type, fmt_flags, inv_buf)); 48 return (conv_reloc_SPARC_type(type, fmt_flags, inv_buf)); 51 return (conv_reloc_amd64_type(type, fmt_flags, inv_buf)); 54 /* If didn't match a machine type, use integer value */ 55 return (conv_invalid_val(inv_buf, type, fmt_flags)); 63 conv_reloc_type_static(Half mach, Word type, Conv_fmt_flags_t fmt_flags) argument 67 return (conv_reloc_type(mach, type, fmt_flags, &inv_buf));
|
H A D | data.c | 36 conv_elfdata_type(Elf_Type type, Conv_inv_buf_t *inv_buf) argument 52 if (type >= ELF_T_NUM) 53 return (conv_invalid_val(inv_buf, type, 0)); 55 return (MSG_ORIG(types[type]));
|
/illumos-gate/usr/src/cmd/mail/ |
H A D | doopen.c | 37 doopen(file, type, errnum) 38 char *type, *file; 45 (fptr = fopen(file, type)) == NULL) { 47 "%s: Can't open '%s' type: %s\n",program,file,type); 50 Dout(pn, 0, "can't open '%s' type: %s\n",program,file,type);
|
H A D | isit.c | 35 * isit(lp, type) -- match "name" portion of 38 * type -> type of header line to match 40 * TRUE -> lp matches header type (case independent) 43 * Execpt for H_FORM type, matching is case insensitive (bug 1173101) 46 isit(lp, type) 48 register int type; 52 switch (type) { 54 for (p = header[type].tag; *lp && *p; lp++, p++) { 61 for (p = header[type] [all...] |
/illumos-gate/usr/src/cmd/lp/cmd/lpadmin/ |
H A D | send_message.c | 53 int type, 57 send_message (type, va_alist) 58 int type; 73 va_start (ap, type); 78 (void)_putmessage (msgbuf, type, ap); 52 send_message( int type, ... ) argument
|
/illumos-gate/usr/src/cmd/lp/lib/msgs/ |
H A D | getmessage.c | 39 int getmessage ( char * buf, short type, ... ) argument 41 int getmessage (buf, type, va_alist) 43 short type; 52 va_start(arg, type); 57 rval = _getmessage(buf, type, arg);
|
H A D | putmessage.c | 37 int putmessage(char * buf, short type, ... ) argument 39 int putmessage(buf, type, va_alist) 41 short type; 50 va_start(arg, type); 55 size = _putmessage(buf, type, arg);
|
/illumos-gate/usr/src/cmd/sendmail/libsmutil/ |
H A D | lockfile.c | 28 ** type -- type of the lock. Bits can be: 39 lockfile(fd, filename, ext, type) 43 int type; 50 if (bitset(LOCK_UN, type)) 52 else if (bitset(LOCK_EX, type)) 56 if (bitset(LOCK_NB, type)) 67 ** as type "tmp" (that is, served from swap space), the 78 if (flock(fd, type) >= 0)
|
/illumos-gate/usr/src/lib/libcurses/screen/ |
H A D | V3.m_newterm.c | 49 m_newterm(char *type, FILE *outfptr, FILE *infptr) argument 51 return (newterm(type, outfptr, infptr));
|
H A D | V3.newterm.c | 51 newterm(char *type, FILE *outfptr, FILE *infptr) argument 54 return (newscreen(type, 0, 0, 0, outfptr, infptr));
|
H A D | _newterm.c | 49 newterm(char *type, FILE *fout, FILE *fin) argument 51 return (newscreen(type, 0, 0, 0, fout, fin));
|
/illumos-gate/usr/src/uts/sun4u/io/px/ |
H A D | px_asm_4u.h | 37 int type); 39 int type);
|
/illumos-gate/usr/src/cmd/lp/lib/lp/ |
H A D | isterminfo.c | 44 * that a type names a valid entry in the Terminfo database. 55 * submitting print requests with goofball types, or every valid type 62 * database. The "terminfo" type is not likely to be an oft used feature, 106 char * type 109 isterminfo (type) 110 char *type; 118 if (!type || !*type) 122 if (tfind(type, (A2)&hit_cache, (A3)strcmp)) 127 if (tfind(type, (A 168 _isterminfo( char * type, char * parent ) argument [all...] |
/illumos-gate/usr/src/lib/libsocket/socket/ |
H A D | socket.c | 56 _socket(int family, int type, int protocol) argument 58 return (_socket_create(family, type, protocol, SOV_DEFAULT)); 65 _socket_bsd(int family, int type, int protocol) argument 67 return (_socket_create(family, type, protocol, SOV_SOCKBSD)); 71 _socket_svr4(int family, int type, int protocol) argument 73 return (_socket_create(family, type, protocol, SOV_SOCKSTREAM)); 77 __xnet_socket(int family, int type, int protocol) argument 79 return (_socket_create(family, type, protocol, SOV_XPG4_2)); 85 * that could be returned due to invalid <family, type, protocol> 93 _socket_create(int family, int type, in argument [all...] |
/illumos-gate/usr/src/lib/libpp/common/ |
H A D | ppincref.c | 26 * the type arg is inclusive or of PP_SYNC_* 32 ppincref(char* parent, char* file, int line, int type) argument 39 if (type & PP_SYNC_PUSH) 43 if (sp->type == IN_FILE)
|