Searched defs:fake (Results 1 - 15 of 15) sorted by relevance

/osnet-11/usr/src/cmd/sendmail/libsm/
H A Dvsnprintf.c26 ** 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 Dvasprintf.c64 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 Dsnprintf.c61 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 Dsscanf.c81 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 Dvfprintf.c82 ** 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...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/op/
H A Dclosure.t566 sub fake { subroutine
572 fake();
/osnet-11/usr/src/lib/libshell/common/sh/
H A Dnvtree.c153 Namval_t *nq=0,fake; local
189 fake.nvname = (char*)name;
190 if(dp->hp = (Namval_t*)dtprev(dp->root,&fake))
H A Dsubshell.c267 Namval_t fake; local
271 fake.nvname = name;
272 mpnext = dtnext(root,&fake);
H A Darray.c1724 Namval_t fake; local
1725 fake.nvname = (char*)sp;
1726 ap->pos = mp = (Namval_t*)dtprev(ap->header.table,&fake);
H A Dinit.c945 Namval_t *mp,fake; local
948 fake.nvname = ".sh.math.";
949 mp = (Namval_t*)dtprev(shp->fun_tree,&fake);
966 Namval_t *mp,fake; local
969 fake.nvname = nv_name(np);
974 mp = (Namval_t*)dtprev(shp->fun_tree,&fake);
979 stakputs(fake.nvname);
/osnet-11/usr/src/lib/libexacct/common/
H A Dexacct_ops.c733 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...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/
H A Dpad.c313 If fake, it means we're cloning an existing entry
321 * create even if fake. Really need to integrate better the whole entry
326 Perl_pad_add_name(pTHX_ char *name, HV* typestash, HV* ourstash, bool fake) argument
336 (long)offset, name, (fake ? " FAKE" : "")
353 if (fake)
552 then a fake entry is added to the current pad.
626 Find a named lexical anywhere in a chain of nested pads. Add fake entries
629 run-time cloning: don't add fake entries, just find the lexical and add a
695 /* no real entry - but did we find a fake one? */
740 1 /* fake */
[all...]
H A Dregcomp.c829 I32 deltanext, minnext, f = 0, fake; local
839 data_fake.last_closep = &fake;
1579 I32 deltanext, minnext, fake = 0; local
1590 data_fake.last_closep = &fake;
1884 I32 fake; local
1983 minlen = study_chunk(pRExC_state, &first, &fake, scan + RExC_size, /* Up to end */
2100 I32 fake; local
2109 minlen = study_chunk(pRExC_state, &scan, &fake, scan + RExC_size, &data, SCF_DO_STCLASS_AND|SCF_WHILEM_VISITED_POS);
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/
H A Dperl5db.pl1726 # If we're in single-step mode, or an interrupt (real or fake)
1795 # Yep! Show the difference, and fake an interrupt.
1876 Special check: if we're in package C<DB::fake>, we've gone through the
1882 elsif ($package eq 'DB::fake') {
1896 } ## end elsif ($package eq 'DB::fake')
7900 =item 3. An C<eval> (the debugger gets a C<(eval N)> fake file for each C<eval>).
8158 We then call C<DB::fake::at_exit()>, which returns the C<Use 'q' to quit ...">
8173 DB::fake::at_exit() unless $fall_off_end or $runnonstop;
8568 =head1 C<DB::fake>
8576 package DB::fake;
[all...]
/osnet-11/usr/src/lib/libc/port/gen/
H A Dcrypt.c1021 unlocked_encrypt(char *block, int fake) argument
1136 encrypt(char *block, int fake) argument
1138 if (fake != 0) {
1145 unlocked_encrypt(block, fake);

Completed in 83 milliseconds