Searched refs:AAssetDir (Results 1 - 2 of 2) sorted by relevance

/frameworks/native/include/android/
H A Dasset_manager.h50 * {@link AAssetDir} objects to peruse a single directory.
56 struct AAssetDir;
58 * {@link AAssetDir} provides access to a chunk of the asset hierarchy as if
64 typedef struct AAssetDir AAssetDir; typedef in typeref:struct:AAssetDir
90 * be inspected with the AAssetDir functions. To open the top-level directory,
95 AAssetDir* AAssetManager_openDir(AAssetManager* mgr, const char* dirName);
111 * guaranteed to remain valid if any other calls are made on this AAssetDir
114 const char* AAssetDir_getNextFileName(AAssetDir* assetDir);
119 void AAssetDir_rewind(AAssetDir* assetDi
[all...]
/frameworks/base/native/android/
H A Dasset_manager.cpp36 // but AAssetDir and AAsset are actual wrappers for isolation.
39 struct AAssetDir { struct
44 explicit AAssetDir(std::unique_ptr<AssetDir> dir) : function in struct:AAssetDir
94 AAssetDir* AAssetManager_openDir(AAssetManager* amgr, const char* dirName)
97 return new AAssetDir(locked_mgr->OpenDir(dirName));
104 const char* AAssetDir_getNextFileName(AAssetDir* assetDir)
129 void AAssetDir_rewind(AAssetDir* assetDir)
134 const char* AAssetDir_getFileName(AAssetDir* assetDir, int index)
140 void AAssetDir_close(AAssetDir* assetDir)

Completed in 26 milliseconds