OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:appdir
(Results
1 - 6
of
6
) sorted by null
/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/qemu/android/
qemu-setup.c
451
const char*
appdir
= get_app_dir();
local
453
if (snprintf( tmp, PATH_MAX, "%s%s%s",
appdir
, PATH_SEP,
455
dprint( "Application directory too long: %s",
appdir
);
main.c
[
all
...]
/ndk/docs/
CPU-ARCH-ABIS.html
240
If one is found, then it is copied under $
APPDIR
/lib/lib<name>.so,
241
where $
APPDIR
corresponds to the application's specific data directory.
248
If anything is found, then it is copied under $
APPDIR
/lib/lib<name>.so
/external/bluetooth/glib/glib/
gutils.c
454
gchar *filename = NULL, *
appdir
= NULL;
local
513
appdir
= g_path_get_dirname (filename);
541
if (
appdir
)
544
path = g_strconcat (
appdir
, ";", path, NULL);
546
g_free (
appdir
);
[
all
...]
Completed in 139 milliseconds