OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:dumpfilename
(Results
1 - 4
of
4
) sorted by null
/external/smali/baksmali/src/main/java/org/jf/baksmali/
dump.java
39
public static void dump(DexFile dexFile, String
dumpFileName
, String outputDexFileName, boolean sort)
52
if (
dumpFileName
!= null) {
60
if (
dumpFileName
!= null) {
66
writer = new FileWriter(
dumpFileName
);
69
System.err.println("\n\nThere was an error while dumping the dex file to " +
dumpFileName
);
76
System.err.println("\n\nThere was an error while closing the dump file " +
dumpFileName
);
main.java
122
String
dumpFileName
= null;
231
dumpFileName
= commandLine.getOptionValue("D", inputDexFileName + ".dump");
317
dump.dump(dexFile,
dumpFileName
, outputDexFileName, sort);
/external/smali/smali/src/main/java/org/jf/smali/
main.java
112
String
dumpFileName
= null;
146
dumpFileName
= commandLine.getOptionValue("D", outputDexFile + ".dump");
223
if (
dumpFileName
!= null) {
234
if (
dumpFileName
!= null) {
237
FileWriter fileWriter = new FileWriter(
dumpFileName
);
/external/oprofile/opjitconv/
opjitconv.c
262
char const *
dumpfilename
= rindex(dmp_pathname, '/');
local
285
if (
dumpfilename
) {
287
char const * dot_dump = rindex(++
dumpfilename
, '.');
290
proc_id_length = dot_dump -
dumpfilename
;
292
memcpy(proc_id,
dumpfilename
, proc_id_length);
297
tmp_dumpfile = xmalloc(tmp_conv_dir_length + 1 + strlen(
dumpfilename
) + 1);
301
strcat(tmp_dumpfile,
dumpfilename
);
Completed in 3182 milliseconds