Home
last modified time | relevance | path

Searched refs:tpath (Results 1 – 7 of 7) sorted by relevance

/NextBSD/crypto/heimdal/lib/krb5/
HDexpand_path.c55 TCHAR tpath[MAX_PATH]; in _expand_temp_folder() local
58 if (!GetTempPath(sizeof(tpath)/sizeof(tpath[0]), tpath)) { in _expand_temp_folder()
66 len = strlen(tpath); in _expand_temp_folder()
68 if (len > 0 && tpath[len - 1] == '\\') in _expand_temp_folder()
69 tpath[len - 1] = '\0'; in _expand_temp_folder()
71 *ret = strdup(tpath); in _expand_temp_folder()
/NextBSD/usr.bin/fortune/fortune/
HDfortune.c462 char *tpath, *offensive; in add_file() local
468 tpath = NULL; in add_file()
472 tpath = do_malloc((unsigned int)(strlen(dir) + strlen(file) + 2)); in add_file()
473 strcat(strcat(strcpy(tpath, dir), "/"), file); in add_file()
474 path = tpath; in add_file()
479 free(tpath); in add_file()
488 free(tpath); in add_file()
489 path = tpath = offensive; in add_file()
510 free(tpath); in add_file()
511 path = tpath = offensive; in add_file()
[all …]
/NextBSD/usr.sbin/jail/
HDcommand.c916 char *tpath, *p; in check_path() local
934 tpath = alloca(strlen(path) + 1); in check_path()
935 strcpy(tpath, path); in check_path()
936 for (p = tpath + jplen; p != NULL; ) { in check_path()
940 if (lstat(tpath, &st) < 0) { in check_path()
943 jail_warnx(j, "%s: %s: %s", pname, tpath, in check_path()
949 pname, tpath); in check_path()
/NextBSD/crypto/openssl/apps/
HDocsp.c136 char *thost = NULL, *tport = NULL, *tpath = NULL; in MAIN() local
210 if (tpath) in MAIN()
211 OPENSSL_free(tpath); in MAIN()
212 thost = tport = tpath = NULL; in MAIN()
221 tpath = path; in MAIN()
893 if (tpath) in MAIN()
894 OPENSSL_free(tpath); in MAIN()
/NextBSD/crypto/heimdal/appl/telnet/telnetd/
HDsys_term.c1886 cleantmpdir(jid, tpath, user) in cleantmpdir() argument
1888 char *tpath;
1894 tpath);
1897 execl(CLEANTMPCMD, CLEANTMPCMD, user, tpath, NULL);
1899 tpath, CLEANTMPCMD);
/NextBSD/cddl/contrib/opensolaris/lib/libzfs/common/
HDlibzfs_diff.c56 do_name_cmp(const char *fpath, const char *tpath) in do_name_cmp() argument
60 tname = strrchr(tpath, '/') + 1; in do_name_cmp()
/NextBSD/sys/ofed/drivers/infiniband/ulp/ipoib/
HDipoib_main.c345 struct ipoib_path *tpath; in __path_add() local
350 tpath = rb_entry(pn, struct ipoib_path, rb_node); in __path_add()
352 ret = memcmp(path->pathrec.dgid.raw, tpath->pathrec.dgid.raw, in __path_add()