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

/frameworks/native/include/android/
H A Dasset_manager.h31 struct AAsset;
32 typedef struct AAsset AAsset; typedef in typeref:struct:AAsset
57 AAsset* AAssetManager_open(AAssetManager* mgr, const char* filename, int mode);
86 int AAsset_read(AAsset* asset, void* buf, size_t count);
94 off_t AAsset_seek(AAsset* asset, off_t offset, int whence);
105 off64_t AAsset_seek64(AAsset* asset, off64_t offset, int whence);
110 void AAsset_close(AAsset* asset);
117 const void* AAsset_getBuffer(AAsset* asset);
122 off_t AAsset_getLength(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 148 milliseconds