Home
last modified time | relevance | path

Searched refs:fileName (Results 1 – 9 of 9) sorted by relevance

/system/core/toolbox/
Dmv.c43 const char *fileName = strrchr(source, '/'); in mv_main() local
47 strcat(fullDest, fileName ? fileName + 1 : source); in mv_main()
/system/vold/
DVolumeManager.h116 int mountObb(const char *fileName, const char *key, int ownerUid);
117 int unmountObb(const char *fileName, bool force);
120 Volume* getVolumeForFile(const char *fileName);
124 const char *fileName, const char *mountPoint, bool force);
DVolumeManager.cpp729 int VolumeManager::unmountObb(const char *fileName, bool force) { in unmountObb() argument
733 if (!asecHash(fileName, idHash, sizeof(idHash))) { in unmountObb()
734 SLOGE("Hash of '%s' failed (%s)", fileName, strerror(errno)); in unmountObb()
740 SLOGE("OBB unmount failed for %s: couldn't construct mountpoint", fileName); in unmountObb()
744 return unmountLoopImage(fileName, idHash, fileName, mountPoint, force); in unmountObb()
748 const char *fileName, const char *mountPoint, bool force) { in unmountLoopImage() argument
811 SLOGW("Failed to find loop device for {%s} (%s)", fileName, strerror(errno)); in unmountLoopImage()
1052 Volume* VolumeManager::getVolumeForFile(const char *fileName) { in getVolumeForFile() argument
1057 if (!strncmp(fileName, mountPoint, strlen(mountPoint))) { in getVolumeForFile()
/system/core/liblog/
Devent_tag_map.c64 EventTagMap* android_openEventTagMap(const char* fileName) in android_openEventTagMap() argument
74 fd = open(fileName, O_RDONLY); in android_openEventTagMap()
77 OUT_TAG, fileName, strerror(errno)); in android_openEventTagMap()
84 fprintf(stderr, "%s: unable to seek map '%s'\n", OUT_TAG, fileName); in android_openEventTagMap()
92 OUT_TAG, fileName, strerror(errno)); in android_openEventTagMap()
/system/core/libzipfile/
Dzipfile.c48 if (0 == memcmp(entryName, entry->fileName, entry->fileNameLength)) { in lookup_zipentry()
68 memcpy(s, e->fileName, l); in get_zipentry_name()
141 fwrite(entry->fileName, entry->fileNameLength, 1, to); in dump_zipfile()
Dprivate.h12 const unsigned char* fileName; member
Dcentraldir.c121 entry->fileName = p; in read_central_directory_entry()
123 entry->fileName = NULL; in read_central_directory_entry()
/system/core/include/cutils/
Devent_tag_map.h34 EventTagMap* android_openEventTagMap(const char* fileName);
/system/core/libcutils/
Dproperties.c93 static int connectToServer(const char* fileName) in connectToServer() argument
107 strcpy(addr.sun_path, fileName); // max 108 bytes in connectToServer()