HomeSort by relevance Sort by last modified time
    Searched refs:source_file (Results 1 - 25 of 49) sorted by null

1 2

  /toolchain/binutils/binutils-2.25/gprof/
source.h 26 typedef struct source_file
28 struct source_file *next;
35 Source_File;
46 extern Source_File *first_src_file;
49 extern Source_File *source_file_lookup_path (const char *);
50 extern Source_File *source_file_lookup_name (const char *);
61 (Source_File *sf, unsigned int max_width,
25 typedef struct source_file struct
  /external/chromium-trace/catapult/devil/devil/utils/
file_utils.py 20 for source_file in source_files:
21 with open(source_file, 'r') as source_f:
  /external/autotest/client/tests/kvm/tests/
floppy.py 48 source_file = params.get("source_file")
59 session.cmd("%s %s %s" % (params.get("copy_cmd"), source_file,
61 logging.info("Succeed to copy file '%s' into floppy disk" % source_file)
64 session.cmd("%s %s %s" % (params.get("diff_file_cmd"), source_file,
  /external/v8/tools/
verify_source_deps.py 87 for source_file in itertools.chain(
90 if source_file not in values:
91 yield source_file
  /external/google-breakpad/src/google_breakpad/processor/
basic_source_line_resolver.h 114 // |*source_file|.
119 long *source_file); // out
  /external/e2fsprogs/lib/ss/
test_ss.c 34 static int source_file(const char *cmd_file, int sci_idx) function
129 exit_status = source_file(cmd_file, sci_idx);
  /bootable/recovery/applypatch/
applypatch.cpp 42 static int GenerateTarget(FileContents* source_file,
653 FileContents source_file; local
657 // We try to load the target file into the source_file object.
658 if (LoadFileContents(target_filename, &source_file) == 0) {
659 if (memcmp(source_file.sha1, target_sha1, SHA_DIGEST_LENGTH) == 0) {
667 if (source_file.data.empty() ||
672 source_file.data.clear();
673 LoadFileContents(source_filename, &source_file);
676 if (!source_file.data.empty()) {
677 int to_use = FindMatchingPatch(source_file.sha1, patch_sha1_str, num_patches)
728 FileContents source_file; local
    [all...]
  /external/webrtc/tools/sslroots/
generate_sslroots.py 57 def _SplitCrt(source_file, options):
60 root_dir = os.path.dirname(os.path.abspath(source_file)) + '/'
62 f = open(source_file)
131 def _CreateCertSection(root_dir, source_file, label, options):
132 command = 'openssl x509 -in %s%s -noout -C' %(root_dir, source_file)
  /external/google-breakpad/src/processor/
basic_source_line_resolver_unittest.cc 536 long source_file; local
540 &line_number, &source_file));
544 EXPECT_EQ(4, source_file);
549 &line_number, &source_file));
553 EXPECT_EQ(4, source_file);
558 &line_number, &source_file));
562 EXPECT_EQ(4, source_file);
571 long source_file; local
576 &line_number, &source_file));
580 &line_number, &source_file));
    [all...]
basic_source_line_resolver.cc 339 long source_file; local
342 &source_file)) {
343 return new Line(address, size, source_file, line_number);
528 long *source_file) {
551 *source_file = strtol(tokens[3], &after_number, 10);
552 if (!IsValidAfterNumber(after_number) || *source_file < 0 ||
553 *source_file == std::numeric_limits<long>::max()) {
  /external/libxml2/vms/
build_libxml.com 242 $ source_file = p1
243 $ name = f$parse(source_file,,,"NAME")
248 $ write sys$output "''cc_command'''p2'/object=''object_file' ''source_file'"
249 $ cc_command'p2' /object='object_file 'source_file'
  /art/runtime/mirror/
throwable.cc 114 const char* source_file = method->GetDeclaringClassSourceFile(); local
116 source_file, line_number);
  /art/compiler/debug/
elf_debug_line_writer.h 176 const char* source_file = dex->GetSourceFile(dex_class_def); local
177 if (source_file != nullptr) {
178 std::string file_name(source_file);
elf_debug_writer.cc 54 const char* source_file = mi.dex_file->GetSourceFile(dex_class_def); local
55 if (compilation_units.empty() || source_file != last_source_file) {
65 last_source_file = source_file;
  /external/webrtc/webrtc/common_video/libyuv/
scaler_unittest.cc 28 FILE* source_file, std::string out_name,
341 FILE* source_file, std::string out_name,
352 rewind(source_file);
365 while (feof(source_file) == 0) {
366 if (fread(frame_buffer.get(), 1, src_required_size, source_file) !=
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/
generate_python_test.py 79 source_file = open(file_name, 'wt')
81 generate_python.format_python_file(file_descriptor, source_file)
83 source_file.close()
  /external/libcxx/test/libcxx/
compiler.py 99 def compileLinkTwoSteps(self, source_file, out=None, object_file=None,
101 if not isinstance(source_file, str):
111 source_file, object_file, flags=flags, env=env, cwd=cwd)
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/libcxx/
compiler.py 99 def compileLinkTwoSteps(self, source_file, out=None, object_file=None,
101 if not isinstance(source_file, str):
111 source_file, object_file, flags=flags, env=env, cwd=cwd)
  /external/e2fsprogs/tests/progs/
test_icount.c 246 static int source_file(const char *cmd_file, int sci_idx) function
356 exit_status = source_file(cmd_file, sci_idx);
  /external/webrtc/
PRESUBMIT.py 242 source_file = file_list_match.group(0)
243 if 'overrides/' not in source_file:
244 violating_source_entries.append(source_file)
  /external/vulkan-validation-layers/
vk_layer_documentation_generate.py 193 def __init__(self, source_file):
194 self.layer_doc_filename = source_file
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_tarfile.py 876 source_file = os.path.join(tempdir,'source')
878 with open(source_file,'w') as f:
880 os.symlink(source_file, target_file)
882 tar.add(source_file, arcname=os.path.basename(source_file))
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_tarfile.py 876 source_file = os.path.join(tempdir,'source')
878 with open(source_file,'w') as f:
880 os.symlink(source_file, target_file)
882 tar.add(source_file, arcname=os.path.basename(source_file))
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_tarfile.py 876 source_file = os.path.join(tempdir,'source')
878 with open(source_file,'w') as f:
880 os.symlink(source_file, target_file)
882 tar.add(source_file, arcname=os.path.basename(source_file))
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_tarfile.py 876 source_file = os.path.join(tempdir,'source')
878 with open(source_file,'w') as f:
880 os.symlink(source_file, target_file)
882 tar.add(source_file, arcname=os.path.basename(source_file))
    [all...]

Completed in 1288 milliseconds

1 2