Searched defs:filepath (Results 1 - 8 of 8) sorted by relevance
| /osnet-11/usr/src/lib/libcryptoutil/common/ |
| H A D | util.c | 40 * This function returns a fullpath based on the "dir" and "filepath" input 42 * - If the filepath specified does not start with a "/" and the directory 44 * - If only dir or filepath is given, this function returns a copy of the 46 * - If the filepath is fully qualified already and the "dir" is also 50 get_fullpath(char *dir, char *filepath) argument 56 if (filepath != NULL) 57 pathlen = strlen(filepath); 63 if (filepath[0] != '/') { 68 dir, filepath); 73 fullpath = (char *)strdup(filepath); [all...] |
| /osnet-11/usr/src/grub/grub2/grub-core/kern/ieee1275/ |
| H A D | init.c | 67 grub_translate_ieee1275_path (char *filepath) argument 71 backslash = grub_strchr (filepath, '\\'); 75 backslash = grub_strchr (filepath, '\\');
|
| H A D | openfw.c | 371 char *filepath = comma + 1; local 373 /* Make sure filepath has leading backslash. */ 374 if (filepath[0] != '\\') 375 ret = grub_xasprintf ("\\%s", filepath); 377 ret = grub_strdup (filepath);
|
| /osnet-11/usr/src/lib/pam_modules/krb5/ |
| H A D | krb5_setcred.c | 478 char *filepath = NULL; local 528 * with the literal string "FILE:". Set filepath 532 filepath = strchr(kmd->env, ':'); 537 if (filepath[1] == '\0') { 545 if (chown(filepath+1, uuid, ugid)) { 550 username, filepath);
|
| /osnet-11/usr/src/lib/gss_mechs/mech_krb5/profile/ |
| H A D | prof_init.c | 107 profile_init_path(const_profile_filespec_list_t filepath, argument 118 for(s = filepath, n_entries = 1; *s; s++) { 129 for(s = filepath, i=0; (t = strchr(s, ':')) || (t=s+strlen(s)); s=t+1, i++) {
|
| /osnet-11/usr/src/tools/onbld/Scm/ |
| H A D | WorkSpace.py | 816 def filepath(self, path): member in class:WorkSpace
|
| /osnet-11/usr/src/lib/gss_mechs/mech_krb5/support/ |
| H A D | plugins.c | 174 krb5int_open_plugin (const char *filepath, struct plugin_file_handle **h, struct errinfo *ep) argument 182 if (stat (filepath, &statbuf) < 0) { 183 Tprintf ("stat(%s): %s\n", filepath, strerror (errno)); 219 filepath, 253 filepath = executablepath; 272 handle = dlopen(filepath, PLUGIN_DLOPEN_FLAGS); 277 Tprintf ("dlopen(%s): %s\n", filepath, e); 297 handle = LoadLibrary(filepath); 299 Tprintf ("Unable to load dll: %s\n", filepath); 595 char *filepath local 618 char *filepath = NULL; local [all...] |
| /osnet-11/usr/src/lib/pkcs11/pkcs11_kms/common/ |
| H A D | kmsKeystoreUtil.c | 383 char filepath[BUFSIZ]; local 389 (void) snprintf(filepath, sizeof (filepath), 392 if ((rv = kms_read_config_data(filepath, &kmscfg))) 399 (void) snprintf(filepath, sizeof (filepath), 402 if (stat(filepath, &statp))
|
Completed in 64 milliseconds