| /src/usr.sbin/inetd/ |
| parse.c | 134 struct servtab *sep, *cp; local 159 for (sep = servtab; sep != NULL; sep = sep->se_next) 160 if (is_same_service(sep, cp)) 162 if (sep != NULL) { 168 * sep->se_wait may be holding the pid of a daemon 174 (sep->se_wait == 1 || cp->se_wait == 0)) 175 sep->se_wait = cp->se_wait 341 struct servtab *sep; local 387 struct servtab *sep = &serv; local 943 struct servtab *sep; local 960 struct servtab *sep, **sepp = &servtab; local [all...] |
| inetd.c | 416 struct servtab *sep; local 447 sep = (struct servtab *)ev->udata; 449 if ((int)ev->ident != sep->se_fd) 451 DPRINTF(SERV_FMT ": service requested" , SERV_PARAMS(sep)); 452 if (sep->se_wait == 0 && sep->se_socktype == SOCK_STREAM) { 454 ctrl = accept(sep->se_fd, NULL, NULL); 456 SERV_PARAMS(sep), ctrl); 461 SERV_PARAMS(sep)); 464 sep->se_accept_count++ 690 struct servtab *sep; local 726 struct servtab *sep; local 749 struct servtab *sep; local [all...] |
| ratelimit.c | 78 rl_process(struct servtab *sep, int ctrl) 83 SERV_PARAMS(sep)); 85 "%zu and se_count %zu", SERV_PARAMS(sep), 86 sep->se_service_max, sep->se_count); 88 if (sep->se_count == 0) { 90 sep->se_time = now; 93 if (!rl_process_service_max(sep, ctrl, &now) 94 || !rl_process_ip_max(sep, ctrl, &now)) { 98 DPRINTF(SERV_FMT ": running service ", SERV_PARAMS(sep)); [all...] |
| parse_v2.c | 151 parse_syntax_v2(struct servtab *sep, char **cpp) 160 switch(parse_invoke_handler(&is_valid_definition, cpp, sep)) { 174 if (is_valid_definition && fill_default_values(sep)) { 204 fill_default_values(struct servtab *sep) 208 if (sep->se_service_max == SERVTAB_UNSPEC_SIZE_T) { 210 sep->se_service_max = TOOMANY; 213 if (sep->se_hostaddr == NULL) { 215 sep->se_hostaddr = newstr(defhost); 218 try_infer_socktype(sep); 220 if (sep->se_server == NULL) [all...] |
| inetd.h | 106 #define ISMUXPLUS(sep) ((sep)->se_type == MUXPLUS_TYPE) 107 #define ISMUX(sep) (((sep)->se_type == MUX_TYPE) || ISMUXPLUS(sep)) 147 #define SERV_PARAMS(sep) sep->se_service,sep->se_proto 164 #define isrpcservice(sep) ((sep)->se_rpcversl != 0 [all...] |
| /src/external/mit/libuv/dist/src/ |
| strtok.h | 25 char* uv__strtok(char* str, const char* sep, char** itr);
|
| strtok.c | 25 char* uv__strtok(char* str, const char* sep, char** itr) { 39 sep_itr = sep;
|
| /src/external/gpl3/gdb/dist/gnulib/import/ |
| filenamecat-lgpl.c | 54 char sep = '\0'; local 59 sep = '/'; 68 sep = '.'; 71 char *p_concat = malloc (dirlen + (sep != '\0') + baselen + 1); 79 *p = sep; 80 p += sep != '\0';
|
| /src/external/gpl3/gdb.old/dist/gnulib/import/ |
| filenamecat-lgpl.c | 54 char sep = '\0'; local 59 sep = '/'; 68 sep = '.'; 71 char *p_concat = malloc (dirlen + (sep != '\0') + baselen + 1); 79 *p = sep; 80 p += sep != '\0';
|
| /src/external/bsd/pkg_install/dist/lib/ |
| opattern.c | 55 char *sep; local 63 if ((sep = strchr(pattern, '{')) == (char *) NULL) { 66 (void) strncpy(buf, pattern, (size_t) (sep - pattern)); 67 alt = &buf[sep - pattern]; 69 for (cnt = 0, cp = sep; *cp && last == (char *) NULL; cp++) { 79 for (found = 0, cp = sep + 1; *sep != '}'; cp = sep + 1) { 80 for (cnt = 0, sep = cp; cnt > 0 || (cnt == 0 && *sep != '}' && *sep != ','); sep++) [all...] |
| /src/sys/arch/sparc/sparc/ |
| cache_print.h | 54 const char *sep = ""; local 58 printf("%s%dK instruction (%d b/l)", sep, 60 sep = ", "; 63 printf("%s%dK data (%d b/l)", sep,
|
| /src/tests/lib/libc/regex/ |
| test_regex.h | 41 int split(char *string, char *fields[], int nfields, const char *sep);
|
| /src/external/bsd/wpa/dist/src/utils/ |
| ext_password_file.c | 101 char *sep = os_strchr(pos, '='); local 103 if (!sep) { 109 if (!sep[1]) { 115 if (os_strncmp(name, pos, sep - pos) != 0) 118 password = wpabuf_alloc_copy(sep + 1, os_strlen(sep + 1));
|
| /src/external/ibm-public/postfix/dist/src/util/ |
| argv_split_at.c | 11 /* ARGV *argv_split_at(string, sep) 13 /* int sep; 15 /* ARGV *argv_split_at_count(string, sep, count) 17 /* int sep; 20 /* ARGV *argv_split_at_append(argv, string, sep) 23 /* int sep; 72 ARGV *argv_split_at(const char *string, int sep) 79 while ((arg = split_at(bp, sep)) != 0) { 91 ARGV *argv_split_at_count(const char *string, int sep, ssize_t count) 100 while (count-- > 1 && (arg = split_at(bp, sep)) != 0) [all...] |
| mystrtok.c | 103 char *mystrtok(char **src, const char *sep) 105 return (mystrtok_cw(src, sep, (char *) 0)); 110 char *mystrtok_cw(char **src, const char *sep, const char *blame) 118 start += strspn(start, sep); 127 end = start + strcspn(start, sep); 144 char *mystrtokq(char **src, const char *sep, const char *parens) 146 return (mystrtokq_cw(src, sep, parens, (char *) 0)); 151 char *mystrtokq_cw(char **src, const char *sep, const char *parens, 162 start += strspn(start, sep); 176 } else if (level == 0 && strchr(sep, ch) != 0) [all...] |
| /src/external/apache2/llvm/dist/llvm/utils/unittest/googlemock/src/ |
| gmock-matchers.cc | 237 const char* sep = ""; local 239 os << sep << "\n (" 242 sep = ","; 272 const char* sep = ""; local 274 ss << sep; local 278 sep = ";"; 307 const char* sep = ""; local 309 *os << sep; local 317 sep = ", and\n"; 319 sep = "\n" 348 const char* sep = ""; local 350 *os << sep; local 386 const char* sep = local 400 const char* sep = local 450 const char* sep = "where:\\n"; local [all...] |
| /src/usr.sbin/cpuctl/arch/ |
| sparc64.c | 51 const char *sep; local 91 sep = ""; 93 printf("%s%ldK instruction (%ld b/l)", sep, 96 sep = ", "; 99 printf("%s%ldK data (%ld b/l)", sep, 102 sep = ", "; 106 printf("%s%ldK external (%ld b/l)", sep,
|
| /src/sbin/swapctl/ |
| swaplist.c | 89 struct swapent *sep, *fsep; local 123 fsep = sep = (struct swapent *)malloc(nswap * sizeof(*sep)); 124 if (sep == NULL) 126 rnswap = swapctl(SWAP_STATS, (void *)sep, nswap); 137 qsort(sep, rnswap, sizeof(struct swapent), swapent_cmp); 172 for (i = rnswap; i-- > 0; sep++) { 173 if ((size_t)pathmax < (l = strlen(sep->se_path))) 175 totalsize += sep->se_nblks; 177 sep = fsep [all...] |
| /src/lib/libc/stdio/ |
| fgetstr.c | 50 __fgetstr(FILE *__restrict fp, size_t *__restrict lenp, int sep) 57 n = __getdelim(&_EXT(fp)->_fgetstr_buf, &_EXT(fp)->_fgetstr_len, sep, fp);
|
| /src/usr.bin/systat/ |
| swap.c | 163 struct swapent *sep; local 168 for (sep = swap_devices, i = 0; i < nswap; i++, sep++) { 169 p = strrchr(sep->se_path, '/'); 170 p = p ? p+1 : sep->se_path; 175 mvwprintw(wnd, i + 1, col, "%*d", hlen, sep->se_nblks / blk_div); 178 xsize = sep->se_nblks; 179 used = sep->se_inuse;
|
| /src/external/bsd/openldap/dist/libraries/librewrite/ |
| rewrite.c | 50 char *string, *sep, *result = NULL; local 65 for ( sep = strchr( rewriteContext, ',' ); 67 rewriteContext = sep, 68 sep ? sep = strchr( rewriteContext, ',' ) : NULL ) 72 if ( sep != NULL ) { 73 sep[ 0 ] = '\0'; 74 sep++;
|
| /src/external/bsd/ntp/dist/scripts/stats/ |
| etf.S | 9 cat("\n", file=file2 , append=TRUE, fill=FALSE, sep="") 10 cat(file1, "\n", file=file2, append=TRUE, fill=FALSE, sep="") 11 cat("etf1 ", count, ", T ", mean, " ns, R ", slope, " ps/s, std ", std, " us\n", file=file2, append=TRUE, fill=FALSE, sep="") 12 str <- paste("eps/", file1, ".eps", sep="")
|
| /src/usr.sbin/bta2dpd/bta2dpd/ |
| avdtp_signal.h | 114 uint8_t sep; member in struct:avdtp_sepInfo 122 *sep); 125 void avdtpGetCapabilities(int fd, int recvfd, uint8_t sep); 127 caplen, uint8_t sep, u_int8_t *freq, u_int8_t *mode, u_int8_t *alloc_method, 129 int avdtpSetConfiguration(int fd, int recvfd, uint8_t sep, uint8_t *data, 131 void avdtpOpen(int fd, int recvfd, uint8_t sep); 132 void avdtpStart(int fd, int recvfd, uint8_t sep); 133 void avdtpClose(int fd, int recvfd, uint8_t sep); 134 void avdtpSuspend(int fd, int recvfd, uint8_t sep); 135 void avdtpAbort(int fd, int recvfd, uint8_t sep); [all...] |
| /src/external/gpl3/gdb/dist/gdb/dwarf2/ |
| cooked-index-entry.c | 182 const char *sep = default_sep; local 188 sep = "::"; 194 sep = "__"; 200 sep = "."; 204 if (sep == nullptr) 214 get_parent ()->write_scope (storage, sep, name_flags); 223 const char *sep, 227 get_parent ()->write_scope (storage, sep, flags); 234 obstack_grow (storage, sep, strlen (sep)); [all...] |
| /src/sys/arch/ews4800mips/stand/common/ |
| cmd.c | 73 int i, argc, sep; local 97 sep = 0; 101 sep = 1; 102 } else if (sep) { 103 sep = 0;
|