/osnet-11/usr/src/lib/libmail/common/ |
H A D | strmove.c | 40 * void strmove(char *to, char *from) 49 strmove(char *to, char *from) argument 51 while ((*to++ = *from++) != 0)
|
H A D | xgetenv.c | 49 * xgetenv() returns the environment value from the 55 * Xgetenv() returns the environment value from the 173 reduce(char *from) argument 175 char *to = from; 176 char *svfrom = from; 179 while (*from &&isspace((int)*from)) 180 from++; 183 while (*from && (*from ! [all...] |
H A D | s_string.c | 189 s_append(string *to, char *from) argument 193 if (from == NULL) 195 for (; *from; from++) 196 s_putc(to, (int)(unsigned int)*from); 207 * FILE *fp; stream to read from 282 s_tok(string *from, char *split) argument 284 char *splitend = strpbrk(from->ptr, split); 288 for (; from->ptr < splitend; ) { 289 s_putc(to, (int)(unsigned int)*from 388 s_parse(string *from, string *to) argument [all...] |
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/krb5/krb/ |
H A D | cp_key_cnt.c | 8 * Export of this software from the United States of America may 9 * require a specific license from the United States Government. 37 krb5_copy_keyblock_contents(krb5_context context, const krb5_keyblock *from, krb5_keyblock *to) argument 39 return krb5int_c_copy_keyblock_contents(context, from, to);
|
H A D | copy_tick.c | 8 * Export of this software from the United States of America may 9 * require a specific license from the United States Government. 97 krb5_copy_ticket(krb5_context context, const krb5_ticket *from, krb5_ticket **pto) argument 105 *tempto = *from; 106 retval = krb5_copy_principal(context, from->server, &tempto->server); 111 retval = krb5_copy_data(context, &from->enc_part.ciphertext, &scratch); 119 retval = copy_enc_tkt_part(context, from->enc_part2, &tempto->enc_part2);
|
/osnet-11/usr/src/lib/libcurses/screen/ |
H A D | memSset.c | 35 * University Acknowledgment- Portions of this document are derived from 57 char *from; /* %r7 */ local 65 from = (char *)sfrom; 68 /* bcopy (count, to, from) */ 76 char *from; /* 4(%fp) */ 84 from = (char *)sfrom; 91 asm(" movw 4(%fp),%r0"); /* from */ 110 memcpy(char *to, char *from, int count) argument
|
/osnet-11/usr/src/lib/libast/common/string/ |
H A D | swapmem.c | 35 * from==to is ok 39 swapmem(int op, const void* from, void* to, register size_t n) argument 41 register char* f = (char*)from;
|
H A D | ccmap.c | 623 * generate and return ccode map from i to o 715 dump(int from, int to) argument 721 m = ccmap(from, to); 722 sfprintf(sfstdout, "\n /* %s => %s */\n\n", ccmapname(from), ccmapname(to));
|
/osnet-11/usr/src/lib/libc/port/gen/ |
H A D | swab.c | 37 #define STEP (void)((temp = *from++), (*to++ = *from++), (*to++ = temp)) 40 swab_impl(const char *from, char *to, ssize_t n) argument
|
/osnet-11/usr/src/lib/krb5/plugins/kdb/db2/libdb2/recno/ |
H A D | rec_delete.c | 5 * This code is derived from software contributed to Berkeley by 21 * may be used to endorse or promote products derived from this software 144 * __REC_DLEAF -- Delete a single record from a recno leaf page. 162 char *from; local 166 * Delete a record from a recno leaf page. Internal records are never 167 * deleted from internal pages, regardless of the records that caused 184 from = (char *)h + h->upper; 185 memmove(from + nbytes, from, (char *)to - from); [all...] |
/osnet-11/usr/src/common/crypto/ecc/ |
H A D | secitem.c | 124 SECITEM_CopyItem(PRArenaPool *arena, SECItem *to, const SECItem *from, argument 127 to->type = from->type; 128 if (from->data && from->len) { 130 to->data = (unsigned char*) PORT_ArenaAlloc(arena, from->len, 133 to->data = (unsigned char*) PORT_Alloc(from->len, kmflag); 139 PORT_Memcpy(to->data, from->data, from->len); 140 to->len = from->len;
|
/osnet-11/usr/src/lib/libsocket/inet/ |
H A D | rexec.c | 34 * University Acknowledgment- Portions of this document are derived from 121 struct sockaddr_storage sin2, from; local 144 socklen_t len = (socklen_t)sizeof (from); 145 s3 = accept(s2, (struct sockaddr *)&from, &len);
|
/osnet-11/usr/src/lib/libnisdb/yptol/ |
H A D | stubs.c | 115 rename_map(char *from, char *to, bool_t secure_map) argument
|
/osnet-11/usr/src/lib/libnisdb/ |
H A D | db_log.cc | 214 int from, to, ret = 0; local 218 if ((from = open(oldname, O_RDONLY, 0666)) < 0) { 227 (void) close(from); 231 while ((size = read(from, buf, sizeof (buf))) > 0) { 248 (void) close(from);
|
/osnet-11/usr/src/lib/libdscfg/common/ |
H A D | cfg_lockdmsg.c | 87 struct sockaddr from; local 110 len = sizeof (from); 111 rc = recvfrom(lock_soc, mp, sizeof (*mp), 0, &from, &len); 257 * from the lock daemon and enter pid into lock file so that the daemon
|
/osnet-11/usr/src/lib/krb5/plugins/kdb/db2/libdb2/btree/ |
H A D | bt_delete.c | 5 * This code is derived from software contributed to Berkeley by 21 * may be used to endorse or promote products derived from this software 310 * Delete forward, then delete backward, from the found key. If 336 /* Delete from the key to the beginning of the page. */ 365 * Delete a single page from the tree. 387 char *from; local 394 * a page, so we have to delete the key from the parent page. 396 * If the delete from the parent page makes it empty, this process may 434 from = (char *)pg + pg->upper; 435 memmove(from 484 char *from; local [all...] |
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/x2p/ |
H A D | util.c | 87 safecpy(char *to, register char *from, register int len) argument 91 if (from != Nullch) 92 for (len--; len && (*dest++ = *from++); len--) ; 100 cpytill(register char *to, register char *from, register int delim) argument 102 for (; *from; from++,to++) { 103 if (*from == '\\') { 104 if (from[1] == delim) 105 from++; 106 else if (from[ 119 cpy2(register char *to, register char *from, register int delim) argument [all...] |
/osnet-11/usr/src/cmd/ast/msgcc/ |
H A D | msggen.c | 37 " UTF-8 encoded. \biconv\b(1) can be used to convert to/from UTF-8.]" 67 " \an\a from an existing message catalog. \an\a" 102 " message with that number (if any) is deleted from the" 180 * sfprintf() with ccmaps(from,to) 184 ccsfprintf(int from, int to, Sfio_t* sp, const char* format, ...) argument 192 if (from == to) 198 ccmaps(s, n, from, to); 520 error(ERROR_SYSTEM|3, "%s: cannot rename from temporary catalog file %s", catfile, s);
|
/osnet-11/usr/src/lib/libsip/common/ |
H A D | sip_gids.c | 157 * Get 32-bits from gethrtime() 193 _sip_header_t *from; local 224 from = sip_search_for_header(_sip_msg, SIP_FROM, NULL); 228 if (to == NULL || from == NULL || callid == NULL || cseq == -1) 244 hdrlen = from->sip_hdr_end - from->sip_hdr_start; 245 _sasl_MD5Update(&ctx, (uchar_t *)from->sip_hdr_start, hdrlen); 260 hdrlen = from->sip_hdr_end - from->sip_hdr_start; 261 MD5Update(&ctx, (uchar_t *)from [all...] |
H A D | sip_xaction.c | 69 _sip_header_t *from = NULL; local 88 from = sip_search_for_header(msg, SIP_FROM, NULL); 91 if (via == NULL || from == NULL || cid == NULL) 97 from->sip_hdr_start, 98 from->sip_hdr_end - from->sip_hdr_start,
|
/osnet-11/usr/src/lib/libparted/common/libparted/fs/ext2/ |
H A D | ext2.c | 35 int ext2_copy_block(struct ext2_fs *fs, blk_t from, blk_t to) argument 39 if (!ext2_bcache_flush(fs, from)) return 0; 42 if (!ext2_read_blocks(fs, buf, from, 1)) return 0; 384 fprintf(stderr,"deleting 0x%04x from inode\n", 552 * (formula grabbed from linux ext2 kernel source) */
|
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/profile/ |
H A D | prof_parse.c | 45 char *to, *from; local 47 to = from = str; 49 for (to = from = str; *from && *from != '"'; to++, from++) { 50 if (*from == '\\') { 51 from++; 52 switch (*from) { 63 *to = *from; [all...] |
/osnet-11/usr/src/lib/krb5/kadm5/srv/ |
H A D | chgpwd.c | 11 * Export of this software from the United States of America may 12 * require a specific license from the United States Government. 33 * chgpwd.c - Handles changepw requests issued from non-Solaris krb5 clients. 204 "is missing from \"%s\""), 241 * Some brain-dead OS's don't return useful information from 385 strlcpy(strresult, "Ticket must be derived from a password", 436 krb5_klog_syslog(LOG_NOTICE, "setpw request from %s by %.*s%s " 442 krb5_klog_syslog(LOG_NOTICE, "chpw request from %s for %.*s%s: %s", 626 * on kpasswd-port 464 from MIT/M$ clients. 635 struct sockaddr_in from; local [all...] |
/osnet-11/usr/src/grub/grub2/grub-core/mmap/ |
H A D | mmap.c | 430 grub_uint64_t from, to; local 440 if (addr <= from) 441 addr = from; 455 from = parsemem (args[0]); 472 grub_uint64_t from, to; local 477 from = parsemem (args[0]); 485 if (to <= from) 486 return grub_error (GRUB_ERR_BAD_ARGUMENT, "to must be >= from"); 488 if (grub_mmap_register (from, to - from, GRUB_MEMORY_AVAILABL [all...] |
/osnet-11/usr/src/grub/grub2/grub-core/term/ |
H A D | at_keyboard.c | 105 grub_uint8_t from, to; member in struct:__anon658 196 grub_uint8_t from, to; member in struct:__anon659 406 if (set1_e0_mapping[i].from == (at_key & 0x7f)) 422 if (set2_e0_mapping[i].from == at_key) 435 grub_dprintf ("atkeyb", "Unknown key 0xe0+0x%02x from set %d\n", 438 grub_dprintf ("atkeyb", "Unknown key 0x%02x from set %d\n", 446 it's just used to catch events from control keys. */
|