Searched defs:directory (Results 1 - 8 of 8) sorted by relevance

/system/extras/ext4_utils/
H A Dmake_ext4fs_main.c60 fprintf(stderr, " <filename> [[<directory>] <target_out_directory>]\n");
67 const char *directory = NULL; local
218 directory = argv[optind++];
239 exitcode = make_ext4fs_internal(fd, directory, target_out_directory, mountpoint, fs_config_func, gzip,
H A Dext4_crypt.cpp65 // Skip lost+found directory
74 int do_policy_set(const char *directory, const char *policy, int policy_length) argument
84 if (!is_path_valid(directory)) {
88 stat(directory, &st);
90 KLOG_ERROR(TAG, "Can only set policy on a directory (%s)\n", directory);
94 if (!is_dir_empty(directory)) {
95 KLOG_ERROR(TAG, "Can only set policy on an empty directory (%s)\n",
96 directory);
100 int fd = open(directory, O_DIRECTOR
[all...]
H A Dmake_ext4fs.c119 /* Read a local directory and create the same tree in the generated filesystem.
120 Calls itself recursively with each directory in the given directory.
122 directory on disk that should be copied, or NULL if this is a directory
124 dir_path is an absolute path, with trailing slash, to the same directory
160 /* root directory, check if lost+found already exists */
250 /* insert a lost+found directory at the beginning of the dentries */
500 char *directory = NULL; local
513 directory
[all...]
/system/keymaster/
H A DMakefile10 # This Makefile expects to find BoringSSL in a directory adjacent to $ANDROID_BUILD_TOP.
138 genhtml coverage.info --output-directory coverage
141 lcov --capture --directory=. --output-file coverage.info
146 lcov --capture --directory=. --output-file coverage.info
147 genhtml coverage.info --output-directory coverage
/system/security/keystore/tests/
H A DMakefile71 genhtml coverage.info --output-directory coverage
74 lcov --capture --directory=. --directory=.. -b . --output-file coverage.info
79 lcov --capture --directory=. --output-file coverage.info
80 genhtml coverage.info --output-directory coverage
/system/vold/
H A DCommandListener.cpp348 void CommandListener::AsecCmd::listAsecsInDirectory(SocketClient *cli, const char *directory) { argument
349 DIR *d = opendir(directory);
/system/extras/tests/sdcard/
H A Dsysutil.cpp408 void resetDirectory(const char *directory) argument
410 DIR *dir = opendir(directory);
425 strcpy(name_buffer, directory);
432 mkdir(directory, S_IRWXU);
/system/core/logcat/
H A Dlogcat.cpp391 std::string directory; local
394 directory = ".";
398 directory = outputFileName;
404 std::unique_ptr<DIR, int(*)(DIR*)>dir(opendir(directory.c_str()), closedir);
415 std::string file_name = directory;

Completed in 143 milliseconds