Searched refs:colon (Results 1 - 25 of 27) sorted by relevance

12

/haiku-fatelf/src/system/libroot/posix/glibc/stdio-common/
H A Dperror.c26 /** Print a line on stderr consisting of the text in \a s, a colon,
29 * If \a s is NULL or "", the colon and space are omitted.
35 const char *colon; local
42 s = colon = "";
44 colon = ": ";
49 fprintf(stderr, "%s%s%s\n", s, colon, buffer);
H A Dpsignal.c37 /* Print out on stderr a line consisting of the test in S, a colon, a space,
39 If S is NULL or "", the colon and space are omitted. */
43 const char *colon, *desc; local
46 s = colon = "";
48 colon = ": ";
54 (void) __fwprintf (stderr, L"%s%s%s\n", s, colon, _(desc));
57 (void) fprintf (stderr, "%s%s%s\n", s, colon, _(desc));
63 (void) __asprintf (&buf, _("%s%sUnknown signal %d\n"), s, colon, sig);
/haiku-fatelf/src/bin/network/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...]
/haiku-fatelf/src/bin/network/mount_nfs/
H A Dmount_nfs.cpp61 char *colon=strchr(argv[1],':'); local
63 if (colon==NULL)
69 int serverLength=colon-argv[1];
91 params._export=colon+1;
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/beserved/mounthost/
H A Dmounthost.cpp54 char hostname[256], server[256], share[256], folder[B_PATH_NAME_LENGTH], password[MAX_NAME_LENGTH + 1], *colon; local
88 colon = strchr(server, ':');
89 if (colon == NULL)
95 *colon = 0;
96 strcpy(share, colon + 1);
/haiku-fatelf/src/bin/coreutils/lib/
H A Duserspec.c250 char const *colon = strchr (spec, ':'); local
252 parse_with_separator (spec, colon, uid, gid, username, groupname);
254 if (!colon && error_msg)
256 /* If there's no colon but there is a dot, and if looking up the
H A Dstrftime.c690 When the ordinal i'th bit is set, insert a colon
/haiku-fatelf/src/tools/opd_to_package_info/
H A Dopd_to_package_info.cpp303 char* colon = strchr(line, ':'); local
304 if (colon == NULL) {
309 fieldName.SetTo(line, colon - line);
316 fieldValue = colon + 1;
/haiku-fatelf/src/bin/network/wget/src/
H A Dprogress.c98 char *colon = strchr (name, ':'); local
99 size_t namelen = colon ? (size_t) (colon - name) : strlen (name);
114 const char *colon; local
119 colon = strchr (name, ':');
120 namelen = colon ? (size_t) (colon - name) : strlen (name);
128 if (colon)
129 /* We call pi->set_params even if colon is NULL because we
132 ++colon;
[all...]
H A Durl.c504 char *colon;
510 colon = memchr (beg, ':', end - beg);
511 if (colon == beg)
514 if (colon)
516 *passwd = strdupdelim (colon + 1, end);
517 userend = colon;
501 char *colon; local
H A Dcookies.c1110 const char *colon = memchr (domain_b, ':', domain_e - domain_b);
1111 if (!colon)
1113 for (p = colon + 1; p < domain_e && c_isdigit (*p); p++)
1118 *domain_e_ptr = colon;
1103 const char *colon = memchr (domain_b, ':', domain_e - domain_b); local
/haiku-fatelf/src/system/boot/loader/net/
H A DiSCSITarget.cpp94 char* colon = strrchr(targetAddress, ':'); local
95 if (colon != NULL) {
96 // colon could be part of an IPv6 address, e.g. [::1.2.3.4]
98 if (bracket == NULL || bracket < colon) {
99 targetPort = strtol(colon + 1, NULL, 10);
100 colon[0] = '\0';
/haiku-fatelf/src/add-ons/input_server/filters/shortcut_catcher/
H A DCommandActuators.cpp1548 const char* colon = strchr(arg, ':'); local
1549 if (colon > equals)
1550 colon = NULL;// colons after the equals sign don't count
1552 if (colon) {
1553 const char* typeStr = colon + 1;
1575 // remove the colon and stuff
1576 argStr = argStr.Truncate(colon - arg);
/haiku-fatelf/src/apps/aboutsystem/
H A DAboutSystem.cpp1824 char* colon = strchr(line, ':'); local
1825 if (colon == NULL) {
1830 fieldName.SetTo(line, colon - line);
1831 fieldName = trim_string(line, colon - line);
1837 fieldValue = colon + 1;
/haiku-fatelf/src/bin/bash/builtins/
H A DMakefile109 $(srcdir)/builtin.def $(srcdir)/cd.def $(srcdir)/colon.def \
127 alias.o bind.o break.o builtin.o cd.o colon.o command.o \
222 colon.o: colon.def
/haiku-fatelf/src/bin/gdb/bfd/
H A Decofflink.c2388 /* We need to remove the stuff after the colon in the function
2413 char *colon;
2416 colon = strchr (buffer, ':');
2417 if (colon != NULL)
2418 *colon = '\0';
2409 char *colon; local
H A Dpdp11.c2755 char *colon;
2769 colon = strchr (buf, ':');
2770 if (colon != NULL)
2771 *colon = '\0';
2748 char *colon; variable
H A Daoutx.h2951 char *colon;
2964 colon = strchr (buf, ':');
2965 if (colon != NULL)
2966 *colon = '\0';
/haiku-fatelf/src/apps/poorman/libhttpd/
H A Dlibhttpd.c1006 char* colon; local
1047 /* No colon? Bogus auth info. */
1053 colon = strchr( authpass, ':' );
1054 if ( colon != (char*) 0 )
1055 *colon = '\0';
/haiku-fatelf/src/bin/gawk/
H A Dawkgram.y631 : LEX_CASE case_value colon opt_nls statements
633 | LEX_DEFAULT colon opt_nls statements
974 colon
/haiku-fatelf/src/bin/findutils/gnulib/lib/
H A Dstrftime.c686 When the ordinal i'th bit is set, insert a colon
/haiku-fatelf/src/bin/bash/
H A DMakefile400 $(DEFSRC)/builtin.def $(DEFSRC)/cd.def $(DEFSRC)/colon.def \
420 $(DEFDIR)/builtin.o $(DEFDIR)/cd.o $(DEFDIR)/colon.o \
1274 builtins/colon.o: $(DEFSRC)/colon.def
H A Dbashline.c3562 builtin_error (_("%s: missing colon separator"), line);
H A DAUTHORS107 builtins/colon.def Brian Fox, Chet Ramey
H A DMANIFEST157 builtins/colon.def f

Completed in 517 milliseconds

12