OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:assetdir
(Results
1 - 21
of
21
) sorted by null
/frameworks/base/native/android/
asset_manager.cpp
22
#include <androidfw/
AssetDir
.h>
38
AssetDir
* mAssetDir;
42
AAssetDir(
AssetDir
* dir) : mAssetDir(dir), mCurFileIndex(0) { }
123
*
AssetDir
functionality
126
const char* AAssetDir_getNextFileName(AAssetDir*
assetDir
)
129
size_t index =
assetDir
->mCurFileIndex;
130
const size_t max =
assetDir
->mAssetDir->getFileCount();
135
while ((index < max) && (
assetDir
->mAssetDir->getFileType(index) != kFileTypeRegular)) {
142
assetDir
->mCachedFileName =
assetDir
->mAssetDir->getFileName(index)
[
all
...]
/frameworks/base/include/androidfw/
AssetDir.h
40
class
AssetDir
{
42
AssetDir
(void)
45
virtual ~
AssetDir
(void) {
69
AssetDir
(const
AssetDir
& src);
70
const
AssetDir
& operator=(const
AssetDir
& src);
AssetManager.h
24
#include <androidfw/
AssetDir
.h>
68
*
AssetDir
objects to peruse a single directory.
153
* path hierarchy, and will not be seen by "
AssetDir
" or included
174
AssetDir
* openDir(const char* dirName);
186
AssetDir
* openNonAssetDir(void* cookie, const char* dirName);
246
bool scanAndMergeDirLocked(SortedVector<
AssetDir
::FileInfo>* pMergedInfo,
248
SortedVector<
AssetDir
::FileInfo>* scanDirLocked(const String8& path);
249
bool scanAndMergeZipLocked(SortedVector<
AssetDir
::FileInfo>* pMergedInfo,
251
void mergeInfoLocked(SortedVector<
AssetDir
::FileInfo>* pMergedInfo,
252
const SortedVector<
AssetDir
::FileInfo>* pContents)
[
all
...]
/development/ndk/platforms/android-9/include/android/
asset_manager.h
67
* The string returned here is owned by the
AssetDir
implementation and is not
71
const char* AAssetDir_getNextFileName(AAssetDir*
assetDir
);
76
void AAssetDir_rewind(AAssetDir*
assetDir
);
81
void AAssetDir_close(AAssetDir*
assetDir
);
/prebuilts/gcc/darwin-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/android/
asset_manager.h
65
* The string returned here is owned by the
AssetDir
implementation and is not
69
const char* AAssetDir_getNextFileName(AAssetDir*
assetDir
);
74
void AAssetDir_rewind(AAssetDir*
assetDir
);
79
void AAssetDir_close(AAssetDir*
assetDir
);
/prebuilts/gcc/linux-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/android/
asset_manager.h
67
* The string returned here is owned by the
AssetDir
implementation and is not
71
const char* AAssetDir_getNextFileName(AAssetDir*
assetDir
);
76
void AAssetDir_rewind(AAssetDir*
assetDir
);
81
void AAssetDir_close(AAssetDir*
assetDir
);
/prebuilts/ndk/android-ndk-r5/platforms/android-9/arch-arm/usr/include/android/
asset_manager.h
65
* The string returned here is owned by the
AssetDir
implementation and is not
69
const char* AAssetDir_getNextFileName(AAssetDir*
assetDir
);
74
void AAssetDir_rewind(AAssetDir*
assetDir
);
79
void AAssetDir_close(AAssetDir*
assetDir
);
/prebuilts/ndk/android-ndk-r6/platforms/android-9/arch-arm/usr/include/android/
asset_manager.h
65
* The string returned here is owned by the
AssetDir
implementation and is not
69
const char* AAssetDir_getNextFileName(AAssetDir*
assetDir
);
74
void AAssetDir_rewind(AAssetDir*
assetDir
);
79
void AAssetDir_close(AAssetDir*
assetDir
);
/prebuilts/ndk/android-ndk-r6/platforms/android-9/arch-x86/usr/include/android/
asset_manager.h
65
* The string returned here is owned by the
AssetDir
implementation and is not
69
const char* AAssetDir_getNextFileName(AAssetDir*
assetDir
);
74
void AAssetDir_rewind(AAssetDir*
assetDir
);
79
void AAssetDir_close(AAssetDir*
assetDir
);
/prebuilts/ndk/android-ndk-r7/platforms/android-14/arch-arm/usr/include/android/
asset_manager.h
65
* The string returned here is owned by the
AssetDir
implementation and is not
69
const char* AAssetDir_getNextFileName(AAssetDir*
assetDir
);
74
void AAssetDir_rewind(AAssetDir*
assetDir
);
79
void AAssetDir_close(AAssetDir*
assetDir
);
/prebuilts/ndk/android-ndk-r7/platforms/android-14/arch-x86/usr/include/android/
asset_manager.h
65
* The string returned here is owned by the
AssetDir
implementation and is not
69
const char* AAssetDir_getNextFileName(AAssetDir*
assetDir
);
74
void AAssetDir_rewind(AAssetDir*
assetDir
);
79
void AAssetDir_close(AAssetDir*
assetDir
);
/prebuilts/ndk/android-ndk-r7/platforms/android-9/arch-arm/usr/include/android/
asset_manager.h
65
* The string returned here is owned by the
AssetDir
implementation and is not
69
const char* AAssetDir_getNextFileName(AAssetDir*
assetDir
);
74
void AAssetDir_rewind(AAssetDir*
assetDir
);
79
void AAssetDir_close(AAssetDir*
assetDir
);
/prebuilts/ndk/android-ndk-r7/platforms/android-9/arch-x86/usr/include/android/
asset_manager.h
65
* The string returned here is owned by the
AssetDir
implementation and is not
69
const char* AAssetDir_getNextFileName(AAssetDir*
assetDir
);
74
void AAssetDir_rewind(AAssetDir*
assetDir
);
79
void AAssetDir_close(AAssetDir*
assetDir
);
/frameworks/base/libs/androidfw/
AssetDir.cpp
22
#include <androidfw/
AssetDir
.h>
33
/*static*/ int
AssetDir
::FileInfo::findEntry(const SortedVector<FileInfo>* pVector,
AssetManager.cpp
25
#include <androidfw/
AssetDir
.h>
885
AssetDir
::FileInfo tmpInfo;
[
all
...]
Android.mk
23
AssetDir
.cpp \
/frameworks/native/include/android/
asset_manager.h
65
* The string returned here is owned by the
AssetDir
implementation and is not
69
const char* AAssetDir_getNextFileName(AAssetDir*
assetDir
);
74
void AAssetDir_rewind(AAssetDir*
assetDir
);
79
void AAssetDir_close(AAssetDir*
assetDir
);
/frameworks/base/tools/aapt/
AaptAssets.cpp
[
all
...]
Command.cpp
[
all
...]
/prebuilts/sdk/tools/linux/
aapt
/frameworks/base/core/jni/
android_util_AssetManager.cpp
289
AssetDir
* dir = am->openDir(fileName8.c_str());
[
all
...]
Completed in 1474 milliseconds