Searched defs:fake (Results 1 - 14 of 14) sorted by relevance
/illumos-gate/usr/src/cmd/sendmail/libsm/ |
H A D | vsnprintf.c | 26 ** Assigned 'str' to a "fake" file pointer. This allows common 51 SM_FILE_T fake; local 63 fake.sm_magic = SmFileMagic; 64 fake.f_timeout = SM_TIME_FOREVER; 65 fake.f_timeoutstate = SM_TIME_BLOCK; 66 fake.f_file = -1; 67 fake.f_flags = SMWR | SMSTR; 68 fake.f_bf.smb_base = fake.f_p = (unsigned char *)str; 69 fake [all...] |
H A D | vasprintf.c | 64 SM_FILE_T fake; local 67 fake.sm_magic = SmFileMagic; 68 fake.f_timeout = SM_TIME_FOREVER; 69 fake.f_timeoutstate = SM_TIME_BLOCK; 70 fake.f_file = -1; 71 fake.f_flags = SMWR | SMSTR | SMALC; 72 fake.f_bf.smb_base = fake.f_p = (unsigned char *)sm_malloc(SM_VA_BUFSIZE); 73 if (fake.f_bf.smb_base == NULL) 75 fake [all...] |
H A D | snprintf.c | 61 SM_FILE_T fake; local 69 fake.sm_magic = SmFileMagic; 70 fake.f_file = -1; 71 fake.f_flags = SMWR | SMSTR; 72 fake.f_cookie = &fake; 73 fake.f_bf.smb_base = fake.f_p = (unsigned char *)str; 74 fake.f_bf.smb_size = fake [all...] |
H A D | sscanf.c | 81 SM_FILE_T fake; local 84 fake.sm_magic = SmFileMagic; 85 fake.f_flags = SMRD; 86 fake.f_bf.smb_base = fake.f_p = (unsigned char *) str; 87 fake.f_bf.smb_size = fake.f_r = strlen(str); 88 fake.f_file = -1; 89 fake.f_read = sm_eofread; 90 fake [all...] |
H A D | vfprintf.c | 82 ** temporary buffer (via a "fake" file pointer). 106 SM_FILE_T fake; local 111 fake.sm_magic = SmFileMagic; 112 fake.f_timeout = SM_TIME_FOREVER; 113 fake.f_timeoutstate = SM_TIME_BLOCK; 114 fake.f_flags = fp->f_flags & ~SMNBF; 115 fake.f_file = fp->f_file; 116 fake.f_cookie = fp->f_cookie; 117 fake.f_write = fp->f_write; 118 fake [all...] |
/illumos-gate/usr/src/boot/sys/x86/include/ |
H A D | elf.h | 72 int fake; member in struct:__anon459
|
/illumos-gate/usr/src/lib/libshell/common/sh/ |
H A D | array.c | 1302 Namval_t fake; local 1303 fake.nvname = (char*)sp; 1304 ap->pos = mp = (Namval_t*)dtprev(ap->header.table,&fake);
|
H A D | nvtree.c | 149 Namval_t *nq=0,fake; local 184 fake.nvname = (char*)name; 185 if(dp->hp = (Namval_t*)dtprev(dp->root,&fake))
|
H A D | subshell.c | 288 Namval_t fake; local 292 fake.nvname = name; 293 mpnext = dtnext(root,&fake);
|
/illumos-gate/usr/src/lib/libexacct/common/ |
H A D | exacct_ops.c | 733 ea_file_impl_t fake; local 744 bzero(&fake, sizeof (ea_file_impl_t)); 745 if (stack_check(&fake) == -1) { 749 fake.ef_buf = buf; 750 fake.ef_bufsize = bufsize; 754 stack_free(&fake); 759 if ((first_obj_type = xget_object(&fake, obj, bufread_wrapper, 761 stack_free(&fake); 767 if (obj->eo_type == EO_GROUP && unpack_group(&fake, obj, flag) == -1) { 768 stack_free(&fake); [all...] |
/illumos-gate/usr/src/cmd/mdb/common/mdb/ |
H A D | mdb_main.c | 137 static struct frame fake; local 140 if (pread(_mdb_self_fd, &fake, sizeof (fake), addr) != sizeof (fake)) {
|
/illumos-gate/usr/src/lib/libc/port/gen/ |
H A D | crypt.c | 1021 unlocked_encrypt(char *block, int fake) argument 1136 encrypt(char *block, int fake) argument 1138 if (fake != 0) { 1145 unlocked_encrypt(block, fake);
|
/illumos-gate/usr/src/tools/cscope-fast/ |
H A D | cgrep.c | 1555 uchar_t fake[1]; local 1558 fake[0] = 0; 1587 sp = fake;
|
/illumos-gate/usr/src/cmd/svc/startd/ |
H A D | graph.c | 652 graph_edge_t fake; local 665 fake.ge_vertex = v; 666 (void) graph_walk_recurse(&fake, &gi);
|
Completed in 150 milliseconds