HomeSort by: relevance | last modified time | path
    Searched refs:colon (Results 1 - 25 of 250) sorted by relevancy

1 2 3 4 5 6 7 8 910

  /src/usr.bin/make/unit-tests/
dep-double-colon-indep.exp 1 : 'Making 1400 dep-double-colon-1300 from dep-double-colon-1400 oodate dep-double-colon-1400'
2 : 'Making 1500 dep-double-colon-1300 from dep-double-colon-1500 oodate dep-double-colon-1500'
depsrc-usebefore-double-colon.exp 1 double-colon early 1
dep-colon-bug-cross-file.exp 1 make: dep-colon-bug-cross-file.mk:32: warning: duplicate script for target "all" ignored
2 make: dep-colon-bug-cross-file.mk:42: warning: using previous script for "all" defined here
dep-wildcards.exp 1 dep-colon-bug-cross-file.mk
2 dep-colon.mk
3 dep-double-colon-indep.mk
4 dep-double-colon.mk
  /src/external/gpl3/binutils/dist/gprof/
search_list.c 31 const char *beg, *colon; local
34 colon = paths - 1;
37 beg = colon + 1;
38 colon = strchr (beg, PATH_SEP_CHAR);
40 if (colon)
41 len = colon - beg;
59 while (colon);
  /src/external/gpl3/binutils.old/dist/gprof/
search_list.c 31 const char *beg, *colon; local
34 colon = paths - 1;
37 beg = colon + 1;
38 colon = strchr (beg, PATH_SEP_CHAR);
40 if (colon)
41 len = colon - beg;
59 while (colon);
  /src/external/bsd/am-utils/dist/conf/checkmount/
checkmount_bsd44.c 58 char *colon; local
69 if ((colon = strchr(mntp->f_mntfromname, ':'))) {
70 *colon = '\0';
71 if (STREQ(colon + 1, path) &&
checkmount_ultrix.c 61 char *colon; local
63 if (colon = strchr(ment.fd_devname, ':')) {
64 *colon = '\0';
65 if ((STREQ(colon + 1, path) ||
checkmount_default.c 83 char *colon; local
85 if ((colon = strchr(ment->mnt_fsname, ':'))) {
86 *colon = '\0';
87 if ((STREQ(colon + 1, path) ||
checkmount_svr4.c 65 char *colon; local
67 if ((colon = strchr(ment.mnt_fsname, ':'))) {
68 *colon = '\0';
69 if ((STREQ(colon + 1, path) ||
  /src/bin/rcp/
extern.h 42 char *colon(char *);
  /src/usr.bin/audio/common/
decode.c 79 char *s, *colon, *dot; local
90 if ((colon = strchr(s, ':')) != NULL) {
91 *colon++ = '\0';
94 s = colon;
96 if ((colon = strchr(s, ':')) != NULL) {
97 *colon++ = '\0';
101 s = colon;
  /src/external/gpl3/gcc/dist/libcc1/
findcomp.cc 98 std::string::size_type colon = m_str.find(':', last_pos); local
101 if (colon == std::string::npos)
103 m_pos = colon;
104 result = m_str.substr(last_pos, colon);
108 m_pos = colon + 1;
109 result = m_str.substr(last_pos, colon - last_pos);
  /src/external/gpl3/gcc.old/dist/libcc1/
findcomp.cc 98 std::string::size_type colon = m_str.find(':', last_pos); local
101 if (colon == std::string::npos)
103 m_pos = colon;
104 result = m_str.substr(last_pos, colon);
108 m_pos = colon + 1;
109 result = m_str.substr(last_pos, colon - last_pos);
  /src/crypto/external/apache2/openssl/dist/test/
bio_prefix_text.c 144 char *colon; local
189 colon = strchr(arg, ':');
191 if (colon != NULL) {
199 colon++;
201 colon = arg;
203 indent = strtoul(colon, &endptr, 10);
227 colon = strchr(arg, ':');
229 if (colon != NULL) {
237 colon++;
239 colon = arg
    [all...]
  /src/crypto/external/bsd/openssl/dist/test/
bio_prefix_text.c 142 char *colon; local
188 colon = strchr(arg, ':');
190 if (colon != NULL) {
198 colon++;
200 colon = arg;
202 indent = strtoul(colon, &endptr, 10);
226 colon = strchr(arg, ':');
228 if (colon != NULL) {
236 colon++;
238 colon = arg
    [all...]
  /src/tests/fs/hfs/
Makefile 10 FILES= colon.hfs.bz2.uue
  /src/external/ibm-public/postfix/dist/src/nbdb_reindexd/
nbdb_sniffer.c 146 TOK822 *colon; local
169 retval = !((colon = tok822_find_type(tok_list, ':')) == 0
170 || colon->prev == 0 || colon->next == 0
171 || tok822_rfind_type(colon, ','));
  /src/external/bsd/am-utils/dist/amd/
restart.c 148 char *colon = strchr(me->mnt_fsname, ':'); local
149 if (colon && strstr(colon, "(pid"))
202 char *colon; local
216 colon = strchr(me->mnt_fsname, ':');
217 if (!colon || !strstr(colon, "(pid"))
225 if (sscanf(colon, "%*[^(](pid%ld%*[,)]", &pid) != 1) {
240 if (sscanf(colon, "%*[^,],port%hu)", &port) != 1) {
  /src/external/gpl2/gettext/dist/gettext-tools/src/
x-librep.c 88 const char *colon; local
97 colon = strchr (name, ':');
98 if (colon == NULL || colon >= end)
  /src/external/gpl3/binutils/dist/bfd/
cpu-aarch64.c 92 const char * colon; local
93 if ((colon = strchr (string, ':')) != NULL)
95 if (strncasecmp (string, "aarch64", colon - string) != 0)
97 string = colon + 1;
  /src/external/gpl3/binutils.old/dist/bfd/
cpu-aarch64.c 92 const char * colon; local
93 if ((colon = strchr (string, ':')) != NULL)
95 if (strncasecmp (string, "aarch64", colon - string) != 0)
97 string = colon + 1;
  /src/external/gpl3/gdb.old/dist/bfd/
cpu-aarch64.c 92 const char * colon; local
93 if ((colon = strchr (string, ':')) != NULL)
95 if (strncasecmp (string, "aarch64", colon - string) != 0)
97 string = colon + 1;
  /src/external/gpl3/gdb/dist/bfd/
cpu-aarch64.c 92 const char * colon; local
93 if ((colon = strchr (string, ':')) != NULL)
95 if (strncasecmp (string, "aarch64", colon - string) != 0)
97 string = colon + 1;
  /src/external/ibm-public/postfix/dist/src/global/
quote_822_local.c 160 const char *colon; local
168 if (mbox[0] == '@' && (colon = strchr(mbox, ':')) != 0)
169 start = colon + 1;
191 const char *colon; local
198 if (mbox[0] == '@' && (colon = strchr(mbox, ':')) != 0) {
199 start = colon + 1;

Completed in 27 milliseconds

1 2 3 4 5 6 7 8 910