Searched refs:fileName (Results 1 – 9 of 9) sorted by relevance
/system/core/toolbox/ |
D | mv.c | 43 const char *fileName = strrchr(source, '/'); in mv_main() local 47 strcat(fullDest, fileName ? fileName + 1 : source); in mv_main()
|
/system/vold/ |
D | VolumeManager.h | 116 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);
|
D | VolumeManager.cpp | 729 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/ |
D | event_tag_map.c | 64 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/ |
D | zipfile.c | 48 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()
|
D | private.h | 12 const unsigned char* fileName; member
|
D | centraldir.c | 121 entry->fileName = p; in read_central_directory_entry() 123 entry->fileName = NULL; in read_central_directory_entry()
|
/system/core/include/cutils/ |
D | event_tag_map.h | 34 EventTagMap* android_openEventTagMap(const char* fileName);
|
/system/core/libcutils/ |
D | properties.c | 93 static int connectToServer(const char* fileName) in connectToServer() argument 107 strcpy(addr.sun_path, fileName); // max 108 bytes in connectToServer()
|