Searched defs:full_path (Results 1 - 6 of 6) sorted by relevance
/osnet-11/usr/src/lib/libbsm/common/ |
H A D | audit_at.c | 100 char full_path[PATH_MAX]; local 109 (void) strcat(strcat(strcpy(full_path, path), "/"), 111 name = full_path;
|
H A D | audit_cron.c | 293 char full_path[PATH_MAX]; local 311 (void) strcat(strcat(strcpy(full_path, path), "/"), 313 fname = full_path; 446 char full_path[PATH_MAX]; local 457 (void) strcat(strcat(strcpy(full_path, path), "/"), name); 458 name = full_path; 508 char full_path[PATH_MAX]; local 517 (void) strcat(strcat(strcpy(full_path, path), "/"), name); 518 name = full_path;
|
/osnet-11/usr/src/cmd/hal/hald/ |
H A D | device_info.c | 1507 gchar *full_path; local 1512 full_path = g_strdup_printf ("%s/%s", dir, filename); 1513 /*HAL_INFO (("Full path = %s", full_path));*/ 1518 if (g_file_test (full_path, (G_FILE_TEST_IS_REGULAR))) { 1534 } else if (g_file_test (full_path, (G_FILE_TEST_IS_DIR)) 1562 g_free (full_path);
|
/osnet-11/usr/src/lib/libdevinfo/ |
H A D | devfsinfo.c | 1490 char *full_path; local 1520 if ((full_path = (char *)malloc(len)) == NULL) { 1531 (void) snprintf(full_path, len, "%s%s", default_root, 1534 (void) snprintf(full_path, len, "%s%s", default_root, dev_dir); 1553 free(full_path); 1559 if (nftw(full_path, check_logical_dev, FT_DEPTH, walk_flags) == -1) { 1561 free(full_path); 1616 free(full_path);
|
H A D | devinfo.c | 1211 char *full_path, *name, *devfspath; local 1227 full_path = (char *)calloc(1, full_path_len); 1228 if (full_path != NULL) 1229 (void) snprintf(full_path, full_path_len, "%s:%s", 1233 return (full_path); 1247 char *full_path; local 1272 full_path = (char *)calloc(1, full_path_len); 1274 if (full_path != NULL) 1275 (void) snprintf(full_path, full_path_len, "%s/%s@%s", 1278 return (full_path); [all...] |
/osnet-11/usr/src/lib/lvm/libmeta/common/ |
H A D | meta_name.c | 440 char *full_path; local 464 full_path = Zalloc(pathlen); 465 (void) snprintf(full_path, pathlen, "/dev/md/rdsk/%s", fname); 469 full_path = Zalloc(pathlen); 470 (void) snprintf(full_path, pathlen, "/dev/md/%s/rdsk/%s", 474 if ((raw_name = rawname(full_path)) != NULL) { 483 Free(full_path);
|
Completed in 35 milliseconds