Searched refs:dir (Results 1 - 25 of 125) sorted by last modified time

12345

/system/security/keystore/
H A DAndroid.mk17 LOCAL_PATH := $(call my-dir)
H A Dkeystore.cpp557 DIR* dir = opendir("."); local
560 if (!dir) {
563 while ((file = readdir(dir)) != NULL) {
566 closedir(dir);
571 DIR* dir = opendir("."); local
573 if (!dir) {
577 while ((file = readdir(dir)) != NULL) {
583 closedir(dir);
981 DIR* dir = opendir("."); local
982 if (!dir) {
[all...]
/system/security/keystore-engine/
H A DAndroid.mk15 LOCAL_PATH := $(call my-dir)
/system/security/softkeymaster/
H A DAndroid.mk15 LOCAL_PATH := $(call my-dir)
/system/vold/
H A DAndroid.mk1 LOCAL_PATH:= $(call my-dir)
H A DCommandListener.cpp223 DIR *dir; local
226 if (!(dir = opendir("/proc"))) {
231 while ((de = readdir(dir))) {
252 closedir(dir);
268 cli->sendMsg(ResponseCode::OperationFailed, "Failed to open asec dir", true);
H A DProcess.cpp89 DIR *dir = opendir(path); local
90 if (!dir)
99 while ((de = readdir(dir))) {
115 closedir(dir);
120 closedir(dir);
181 DIR* dir; local
184 if (!(dir = opendir("/proc"))) {
189 while ((de = readdir(dir))) {
221 closedir(dir);
H A DVolumeManager.cpp614 const char *dir; local
616 if (findAsec(id1, asecFilename1, sizeof(asecFilename1), &dir)) {
621 asprintf(&asecFilename2, "%s/%s.asec", dir, id2);
806 bool VolumeManager::isAsecInDirectory(const char *dir, const char *asecName) const { argument
807 int dirfd = open(dir, O_DIRECTORY);
809 SLOGE("Couldn't open internal ASEC dir (%s)", strerror(errno));
835 const char *dir; local
837 dir = Volume::SEC_ASECDIR_INT;
839 dir = Volume::SEC_ASECDIR_EXT;
846 *directory = dir;
[all...]
H A DVolumeManager.h147 bool isAsecInDirectory(const char *dir, const char *asec) const;
/system/vold/tests/
H A DAndroid.mk2 LOCAL_PATH := $(call my-dir)
/system/bluetooth/bluedroid/
H A DAndroid.mk5 LOCAL_PATH:= $(call my-dir)
/system/bluetooth/brcm_patchram_plus/
H A DAndroid.mk3 LOCAL_PATH:= $(call my-dir)
/system/bluetooth/brfpatch/
H A DAndroid.mk6 LOCAL_PATH:= $(call my-dir)
/system/bluetooth/tools/
H A DAndroid.mk3 LOCAL_PATH:= $(call my-dir)
/system/core/
H A DAndroid.mk16 LOCAL_PATH := $(my-dir)
/system/core/adb/
H A DAndroid.mk6 LOCAL_PATH:= $(call my-dir)
H A Dcommandline.c106 " adb push <local> <remote> - copy file/dir to device\n"
107 " adb pull <remote> [<local>] - copy file/dir from device\n"
827 char dir[PATH_MAX]; local
828 top = find_top_from(getcwd(dir, sizeof(dir)), path_buf);
833 get_my_path(dir, PATH_MAX);
834 top = find_top_from(dir, path_buf);
843 * - A relative path from the CWD to the ANDROID_PRODUCT_OUT dir
845 * - An absolute path to the PRODUCT_OUT dir
849 * ANDROID_PRODUCT_OUT dir
[all...]
H A Dremount_service.c34 static char *find_mount(const char *dir) argument
63 if (res == 4 && (strcmp(dir, mount_dir) == 0))
/system/core/charger/
H A DAndroid.mk5 LOCAL_PATH := $(call my-dir)
/system/core/cpio/
H A DAndroid.mk3 LOCAL_PATH:= $(call my-dir)
/system/core/debuggerd/
H A DAndroid.mk5 LOCAL_PATH:= $(call my-dir)
H A Dgetevent.c139 DIR *dir; local
141 dir = opendir(dirname);
142 if(dir == NULL)
147 while((de = readdir(dir))) {
155 closedir(dir);
/system/core/fastboot/
H A DAndroid.mk15 LOCAL_PATH:= $(call my-dir)
H A Dfastboot.c94 char *dir; local
122 dir = getenv("ANDROID_PRODUCT_OUT");
123 if((dir == 0) || (dir[0] == 0)) {
128 sprintf(path, "%s/%s", dir, fn);
/system/core/fs_mgr/
H A DAndroid.mk3 LOCAL_PATH:= $(call my-dir)

Completed in 2168 milliseconds

12345