/external/libmicrohttpd/src/examples/ |
H A D | mhd2spdy_structures.c | 74 char *colon; local 95 colon = strrchr((*uri)->host_and_port, ':'); 96 if(NULL == colon) 104 port = atoi(colon + 1); 111 asprintf(&((*uri)->host), "%.*s", (int)(colon - (*uri)->host_and_port), (*uri)->host_and_port);
|
/external/iproute2/ip/ |
H A D | iplink_vlan.c | 61 char *colon = strchr(*argv, ':'); local 63 if (!colon) 65 *colon = '\0'; 69 if (get_u32(&m.to, colon + 1, 0))
|
/external/iproute2/misc/ |
H A D | lnstat_util.c | 303 const char *colon = strchr(name, ':'); local 307 if (colon) { 308 file = strndup(name, colon-name); 309 field = colon+1;
|
/external/iptables/extensions/ |
H A D | libip6t_DNAT.c | 49 char *arg, *start, *end = NULL, *colon = NULL, *dash, *error; local 59 /* Lets assume one colon is port information. Otherwise its an IPv6 address */ 60 colon = strchr(arg, ':'); 61 if (colon && strchr(colon+1, ':')) 62 colon = NULL; 72 colon = strchr(end + 1, ':'); 75 if (colon) { 84 port = atoi(colon+1); 87 "Port `%s' not valid\n", colon [all...] |
H A D | libip6t_SNAT.c | 49 char *arg, *start, *end = NULL, *colon = NULL, *dash, *error; local 59 /* Lets assume one colon is port information. Otherwise its an IPv6 address */ 60 colon = strchr(arg, ':'); 61 if (colon && strchr(colon+1, ':')) 62 colon = NULL; 72 colon = strchr(end + 1, ':'); 75 if (colon) { 84 port = atoi(colon+1); 87 "Port `%s' not valid\n", colon [all...] |
H A D | libipt_DNAT.c | 70 char *arg, *colon, *dash, *error; local 77 colon = strchr(arg, ':'); 79 if (colon) { 88 port = atoi(colon+1); 91 "Port `%s' not valid\n", colon+1); 93 error = strchr(colon+1, ':'); 98 dash = strchr(colon, '-'); 113 "Port range `%s' funky\n", colon+1); 117 /* Starts with a colon? No IP info...*/ 118 if (colon [all...] |
H A D | libipt_SNAT.c | 70 char *arg, *colon, *dash, *error; local 77 colon = strchr(arg, ':'); 79 if (colon) { 88 port = atoi(colon+1); 91 "Port `%s' not valid\n", colon+1); 93 error = strchr(colon+1, ':'); 98 dash = strchr(colon, '-'); 113 "Port range `%s' funky\n", colon+1); 117 /* Starts with a colon? No IP info...*/ 118 if (colon [all...] |
/external/libunwind/src/ |
H A D | os-linux.h | 209 char perm[16], dash = 0, colon = 0, *cp; local 272 cp = scan_char (cp, &colon); 279 if (dash != '-' || colon != ':')
|
/external/libvncserver/libvncclient/ |
H A D | vncviewer.c | 330 char* colon=strchr(argv[i+1],':'); local 337 if(colon) { 338 client->destHost[(int)(colon-argv[i+1])] = '\0'; 339 client->destPort = atoi(colon+1); 343 char* colon=strchr(argv[i],':'); local 348 if(colon) { 350 client->serverHost[(int)(colon-argv[i])] = '\0'; 351 client->serverPort = atoi(colon+1);
|
/external/ltrace/ |
H A D | glob.c | 31 const char *colon = memchr(glob + from + 2, ':', length - 1); local 32 if (colon == NULL || colon[1] != ']') 34 return colon - glob;
|
/external/valgrind/coregrind/ |
H A D | launcher-linux.c | 94 const char *colon; local 109 if ((colon = strchr(path, ':')) == NULL) 116 strncpy(fullname, path, colon - path); 117 fullname[colon - path] = '\0'; 118 path = colon + 1;
|
H A D | launcher-darwin.c | 107 const char *colon; local 111 if ((colon = strchr(path, ':')) == NULL) 118 memcpy(fullname, path, colon - path); 119 fullname[colon - path] = '\0'; 120 path = colon + 1;
|
/external/valgrind/tests/ |
H A D | s390x_features.c | 206 char *colon; local 250 colon = strchr(cpu, ':'); 252 if (colon == NULL) { 255 } else if (colon == cpu) { 259 } else if (colon[1] == '\0') { 261 *colon = '\0'; 264 *colon = ':'; 267 *colon = '\0'; 269 to = locate_model(colon + 1); 270 *colon [all...] |
/external/boringssl/src/crypto/bio/ |
H A D | connect.c | 139 const char *colon = strchr(name, ':'); local 140 if (colon == NULL || strchr(colon + 1, ':') != NULL) { /* IPv6 address */ 145 host_len = colon - name; 146 port = colon + 1;
|
/external/clang/test/Analysis/ |
H A D | ptr-arith.c | 30 const char *colon = memchr (domain_b, ':', domain_e - domain_b); local 32 for (p = colon + 1; p < domain_e ; p++)
|
/external/libunwind/tests/ |
H A D | test-coredump-unwind.c | 316 char *colon; local 317 long vaddr = strtol(*argv, &colon, 16); 318 if (*colon != ':') 320 if (_UCD_add_backing_file_at_vaddr(ui, vaddr, colon + 1) < 0) 321 error_msg_and_die("Can't add backing file '%s'", colon + 1);
|
/external/webrtc/webrtc/base/ |
H A D | socketaddress.cc | 185 std::string::size_type colon = str.find(':', closebracket); local 186 if (colon != std::string::npos && colon > closebracket) { 187 SetPort(strtoul(str.substr(colon + 1).c_str(), NULL, 10));
|
H A D | win32.cc | 229 const char* colon = rtc::strchr(addrstart, "::"); local 230 if (colon) { 240 addrstart = colon + 1;
|
/external/libnl/lib/route/ |
H A D | tc.c | 522 char *colon, *end; local 535 h = strtoul(name, &colon, 16); 537 if (colon == name) { 540 if (':' != *colon) 544 if (':' == *colon) { 550 if ('\0' == colon[1]) { 555 uint32_t l = strtoul(colon+1, &end, 16); 566 } else if ('\0' == *colon) {
|
/external/llvm/lib/TableGen/ |
H A D | TGLexer.h | 40 colon, semi, // : ; enumerator in enum:llvm::tgtok::TokKind
|
/external/sqlite/android/ |
H A D | sqlite3_android.cpp | 180 // check SECONDARY_STORAGE, which should be a colon separated list of paths 183 const char* colon = strchr(secondary_paths, ':'); local 184 int length = (colon ? colon - secondary_paths : strlen(secondary_paths));
|
/external/tcpdump/ |
H A D | print-esp.c | 260 char *colon, *p; local 262 colon = strchr(decode, ':'); 263 if (colon == NULL) { 267 *colon = '\0'; 295 colon++; 296 if (colon[0] == '0' && colon[1] == 'x') { 299 colon += 2; 300 sa->secretlen = espprint_decode_hex(ndo, sa->secret, sizeof(sa->secret), colon); 303 i = strlen(colon); 326 char *colon; local [all...] |
/external/boringssl/src/crypto/err/ |
H A D | err.c | 389 /* output may be truncated; make sure we always have 5 colon-separated 402 char *colon = strchr(s, ':'); local 405 if (colon == NULL || colon > last_pos) { 406 /* set colon |i| at last possible position (buf[len-1] is the 407 * terminating 0). If we're setting this colon, then all whole of the 414 s = colon + 1;
|
/external/jsoncpp/src/lib_json/ |
H A D | json_reader.cpp | 432 Token colon; local 433 if (!readToken(colon) || colon.type_ != tokenMemberSeparator) { 435 "Missing ':' after object member name", colon, tokenObjectEnd);
|
/external/llvm/lib/CodeGen/MIRParser/ |
H A D | MILexer.h | 39 colon, enumerator in enum:llvm::MIToken::TokenKind
|