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

/haiku/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/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/src/add-ons/kernel/file_systems/packagefs/resolvables/
H A DDependency.cpp43 // that so that a path containing the symlink can be used in colon-separated
52 while (char* colon = strchr(remainder, ':')) {
53 *colon = '~';
54 remainder = colon + 1;
/haiku/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/src/system/libroot/os/
H A Dfind_paths.cpp426 char* colon = buffer - 1; local
427 while ((colon = strchr(colon + 1, ':')) != NULL)
428 *colon = '~';
/haiku/src/add-ons/input_server/filters/shortcut_catcher/
H A DCommandActuators.cpp1523 const char* colon = strchr(arg, ':'); local
1524 if (colon > equals)
1525 colon = NULL;// colons after the equals sign don't count
1527 if (colon) {
1528 const char* typeStr = colon + 1;
1550 // remove the colon and stuff
1551 argString = argString.Truncate(colon - arg);
/haiku/src/apps/aboutsystem/
H A DAboutSystem.cpp2171 char* colon = strchr(line, ':'); local
2172 if (colon == NULL) {
2177 fieldName.SetTo(line, colon - line);
2178 fieldName = trim_string(line, colon - line);
2184 fieldValue = colon + 1;
/haiku/src/apps/poorman/libhttpd/
H A Dlibhttpd.c1036 char* colon; local
1077 /* No colon? Bogus auth info. */
1083 colon = strchr( authpass, ':' );
1084 if ( colon != (char*) 0 )
1085 *colon = '\0';

Completed in 132 milliseconds