HomeSort by relevance Sort by last modified time
    Searched refs:colon (Results 26 - 50 of 801) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/tcpdump/
print-esp.c 288 char *colon, *p; local
290 colon = strchr(decode, ':');
291 if (colon == NULL) {
295 *colon = '\0';
323 colon++;
324 if (colon[0] == '0' && colon[1] == 'x') {
327 colon += 2;
328 sa->secretlen = espprint_decode_hex(ndo, sa->secret, sizeof(sa->secret), colon);
331 i = strlen(colon);
354 char *colon; local
    [all...]
  /build/make/core/tasks/
sdk-addon.mk 45 $(eval _src := $(call module-stubs-files,$(call word-colon,1,$(cf)))) \
48 $(if $(_src),,$(eval $(error Unknown or unlinkable module: $(call word-colon,1,$(cf)). Requested by $(INTERNAL_PRODUCT)))) \
49 $(eval _dest := $(call word-colon,2,$(cf))) \
57 $(eval _src := $(call word-colon,1,$(cf))) \
58 $(eval _dest := $(call word-colon,2,$(cf))) \
76 $(eval _root := $(call word-colon,1,$(cf))) \
77 $(eval _src := $(call word-colon,2,$(cf))) \
78 $(eval _dest := $(call append-path,$(call append-path,$(staging),$(_root)),$(call word-colon,3,$(cf)))) \
vendor_module_check.mk 89 $(if $(filter $(_vendor_owner_whitelist), $(call word-colon,3,$(c))),,\
91 $(eval _vendor_module_owner_info += $(call word-colon,2,$(c)):$(call word-colon,3,$(c))))
  /device/google/marlin/common/
utils.mk 4 colon := $(empty):$(empty) macro
26 # fill wlist spaces with colon
27 # wrap w with colon
33 $(eval wl:= $(colon)$(subst $(space),$(colon),$(strip $(2)))$(colon)) \
34 $(eval w:= $(colon)$(strip $(1))$(colon)) \
  /device/google/wahoo/
utils.mk 4 colon := $(empty):$(empty) macro
26 # fill wlist spaces with colon
27 # wrap w with colon
33 $(eval wl:= $(colon)$(subst $(space),$(colon),$(strip $(2)))$(colon)) \
34 $(eval w:= $(colon)$(strip $(1))$(colon)) \
  /external/python/cpython2/Lib/
macpath.py 35 On the Mac, relative paths begin with a colon,
37 Anything else is absolute (the string up to the first colon is the
65 colon = 0
67 if s[i] == ':': colon = i + 1
68 path, file = s[:colon-1], s[colon:]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
macpath.py 34 On the Mac, relative paths begin with a colon,
36 Anything else is absolute (the string up to the first colon is the
64 colon = 0
66 if s[i] == ':': colon = i + 1
67 path, file = s[:colon-1], s[colon:]
  /prebuilts/gdb/linux-x86/lib/python2.7/
macpath.py 34 On the Mac, relative paths begin with a colon,
36 Anything else is absolute (the string up to the first colon is the
64 colon = 0
66 if s[i] == ':': colon = i + 1
67 path, file = s[:colon-1], s[colon:]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
macpath.py 34 On the Mac, relative paths begin with a colon,
36 Anything else is absolute (the string up to the first colon is the
64 colon = 0
66 if s[i] == ':': colon = i + 1
67 path, file = s[:colon-1], s[colon:]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
macpath.py 34 On the Mac, relative paths begin with a colon,
36 Anything else is absolute (the string up to the first colon is the
64 colon = 0
66 if s[i] == ':': colon = i + 1
67 path, file = s[:colon-1], s[colon:]
  /external/ipsec-tools/src/libipsec/
policy_token.l 77 colon \:
140 unique{colon}{decstring} {
  /external/apache-xml/src/main/java/org/apache/xml/utils/
XML11Char.java 415 final int colon = str.indexOf(':'); local
417 if (colon == 0 || colon == str.length() - 1) {
421 if (colon > 0) {
422 final String prefix = str.substring(0,colon);
423 final String localPart = str.substring(colon+1);
  /prebuilts/go/darwin-x86/src/net/
nss.go 88 colon := bytesIndexByte(line, ':')
89 if colon == -1 {
90 return errors.New("no colon on line")
92 db := string(trimSpace(line[:colon]))
93 srcs := line[colon+1:]
  /prebuilts/go/linux-x86/src/net/
nss.go 88 colon := bytesIndexByte(line, ':')
89 if colon == -1 {
90 return errors.New("no colon on line")
92 db := string(trimSpace(line[:colon]))
93 srcs := line[colon+1:]
  /external/owasp/sanitizer/src/tests/org/owasp/html/
CssTokensTest.java 202 int colon = golden.lastIndexOf(':'); local
203 if (colon >= 0) { // Unambiguous since : not allowed in identifier.
204 type = TokenType.valueOf(golden.substring(colon + 1));
205 golden = golden.substring(0, colon);
270 "*=:MATCH", " ", "=:DELIM", " ", "::COLON", " ", "%:DELIM", " ",
402 int colon = golden.lastIndexOf(':'); local
404 golden.substring(0, colon) + ":"
405 + CssTokens.TokenType.valueOf(golden.substring(colon+1)).name());
    [all...]
  /external/syslinux/gpxe/src/core/
gdbstub.c 227 int colon; local
228 if ( !gdbstub_get_packet_args ( stub, args, sizeof args / sizeof args [ 0 ], &colon ) ||
229 colon >= stub->len || stub->payload [ colon ] != ':' ||
230 ( stub->len - colon - 1 ) % 2 != 0 ) {
234 gdbstub_from_hex_buf ( ( char * ) args [ 0 ], &stub->payload [ colon + 1 ], ( stub->len - colon - 1 ) / 2 );
  /bionic/libc/upstream-openbsd/lib/libc/gen/
fnmatch.c 102 const char *colon; local
114 if ((colon = strchr(pattern, ':')) == NULL || colon[1] != ']') {
118 *ep = colon + 2;
119 len = (size_t)(colon - pattern);
  /external/webrtc/webrtc/base/
httpcommon-inl.h 52 if (const CTYPE* colon = strchrn(val, len, static_cast<CTYPE>(':'))) {
53 host_.assign(val, colon - val);
54 // Note: In every case, we're guaranteed that colon is followed by a null,
56 port_ = static_cast<uint16_t>(::strtoul(colon + 1, NULL, 10));
  /build/make/core/tasks/tools/
package-modules.mk 15 my_built_modules := $(foreach p,$(my_copy_pairs),$(call word-colon,1,$(p)))
16 my_copy_pairs := $(foreach p,$(my_copy_pairs),$(call word-colon,1,$(p)):$(my_staging_dir)/$(call word-colon,2,$(p)))
  /external/curl/docs/cmdline-opts/
config.d 11 separated by whitespace, colon, or the equals sign. Long option names can
13 if so, the colon or equals characters can be used as separators. If the option
14 is specified with one or two dashes, there can be no colon or equals character
  /toolchain/binutils/binutils-2.25/gprof/
sym_ids.c 109 to the user, a spec without a colon is interpreted as:
121 char *colon;
124 colon = strrchr (spec, ':');
126 if (colon)
128 *colon = '\0';
130 if (colon > spec)
138 spec = colon + 1;
150 /* No colon: spec is a filename if it contains a dot. */
120 char *colon; local
  /external/libvncserver/libvncclient/
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/iproute2/ip/
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/
lnstat_util.c 303 const char *colon = strchr(name, ':'); local
307 if (colon) {
308 file = strndup(name, colon-name);
309 field = colon+1;
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/hppa/parse/
labelbug.s 14 ; operands if a label without a colon began a line, and the operands

Completed in 3552 milliseconds

12 3 4 5 6 7 8 91011>>