/src/distrib/utils/libhack/ |
perror.c | 45 const char *separator; local in function:perror 50 separator = ""; 52 separator = ": "; 55 s, separator, strerror(errno));
|
/src/lib/libc/stdio/ |
perror.c | 56 const char *separator; local in function:perror 62 separator = ""; 64 separator = ": "; 67 (void)fprintf(stderr, "%s%s%s\n", s, separator, buf);
|
/src/lib/libc/compat/net/ |
compat_ns_addr.c | 58 char separator; local in function:ns_addr 68 * First, figure out what he intends as a field separator. 74 separator = '#'; 80 separator = ':'; 82 separator = '.'; 90 return (addr); /* No separator means net only */ 92 socketname = strchr(hostname, separator);
|
/src/usr.bin/column/ |
column.c | 74 static const char *separator = "\t "; /* field separator for table option */ variable in typeref:typename:const char * 99 separator = optarg; 225 (cols[coloff] = strtok(p, separator)) != NULL; p = NULL)
|
/src/usr.bin/units/ |
units.c | 154 char separator[2]; local in function:readunits 159 strlcpy(separator, ";", 160 sizeof(separator)); 162 strlcpy(separator, ":", 163 sizeof(separator)); 164 direc = strtok(env, separator); 176 direc = strtok(NULL, separator);
|
/src/usr.sbin/inetd/ |
parse.c | 744 char* separator = strchr(arg, ':'); local in function:getconfigent 745 if (separator == NULL) { 747 separator = strchr(arg, '.'); 750 if (separator == NULL) { 754 *separator = '\0'; 755 sep->se_group = newstr(separator + 1);
|
/src/sys/external/bsd/compiler_rt/dist/lib/interception/ |
interception_win.cc | 918 char* separator = _strchr(function_name, '.'); local in function:__interception::InternalGetProcAddress 919 if (!separator) 921 *separator = '\0'; 926 return InternalGetProcAddress(redirected_module, separator + 1);
|