Searched defs:colon (Results 1 - 25 of 64) sorted by relevance

123

/external/chromium/net/proxy/
H A Dproxy_server.cc109 std::string::const_iterator colon = std::find(begin, end, ':'); local
110 if (colon != end &&
111 (end - colon) >= 3 &&
112 *(colon + 1) == '/' &&
113 *(colon + 2) == '/') {
114 scheme = GetSchemeFromURIInternal(begin, colon);
115 begin = colon + 3; // Skip past the "://"
/external/clang/test/Analysis/
H A Dptr-arith.c30 const char *colon = memchr (domain_b, ':', domain_e - domain_b); local
32 for (p = colon + 1; p < domain_e ; p++)
/external/dropbear/
H A Dscpmisc.c116 colon(char *cp) function
120 if (*cp == ':') /* Leading colon is part of file name. */
/external/iproute2/ip/
H A Diplink_vlan.c54 char *colon = strchr(*argv, ':'); local
56 if (!colon)
58 *colon = '\0';
62 if (get_u32(&m.to, colon + 1, 0))
/external/iproute2/misc/
H A Dlnstat_util.c299 const char *colon = strchr(name, ':'); local
303 if (colon) {
304 file = strndup(name, colon-name);
305 field = colon+1;
/external/iptables/extensions/
H A Dlibipt_DNAT.c70 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 Dlibipt_SNAT.c70 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/valgrind/main/coregrind/
H A Dlauncher-linux.c90 const char *colon; local
94 if ((colon = strchr(path, ':')) == NULL)
101 memcpy(fullname, path, colon - path);
102 fullname[colon - path] = '\0';
103 path = colon + 1;
H A Dlauncher-darwin.c103 const char *colon; local
107 if ((colon = strchr(path, ':')) == NULL)
114 memcpy(fullname, path, colon - path);
115 fullname[colon - path] = '\0';
116 path = colon + 1;
/external/valgrind/main/tests/
H A Ds390x_features.c197 char *colon; local
233 colon = strchr(cpu, ':');
235 if (colon == NULL) {
238 } else if (colon == cpu) {
242 } else if (colon[1] == '\0') {
244 *colon = '\0';
247 *colon = ':';
250 *colon = '\0';
252 to = locate_model(colon + 1);
253 *colon
[all...]
/external/libppp/src/
H A Dnat_cmd.c372 char *colon; local
375 colon = strchr(str, ':');
376 if (!colon) {
381 *colon = '\0'; /* Cheat the const-ness ! */
383 *colon = ':'; /* Cheat the const-ness ! */
387 return StrToPortRange(colon + 1, low, high, proto);
/external/quake/quake/src/QW/client/
H A Dnet_udp.c123 char *colon; local
134 for (colon = copy ; *colon ; colon++)
135 if (*colon == ':')
137 *colon = 0;
138 sadr.sin_port = htons(atoi(colon+1));
H A Dnet_wins.c99 char *colon; local
110 for (colon = copy ; *colon ; colon++)
111 if (*colon == ':')
113 *colon = 0;
114 sadr.sin_port = htons((short)atoi(colon+1));
/external/tcpdump/
H A Dprint-esp.c221 char *colon, *p; local
232 colon = strchr(decode, ':');
233 if (colon == NULL) {
237 *colon = '\0';
239 len = colon - decode;
265 colon++;
266 if (colon[0] == '0' && colon[1] == 'x') {
268 colon += 2;
269 len = strlen(colon) /
[all...]
/external/chromium/googleurl/src/
H A Durl_parse.cc72 // Find the first colon in the user section, which separates the username and
109 int colon = -1; local
111 // Find the last right-bracket, and the last colon.
118 colon = i;
123 if (colon > ipv6_terminator) {
125 *hostname = MakeRange(serverinfo.begin, colon);
128 *port_num = MakeRange(colon + 1, serverinfo.end());
255 // Find the first colon character.
262 return false; // No colon found: no scheme
269 // colon) wher
[all...]
/external/chromium/net/websockets/
H A Dwebsocket_handshake_handler.cc61 std::string::const_iterator colon = std::find(line_begin, line_end, ':'); local
62 if (colon == line_end) {
66 *name_end = colon;
/external/chromium/third_party/libjingle/source/talk/examples/call/
H A Dcall_main.cc331 int colon = server.find(':'); local
332 if (colon == -1) {
336 host = server.substr(0, colon);
337 port = atoi(server.substr(colon + 1).c_str());
/external/linux-tools-perf/util/
H A Dhelp.c177 char *paths, *path, *colon; local
180 if ((colon = strchr(path, PATH_SEP)))
181 *colon = 0;
185 if (!colon)
187 path = colon + 1;
/external/llvm/lib/TableGen/
H A DTGLexer.h39 colon, semi, // : ; enumerator in enum:llvm::tgtok::TokKind
/external/quake/quake/src/WinQuake/
H A Dnet_udp.cpp144 char *colon; local
186 colon = Q_strrchr (my_tcpip_address, ':');
187 if (colon)
188 *colon = 0;
/external/webkit/Source/JavaScriptCore/wtf/url/src/
H A DURLParser.h103 // Find the first colon character.
110 return false; // No colon found: no scheme
118 // the colon) where we'll begin parsing.
158 afterScheme = parsed.scheme.end() + 1; // Skip past the colon.
160 // Say there's no scheme when there is a colon. We could also say
509 // Find the first colon in the user section, which separates the
543 int colon = -1; local
545 // Find the last right-bracket, and the last colon.
552 colon = i;
559 if (colon > ipv6Terminato
[all...]
/external/webkit/Source/WebCore/xml/
H A DXPathParser.cpp458 size_t colon = qName.find(':'); local
459 if (colon != notFound) {
462 namespaceURI = m_resolver->lookupNamespaceURI(qName.left(colon));
465 localName = qName.substring(colon + 1);
/external/chromium/net/http/
H A Dhttp_util.cc297 // ensure match is suffixed by colon
477 const char* colon = std::find(begin, end, ':'); local
478 if (colon == end)
482 const char* name_end = colon;
641 string::const_iterator colon = find(name_begin_, values_end_, ':'); local
642 if (colon == values_end_)
645 name_end_ = colon;
657 values_begin_ = colon + 1;
/external/oprofile/libop/
H A Dop_events.c354 char const * colon; local
357 end = colon = c;
360 colon = strchr(colon, ':');
362 if (!colon) {
368 if (colon >= end)
371 tag_len = colon - c;
372 val_len = end - (colon + 1);
383 *value = op_xstrndup(colon + 1, val_len);
/external/sqlite/android/
H A Dsqlite3_android.cpp228 // check SECONDARY_STORAGE, which should be a colon separated list of paths
231 const char* colon = strchr(secondary_paths, ':'); local
232 int length = (colon ? colon - secondary_paths : strlen(secondary_paths));

Completed in 598 milliseconds

123