/illumos-gate/usr/src/cmd/sendmail/libsm/ |
H A D | vasprintf.c | 62 SM_FILE_T fake; variable 65 fake.sm_magic = SmFileMagic; 66 fake.f_timeout = SM_TIME_FOREVER; 67 fake.f_timeoutstate = SM_TIME_BLOCK; 68 fake.f_file = -1; 69 fake.f_flags = SMWR | SMSTR | SMALC; 70 fake.f_bf.smb_base = fake.f_p = (unsigned char *)sm_malloc(SM_VA_BUFSIZE); 71 if (fake.f_bf.smb_base == NULL) 73 fake.f_close = NULL; 74 fake.f_open = NULL; [all …]
|
H A D | snprintf.c | 59 SM_FILE_T fake; local 67 fake.sm_magic = SmFileMagic; 68 fake.f_file = -1; 69 fake.f_flags = SMWR | SMSTR; 70 fake.f_cookie = &fake; 71 fake.f_bf.smb_base = fake.f_p = (unsigned char *)str; 72 fake.f_bf.smb_size = fake.f_w = n ? n - 1 : 0; 73 fake.f_timeout = SM_TIME_FOREVER; 74 fake.f_timeoutstate = SM_TIME_BLOCK; 75 fake.f_close = NULL; [all …]
|
H A D | sscanf.c | 79 SM_FILE_T fake; local 82 fake.sm_magic = SmFileMagic; 83 fake.f_flags = SMRD; 84 fake.f_bf.smb_base = fake.f_p = (unsigned char *) str; 85 fake.f_bf.smb_size = fake.f_r = strlen(str); 86 fake.f_file = -1; 87 fake.f_read = sm_eofread; 88 fake.f_write = NULL; 89 fake.f_close = NULL; 90 fake.f_open = NULL; [all …]
|
H A D | vsnprintf.c | 49 SM_FILE_T fake; variable 61 fake.sm_magic = SmFileMagic; 62 fake.f_timeout = SM_TIME_FOREVER; 63 fake.f_timeoutstate = SM_TIME_BLOCK; 64 fake.f_file = -1; 65 fake.f_flags = SMWR | SMSTR; 66 fake.f_bf.smb_base = fake.f_p = (unsigned char *)str; 67 fake.f_bf.smb_size = fake.f_w = n - 1; 68 fake.f_close = NULL; 69 fake.f_open = NULL; [all …]
|
H A D | vfprintf.c | 104 SM_FILE_T fake; local 109 fake.sm_magic = SmFileMagic; 110 fake.f_timeout = SM_TIME_FOREVER; 111 fake.f_timeoutstate = SM_TIME_BLOCK; 112 fake.f_flags = fp->f_flags & ~SMNBF; 113 fake.f_file = fp->f_file; 114 fake.f_cookie = fp->f_cookie; 115 fake.f_write = fp->f_write; 116 fake.f_close = NULL; 117 fake.f_open = NULL; [all …]
|
/illumos-gate/usr/src/lib/libexacct/common/ |
H A D | exacct_ops.c | 731 ea_file_impl_t fake; in ea_unpack_object() local 742 bzero(&fake, sizeof (ea_file_impl_t)); in ea_unpack_object() 743 if (stack_check(&fake) == -1) { in ea_unpack_object() 747 fake.ef_buf = buf; in ea_unpack_object() 748 fake.ef_bufsize = bufsize; in ea_unpack_object() 752 stack_free(&fake); in ea_unpack_object() 757 if ((first_obj_type = xget_object(&fake, obj, bufread_wrapper, in ea_unpack_object() 759 stack_free(&fake); in ea_unpack_object() 765 if (obj->eo_type == EO_GROUP && unpack_group(&fake, obj, flag) == -1) { in ea_unpack_object() 766 stack_free(&fake); in ea_unpack_object() [all …]
|
/illumos-gate/usr/src/tools/smatch/src/validation/mem2reg/ |
H A D | load-dead.c | 3 static inline int fake(void) in fake() function 9 0 || fun((a, fake(), a)); in foo()
|
/illumos-gate/usr/src/tools/smatch/src/smatch_data/db/ |
H A D | fixup_kernel.sh | 131 insert into caller_info values ('fake', 'sysfs_kf_seq_show', '(struct sysfs_ops)->show', 0, 0, 1001… 132 insert into caller_info values ('fake', 'sysfs_kf_seq_show', '(struct sysfs_ops)->show', 0, 0, 1002… 133 insert into caller_info values ('fake', 'sysfs_kf_seq_show', '(struct sysfs_ops)->show', 0, 0, 1001… 134 insert into caller_info values ('fake', 'sysfs_kf_seq_show', '(struct sysfs_ops)->show', 0, 0, 0, …
|
/illumos-gate/usr/src/test/util-tests/tests/libjedec/hex2spd/data/lpddr5/ |
H A D | CAMM2.spd | 5 # fake 1Rx16 device that supplies 16 GiB through 4 LPDDR5 components 28 # Without further ado, a rather fake DIMM.
|
/illumos-gate/usr/src/lib/libc/port/gen/ |
H A D | crypt.c | 1017 unlocked_encrypt(char *block, int fake __unused) in unlocked_encrypt() 1132 encrypt(char *block, int fake) in encrypt() argument 1134 if (fake != 0) { in encrypt() 1141 unlocked_encrypt(block, fake); in encrypt()
|
/illumos-gate/usr/src/boot/sys/x86/include/ |
H A D | elf.h | 72 int fake; member
|
/illumos-gate/usr/src/cmd/mdb/common/mdb/ |
H A D | mdb_main.c | 137 static struct frame fake; in valid_frame() local 140 if (pread(_mdb_self_fd, &fake, sizeof (fake), addr) != sizeof (fake)) { in valid_frame()
|
/illumos-gate/usr/src/cmd/sendmail/cf/mailer/ |
H A D | smtp.m4 | 50 # output fake domains as user%fake@relay
|
/illumos-gate/usr/src/tools/smatch/src/ |
H A D | smatch_conditions.c | 211 static struct stree *combine_strees(struct stree *orig, struct stree *fake, struct stree *new) in combine_strees() argument 216 overwrite_stree(fake, &ret); in combine_strees()
|
H A D | smatch_flow.c | 344 struct expression *const_expr, *right, *expr1, *expr2, *fake; in handle__builtin_choose_expr_assigns() local 360 fake = assign_expression(expr->left, '=', sval.value ? expr1 : expr2); in handle__builtin_choose_expr_assigns() 361 __split_expr(fake); in handle__builtin_choose_expr_assigns()
|
/illumos-gate/usr/src/contrib/ast/src/cmd/ksh93/sh/ |
H A D | subshell.c | 281 Namval_t fake; in sh_assignok() local 285 fake.nvname = name; in sh_assignok() 286 mpnext = dtnext(root,&fake); in sh_assignok()
|
H A D | init.c | 1030 Namval_t *mp,fake; in get_math() local 1033 fake.nvname = ".sh.math."; in get_math() 1034 mp = (Namval_t*)dtprev(shp->fun_tree,&fake); in get_math() 1051 Namval_t *mp,fake; in setdisc_any() local 1054 fake.nvname = nv_name(np); in setdisc_any() 1059 mp = (Namval_t*)dtprev(shp->fun_tree,&fake); in setdisc_any() 1064 stakputs(fake.nvname); in setdisc_any()
|
H A D | nvtree.c | 150 Namval_t *nq=0,fake; in nv_diropen() local 186 fake.nvname = (char*)name; in nv_diropen() 187 if(dp->hp = (Namval_t*)dtprev(dp->root,&fake)) in nv_diropen()
|
H A D | array.c | 1786 Namval_t fake; in nv_associative() local 1787 fake.nvname = (char*)sp; in nv_associative() 1788 ap->pos = mp = (Namval_t*)dtprev(ap->header.table,&fake); in nv_associative()
|
/illumos-gate/usr/src/lib/libmlrpc/common/ |
H A D | ndrtypes.ndl | 45 #define FAKE [fake]
|
/illumos-gate/usr/src/tools/cscope-fast/ |
H A D | cgrep.c | 1550 uchar_t fake[1]; in re_cwexec() local 1553 fake[0] = 0; in re_cwexec() 1582 sp = fake; in re_cwexec()
|
/illumos-gate/exception_lists/ |
H A D | copyright | 137 usr/src/lib/gss_mechs/mech_krb5/include/fake-addrinfo.h 289 usr/src/lib/gss_mechs/mech_krb5/support/fake-addrinfo.c
|
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/ |
H A D | Makefile.com | 191 SUPPORT_OBJS= fake-addrinfo.o init-addrinfo.o threads.o errors.o plugins.o \
|
/illumos-gate/usr/src/cmd/svc/startd/ |
H A D | graph.c | 657 graph_edge_t fake; in graph_walk() local 670 fake.ge_vertex = v; in graph_walk() 671 (void) graph_walk_recurse(&fake, &gi); in graph_walk()
|
/illumos-gate/usr/src/cmd/sgs/elfdump/common/ |
H A D | elfdump.msg | 670 # Names of fake sections generated from program header data
|