OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pPath
(Results
1 - 3
of
3
) sorted by null
/development/tools/etc1tool/
etc1tool.cpp
66
int changeExtension(char*
pPath
, size_t pathCapacity, const char* pExtension) {
67
size_t pathLen = strlen(
pPath
);
74
if ((pathLen == 1 &&
pPath
[0] == '.') || (pathLen == 2 &&
pPath
[0] == '.'
75
&&
pPath
[1] == '.') || (pathLen >= 2 &&
pPath
[pathLen - 2] == '/'
76
&&
pPath
[pathLen - 1] == '.') || (pathLen >= 3
77
&&
pPath
[pathLen - 3] == '/' &&
pPath
[pathLen - 2] == '.'
78
&&
pPath
[pathLen - 1] == '.'))
[
all
...]
/external/qemu/android/avd/
info.c
382
char**
pPath
;
402
l->
pPath
= &l->info->imagePath[id];
414
AFREE(l->
pPath
[0]);
415
l->
pPath
[0] = (char*) path;
423
char* result = l->
pPath
[0];
424
l->
pPath
[0] = NULL;
506
* note that this clears l->
pPath
[0] if the lock could not
512
const char* path = l->
pPath
[0];
547
path = l->
pPath
[0];
592
* l->pState[0] and l->
pPath
[0
[
all
...]
/cts/tools/vm-tests/src/util/build/
BuildDalvikSuite.java
290
String
pPath
= pName.replaceAll("\\.","/");
291
//System.out.println("adb push "+
pPath
+"/"+mjar +" "+mainJar);
292
curJunitFileData+= " "+getADBPushJavaLine(
pPath
+"/"+mjar, mainJar);
Completed in 1187 milliseconds