/titanic_41/usr/src/lib/libresolv2/common/dst/ |
H A D | support.c | 235 if (strrchr(name, '\\')) in dst_s_filename_length() 237 if (strrchr(name, '/')) in dst_s_filename_length() 239 if (strrchr(name, ':')) in dst_s_filename_length() 243 if (strrchr(suffix, '\\')) in dst_s_filename_length() 245 if (strrchr(suffix, '/')) in dst_s_filename_length() 247 if (strrchr(suffix, ':')) in dst_s_filename_length() 282 if (strrchr(filename, '/')) in dst_s_build_filename() 284 if (strrchr(filename, '\\')) in dst_s_build_filename() 286 if (strrchr(filename, ':')) in dst_s_build_filename()
|
/titanic_41/usr/src/lib/libast/common/comp/ |
H A D | strrchr.c | 28 NoN(strrchr) 32 #undef strrchr 41 strrchr(const char* s, int c) 49 strrchr(register const char* s, register int c)
|
/titanic_41/usr/src/cmd/dtrace/test/tst/common/funcs/ |
H A D | tst.strchr.d | 38 printf("strrchr(\"%s\", '%c') = \"%s\"\n", str, c, strrchr(str, c)); 42 printf("strrchr(\"%s\", '%c') = \"%s\"\n", str, c, strrchr(str, c)); 45 strrchr(strchr(str, c), c)); 63 /strrchr(str, 'a') != NULL/
|
H A D | tst.strchr.d.out | 2 strrchr("fooeyfooeyfoo", 'f') = "foo" 4 strrchr("fooeyfooeyfoo", 'y') = "yfoo" 5 strrchr("yfooeyfoo", 'y') = "yfoo"
|
/titanic_41/usr/src/lib/libbc/libc/sys/sys5/ |
H A D | execve.c | 41 strcat(path, strrchr(file, '/')); in execve() 47 strcat(path, strrchr(file, '/')); in execve() 53 strcat(path, strrchr(file, '/')); in execve() 58 strcat(path, strrchr(file, '/')); in execve()
|
/titanic_41/usr/src/lib/libgen/common/ |
H A D | rmdirp.c | 60 slash = strrchr(d, '/'); in rmdirp() 81 if (++slash == strrchr(d, '\0')) { in rmdirp() 83 slash = strrchr(d, '/'); in rmdirp() 128 slash = strrchr(d, '/'); in rmdirp()
|
H A D | mkdirp.c | 73 endptr = strrchr(str, '\0'); in mkdirp() 74 slash = strrchr(str, '/'); in mkdirp() 91 slash = strrchr(str, '/'); in mkdirp()
|
/titanic_41/usr/src/lib/libbc/libc/sys/4.2/ |
H A D | execve.c | 43 strcat(path, strrchr(file, '/')); in execve() 50 strcat(path, strrchr(file, '/')); in execve() 56 strcat(path, strrchr(file, '/')); in execve() 61 strcat(path, strrchr(file, '/')); in execve()
|
/titanic_41/usr/src/head/iso/ |
H A D | string_iso.h | 126 extern const char *strrchr(const char *, int); 130 inline char *strrchr(char *__s, int __c) { in strrchr() function 131 return (char *)strrchr((const char *)__s, __c); in strrchr() 148 extern char *strrchr(const char *, int);
|
/titanic_41/usr/src/lib/libcmd/common/ |
H A D | cmd.h | 78 if (cp = strrchr(argv[0], '/')) in cmdinit() 82 if (pp = strrchr(cp, '_')) in cmdinit() 105 if (s = strrchr(argv[0], '/')) in main() 109 if ((t = strrchr(s, '_')) && *++t) in main()
|
/titanic_41/usr/src/cmd/pools/common/ |
H A D | utils.c | 78 if (strrchr(format, '\n') == NULL) in warn() 96 if (strrchr(format, '\n') == NULL) in die() 105 const char *p = strrchr(arg0, '/'); in getpname()
|
/titanic_41/usr/src/lib/libcmd/amd64/include/ast/ |
H A D | cmd.h | 88 if (cp = strrchr(argv[0], '/')) 92 if (pp = strrchr(cp, '_')) 114 if (s = strrchr(argv[0], '/')) 118 if ((t = strrchr(s, '_')) && *++t)
|
/titanic_41/usr/src/lib/libcmd/sparc/include/ast/ |
H A D | cmd.h | 88 if (cp = strrchr(argv[0], '/')) 92 if (pp = strrchr(cp, '_')) 114 if (s = strrchr(argv[0], '/')) 118 if ((t = strrchr(s, '_')) && *++t)
|
/titanic_41/usr/src/lib/libcmd/sparcv9/include/ast/ |
H A D | cmd.h | 88 if (cp = strrchr(argv[0], '/')) 92 if (pp = strrchr(cp, '_')) 114 if (s = strrchr(argv[0], '/')) 118 if ((t = strrchr(s, '_')) && *++t)
|
/titanic_41/usr/src/lib/libcmd/i386/include/ast/ |
H A D | cmd.h | 88 if (cp = strrchr(argv[0], '/')) 92 if (pp = strrchr(cp, '_')) 114 if (s = strrchr(argv[0], '/')) 118 if ((t = strrchr(s, '_')) && *++t)
|
/titanic_41/usr/src/lib/krb5/ss/ |
H A D | mk_cmds.c | 54 p = strrchr(path, '/'); 59 p = strrchr(p, '.'); 68 p = strrchr(path, '.');
|
/titanic_41/usr/src/cmd/mailx/ |
H A D | optim.c | 112 *strrchr(from, '!') = 0; in netmap() 180 char *r = strrchr(addr, '!'); in lasthost() 205 np = strrchr(tname, '!'); in unuucp() 209 hp = strrchr(tname, '!'); in unuucp() 305 cp = strrchr(name, '@'); in arpafix() 307 cp = strrchr(name, '%'); in arpafix() 332 cp = strrchr(newname, '@'); in arpafix() 334 cp = strrchr(newname, '%'); in arpafix() 354 cp = strrchr(from, '@'); in makeremote() 356 cp = strrchr(from, '%'); in makeremote() [all …]
|
/titanic_41/usr/src/tools/findunref/ |
H A D | findunref.c | 114 progname = strrchr(argv[0], '/'); in main() 213 newline = strrchr(path, '\n'); in hg_manifest() 255 newline = strrchr(path, '\n'); in git_manifest() 314 slash = strrchr(basepath, '/'); in chdir_scmdata() 417 newline = strrchr(line, '\n'); in make_exset() 577 if (strrchr(format, '\n') == NULL) in warn() 597 if (strrchr(format, '\n') == NULL) in die()
|
/titanic_41/usr/src/lib/libnsl/common/ |
H A D | daemon_utils.c | 104 p = strrchr(buf, ':'); in open_daemon_lock() 109 p = strrchr(buf, '/'); in open_daemon_lock() 115 p = strrchr(buf, '/'); in open_daemon_lock()
|
/titanic_41/usr/src/cmd/krb5/kdestroy/ |
H A D | kdestroy.c | 64 #define GET_PROGNAME(x) (strrchr((x), '/') ? strrchr((x), '/')+1 : (x)) 66 #define GET_PROGNAME(x) max(max(strrchr((x), '/'), strrchr((x), '\\')) + 1,(x))
|
/titanic_41/usr/src/lib/libc/i386/gen/ |
H A D | strrchr.s | 29 / strrchr(sp, c) 34 / Fast assembly language version of the following C-program strrchr
|
/titanic_41/usr/src/lib/libc/amd64/gen/ |
H A D | strrchr.s | 29 / strrchr(sp, c) 34 / Fast assembly language version of the following C-program strrchr
|
/titanic_41/usr/src/cmd/lp/cmd/lpsched/ |
H A D | files.c | 174 if (q = strrchr(p, '-')) { in rmfiles() 379 cp = strrchr(file, '-') + 1; in _alloc_files() 404 cp = strrchr(file, '-') + 1; in _alloc_files() 424 if ((cp = strrchr(base, '-'))) in _alloc_files() 439 start = strrchr(req_file, '/'); in extractReqno() 440 end = strrchr(req_file, '-'); in extractReqno()
|
/titanic_41/usr/src/cmd/dtrace/test/tst/common/safety/ |
H A D | tst.strchr.d | 47 trace(strrchr((char *)(rand() ^ timestamp), rand())); 59 trace(strrchr((char *)arg0, '!'));
|
/titanic_41/usr/src/cmd/hal/utils/ |
H A D | fsutils.c | 42 if ((p = strrchr(path, ':')) == NULL) { in dos_to_dev() 65 part = strrchr(devlink, 'p'); in get_slice_name() 66 slice = strrchr(devlink, 's'); in get_slice_name() 67 disk = strrchr(devlink, 'd'); in get_slice_name()
|