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

/frameworks/native/include/android/
H A Dasset_manager.h36 * creating {@link AAsset} objects.
59 struct AAsset;
61 * {@link AAsset} provides access to a read-only asset.
63 * {@link AAsset} objects are NOT thread-safe, and should not be shared across
66 typedef struct AAsset AAsset; typedef in typeref:struct:AAsset
95 AAsset* AAssetManager_open(AAssetManager* mgr, const char* filename, int mode);
124 int AAsset_read(AAsset* asset, void* buf, size_t count);
132 off_t AAsset_seek(AAsset* asset, off_t offset, int whence);
143 off64_t AAsset_seek64(AAsset* asse
[all...]
/frameworks/base/native/android/
H A Dasset_manager.cpp34 // but AAssetDir and AAsset are actual wrappers for isolation.
48 struct AAsset { struct
51 AAsset(Asset* asset) : mAsset(asset) { } function in struct:AAsset
52 ~AAsset() { delete mAsset; }
87 AAsset* AAssetManager_open(AAssetManager* amgr, const char* filename, int mode)
113 return new AAsset(asset);
171 int AAsset_read(AAsset* asset, void* buf, size_t count)
176 off_t AAsset_seek(AAsset* asset, off_t offset, int whence)
181 off64_t AAsset_seek64(AAsset* asset, off64_t offset, int whence)
186 void AAsset_close(AAsset* asse
[all...]

Completed in 930 milliseconds