OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:appdir
(Results
1 - 11
of
11
) sorted by null
/external/chromium_org/chrome/test/android/javatests/src/org/chromium/chrome/test/util/
ApplicationData.java
43
final String
appDir
= getAppDirFromTargetContext(targetContext);
50
if (!mDataRemoved && !removeAppData(
appDir
)) {
57
File cacheDir = new File(
appDir
, "cache");
81
* @param
appDir
the application directory to remove.
85
private static boolean removeAppData(String
appDir
) {
86
File[] files = new File(
appDir
).listFiles();
/external/qemu/android/utils/
bufprint.c
137
char
appDir
[MAX_PATH];
141
len = GetModuleFileName( 0,
appDir
, sizeof(
appDir
)-1 );
146
if (len >= (int)sizeof(
appDir
)) {
147
len = sizeof(
appDir
)-1;
148
appDir
[len] = 0;
151
sep = strrchr(
appDir
, '\\');
155
return bufprint(buff, end, "%s",
appDir
);
/development/tools/findunused/
find_unused_resources.rb
33
@@
appDir
= "partner/google/apps/Gmail"
50
attr_accessor :
appDir
, :unusedLayoutIds, :unusedStringIds
161
result.
appDir
= dir
179
puts "=== #{unusedResources.
appDir
}"
211
puts "<h2>#{unusedResources.
appDir
}</h2>"
225
findApps(".").each { |
appDir
|
226
result << findUnusedResources(
appDir
)
/external/deqp/android/scripts/
build.py
92
appDir
= os.path.join(buildRoot, "package")
95
os.chdir(
appDir
)
98
manifestDstPath = os.path.normpath(os.path.join(
appDir
, "AndroidManifest.xml"))
/external/chromium_org/third_party/lcov/
README
106
Assuming the compile directory is called "
appdir
", do the following:
110
lcov --directory
appdir
--zerocounters
115
lcov --directory
appdir
--capture --output-file app.info
/external/qemu/android/
qemu-setup.c
483
const char*
appdir
= get_app_dir();
local
493
if (snprintf( tmp, PATH_MAX, "%s%s%s",
appdir
, PATH_SEP,
495
dprint( "Application directory too long: %s",
appdir
);
/sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/launch/
NdkGdbLaunchDelegate.java
321
String
appDir
= null;
323
appDir
= getAppDirectory(device, manifestData.getPackage(), 5, TimeUnit.SECONDS);
336
String.format("%s/%s",
appDir
, DEBUG_SOCKET), //$NON-NLS-1$
/external/chromium_org/third_party/lcov/man/
lcov.1
595
# lcov \-c \-i \-d
appdir
\-o app_base.info
601
#
appdir
/test
607
# lcov \-c \-d
appdir
\-o app_test.info
/ndk/docs/text/
CPU-ARCH-ABIS.text
390
If one is found, then it is copied under `$
APPDIR
/lib/lib<name>.so`,
391
where `$
APPDIR
` corresponds to the application's specific data directory.
398
If anything is found, then it is copied under `$
APPDIR
/lib/lib<name>.so`
/libcore/libart/src/main/java/dalvik/system/
VMRuntime.java
312
public static native void registerAppInfo(String
appDir
, String processName, String pkgname);
/art/runtime/native/
dalvik_system_VMRuntime.cc
516
jstring
appDir
, jstring procName) {
Completed in 492 milliseconds