/src/usr.sbin/lockstat/ |
elf32.c | 97 static char *strp; variable in typeref:typename:char * 155 if ((strp = malloc(strhdr.sh_size)) == NULL) 157 sz = pread(fd, strp, strhdr.sh_size, strhdr.sh_offset); 198 if (strcmp(&strp[symp[i].st_name], name) != 0) 219 strlcpy(name, &strp[symp[i].st_name], 223 &strp[symp[i].st_name], off);
|
/src/usr.bin/banner/ |
banner.c | 130 char *strp; local in function:scan_out 136 strp = &outbuf[0]; 138 *strp++ = BackGnd; 147 *strp++ = BackGnd; 149 strp = scnline( 150 scnkey_def[(int)c][scnhgt-1-d], strp, cc); 152 strp = scnline( 153 scnkey_lpd[(int)c][scnhgt-1-d], strp, cc); 156 *strp++ = BackGnd; 159 *strp++ = BackGnd [all...] |
/src/libexec/ld.elf_so/ |
symbol.c | 180 const char *strp; local in function:_rtld_symlook_obj_matched_symbol 184 strp = obj->strtab + symp->st_name; 185 rdbg(("check \"%s\" vs \"%s\" in %s", name, strp, obj->path)); 186 if (name[1] != strp[1] || strcmp(name, strp))
|
/src/bin/pax/ |
file_subs.c | 976 char **strp; local in function:file_write 1038 strp = &gnu_name_string; 1042 strp = &gnu_link_string; 1046 strp = NULL; 1050 if (strp) { 1051 char *nstr = *strp ? realloc(*strp, *lenp + wcnt + 1) : 1058 *strp = nstr;
|
/src/usr.bin/showmount/ |
showmount.c | 276 char *strp; local in function:xdr_mntdump 287 strp = mp->ml_host; 288 if (!xdr_string(xdrsp, &strp, RPCMNT_NAMELEN)) { 292 strp = mp->ml_dirp; 293 if (!xdr_string(xdrsp, &strp, RPCMNT_PATHLEN)) { 381 char *strp; local in function:xdr_exports 391 strp = ep->ex_dirp; 392 if (!xdr_string(xdrsp, &strp, RPCMNT_PATHLEN)) 402 strp = gp->gr_name; 403 if (!xdr_string(xdrsp, &strp, RPCMNT_NAMELEN) [all...] |
/src/lib/libtelnet/ |
encrypt.c | 760 unsigned char *strp; local in function:encrypt_send_keyid 770 for (strp = &str_keyid[4]; keylen > 0; --keylen) { 771 if ((*strp++ = *keyid++) == IAC) 772 *strp++ = IAC; 774 *strp++ = IAC; 775 *strp++ = SE; 776 telnet_net_write(str_keyid, strp - str_keyid); 777 printsub('>', &str_keyid[2], strp - str_keyid - 2);
|
/src/sbin/routed/ |
table.c | 1171 char str[100], *strp; local in function:read_rt 1237 strp = &str[strlen(str)]; 1239 snprintf(strp, str + sizeof(str) - strp, 1241 strp += strlen(strp); 1264 snprintf(strp, str + sizeof(str) - strp, ": %s", 1266 strp += strlen(strp); [all...] |
/src/usr.sbin/lpr/lpd/ |
printjob.c | 1068 char *strp; local in function:scan_out 1075 strp = &outbuf[0]; 1081 *strp++ = BACKGND; 1083 strp = scnline(scnkey[(int)c][scnhgt-1-d], 1084 strp, cc); 1088 *strp++ = BACKGND; 1089 *strp++ = BACKGND; 1091 while (*--strp == BACKGND && strp >= outbuf) 1093 strp++ [all...] |
/src/usr.sbin/mountd/ |
mountd.c | 803 char *strp; local in function:xdr_mlist 809 strp = &mlp->ml_host[0]; 810 if (!xdr_string(xdrsp, &strp, RPCMNT_NAMELEN)) 812 strp = &mlp->ml_dirp[0]; 813 if (!xdr_string(xdrsp, &strp, RPCMNT_PATHLEN)) 867 char *strp; local in function:put_exlist 874 strp = dp->dp_dirp; 875 if (!xdr_string(xdrsp, &strp, RPCMNT_PATHLEN)) 889 strp = 891 if (!xdr_string(xdrsp, &strp, [all...] |
/src/usr.bin/vmstat/ |
vmstat.c | 2409 char *strp; local in function:hist_dodump_sysctl 2427 strp = (char *)(&hist->sh_events[hist->sh_numentries]); 2438 fmt = &strp[e->she_fmtoffset]; 2444 fn = &strp[e->she_funcoffset];
|
/src/lib/libedit/ |
readline.c | 1792 const char *strp; local in function:history_search 1800 if ((strp = strstr(ev.str, str)) != NULL) 1801 return (int)(strp - ev.str);
|