Searched refs:dump (Results 1 - 25 of 999) sorted by relevance

1234567891011>>

/external/llvm/test/MC/MachO/ARM/
H A Dnop-armv4-padding.s2 @ RUN: macho-dump --dump-section-data < %t.obj > %t.dump
3 @ RUN: FileCheck %s < %t.dump
H A Dnop-armv6t2-padding.s2 @ RUN: macho-dump --dump-section-data < %t.obj > %t.dump
3 @ RUN: FileCheck %s < %t.dump
H A Drelax-thumb-ldr-literal.s2 @ RUN: macho-dump --dump-section-data < %t.obj > %t.dump
3 @ RUN: FileCheck < %t.dump %s
H A Dthumb2-function-relative-load.s2 @ RUN: macho-dump --dump-section-data < %t.obj > %t.dump
3 @ RUN: FileCheck < %t.dump %s
H A Dnop-thumb-padding.s2 @ RUN: macho-dump --dump-section-data < %t.obj > %t.dump
3 @ RUN: FileCheck %s < %t.dump
H A Dnop-thumb2-padding.s2 @ RUN: macho-dump --dump-section-data < %t.obj > %t.dump
3 @ RUN: FileCheck %s < %t.dump
H A Dno-subsections-reloc.s2 @ RUN: macho-dump --dump-section-data < %t.obj > %t.dump
3 @ RUN: FileCheck < %t.dump %s
H A Drelax-thumb2-branches.s1 @ RUN: llvm-mc -triple=thumbv7-apple-darwin -show-encoding %s -filetype=obj -o - | macho-dump --dump-section-data | FileCheck %s
/external/llvm/lib/MC/
H A DMCLabel.cpp20 void MCLabel::dump() const { function in class:MCLabel
/external/llvm/tools/macho-dump/
H A DMakefile1 ##===- tools/macho-dump/Makefile ---------------------------*- Makefile -*-===##
11 TOOLNAME := macho-dump
H A DAndroid.mk7 # macho-dump command line tool
11 macho-dump.cpp
23 LOCAL_MODULE := macho-dump
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
H A Dradeon_llvm_emit.h39 const char * gpu_family, unsigned dump);
46 unsigned dump);
/external/llvm/lib/DebugInfo/
H A DDWARFCompileUnit.cpp16 void DWARFCompileUnit::dump(raw_ostream &OS) { function in class:DWARFCompileUnit
27 CU->dump(OS, this, -1U);
H A DDWARFTypeUnit.cpp25 void DWARFTypeUnit::dump(raw_ostream &OS) { function in class:DWARFTypeUnit
38 CU->dump(OS, this, -1U);
/external/mesa3d/src/gallium/drivers/radeon/
H A Dradeon_llvm_emit.h39 const char * gpu_family, unsigned dump);
46 unsigned dump);
/external/chromium_org/components/breakpad/tools/
H A Ddmp2minidump.py14 """Extracts the part of the dump file that minidump_stackwalk can read.
16 The dump files generated by the breakpad integration multi-part form data
20 dump_file: the dump file that needs to be processed.
24 dump = open(dump_file, 'rb')
25 boundary = dump.readline().strip()[2:]
26 data = parse_multipart(dump, {'boundary': boundary})
32 print 'Could not find minidump file in dump.'
44 print 'Extracts the minidump stored in the crash dump file'
/external/chromium_org/tools/deep_memory_profiler/subcommands/
H A Dstacktrace.py14 'Usage: %prog stacktrace <dump>')
19 (bucket_set, dump) = SubCommand.load_basic_files(dump_path, False)
21 StacktraceCommand._output(dump, bucket_set, sys.stdout)
25 def _output(dump, bucket_set, out):
32 for line in dump.iter_stacktrace:
H A Dpolicies.py22 'Usage: %%prog %s [-p POLICY] <first-dump> [shared-first-dumps...]' %
60 def _apply_policy(self, dump, pfn_counts_dict, policy, bucket_set,
68 dump: A Dump object.
72 first_dump_time: An integer representing time when the first dump is
78 LOGGER.info(' %s' % dump.path)
86 time_difference = pfnset.time - dump.time
107 PolicyCommands._accumulate_malloc(dump, policy, bucket_set, sizes)
109 dump, all_pfn_dict, policy, bucket_set, sizes)
114 dump_value = dump.global_stat('%s_committed' % verify_key)
120 dump
[all...]
H A Dcat.py20 super(CatCommand, self).__init__('Usage: %prog cat <first-dump>')
68 for dump in dumps:
69 if json_root['run_id'] and json_root['run_id'] != dump.run_id:
73 json_root['run_id'] = dump.run_id
75 LOGGER.info('Sorting a dump %s...' % dump.path)
77 self._fill_snapshot(dump, bucket_set, sorters))
80 json.dump(json_root, sys.stdout, indent=2)
82 json.dump(json_root, sys.stdout)
86 def _fill_snapshot(dump, bucket_se
[all...]
/external/f2fs-tools/fsck/
H A DMakefile.am6 fsck_f2fs_SOURCES = main.c fsck.c dump.c mount.c
10 ln -sf fsck.f2fs $(DESTDIR)/$(sbindir)/dump.f2fs
/external/chromium_org/tools/telemetry/telemetry/timeline/
H A Dtracing_timeline_data.py17 json.dump(self._event_data, f)
19 json.dump({'traceEvents' : self._event_data}, f)
/external/llvm/test/MC/MachO/AArch64/
H A Ddarwin-ARM64-local-label-diff.s1 ; RUN: llvm-mc -triple arm64-apple-darwin -filetype=obj -o - < %s | macho-dump -dump-section-data | FileCheck %s
/external/f2fs-tools/scripts/
H A Ddumpf2fs.sh10 echo dump cp1
15 echo dump cp2
19 echo dump cp1 and cp2
25 echo dump cp1 all
29 echo dump cp2 all
33 echo dump cp1 and cp2 all
/external/wpa_supplicant_8/hs20/server/www/
H A Dusers.php22 $row = $db->query("SELECT dump FROM eventlog WHERE rowid=$id")->fetch();
23 $dump = $row['dump']; variable
24 if ($dump[0] == '<') {
27 echo $dump;
30 echo $dump;
110 $dump = 0; variable
114 if (isset($_GET["dump"])) {
115 $dump = $_GET["dump"]; variable
117 $dump = 0; variable
119 $dump = 0; variable
[all...]
/external/oauth/core/src/main/java/net/oauth/http/
H A DHttpResponseMessage.java36 public void dump(Map<String, Object> into) throws IOException { method in class:HttpResponseMessage
37 super.dump(into);
47 /** The name of a dump entry whose value is the response Location header. */
50 /** The name of a dump entry whose value is the HTTP status code. */

Completed in 402 milliseconds

1234567891011>>