/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/ImageMagick/MagickCore/ |
utility.c | 163 source_file; 205 source_file=open_utf8(source,O_RDONLY | O_BINARY,0); 206 if (source_file == -1) 213 if ((fstat(source_file,&attributes) == 0) && (attributes.st_size > 0)) 218 (void) close(source_file); 225 count=(ssize_t) read(source_file,buffer,quantum); 233 (void) close(source_file); 240 (void) close(source_file); 158 source_file; local [all...] |
Make.com | 170 $source_file=f$search(f$parse(p1,".c")) 171 $if (source_file .nes. "") 173 $ object_file=f$parse(source_file,,,"name")+".obj" 178 $ source_time=f$file_attribute(source_file,"cdt") 186 [-.tiff],[-.ttf],[-.zlib]) 'source_file'
|
/prebuilts/tools/linux-x86_64/kythe/proto/ |
analysis.proto | 103 repeated string source_file = 6;
|
/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/ImageMagick/coders/ |
mpeg.c | 372 source_file; 407 source_file=open_utf8(source,O_RDONLY | O_BINARY,0); 408 if (source_file == -1) 414 if ((fstat(source_file,&attributes) == 0) && (attributes.st_size > 0)) 420 (void) close(source_file); 427 count=(ssize_t) read(source_file,buffer,quantum); 436 (void) close(source_file); 365 source_file; local
|
Make.com | 169 $source_file=f$search(f$parse(p1,".c")) 170 $if (source_file .nes. "") 172 $ object_file=f$parse(source_file,,,"name")+".obj" 177 $ source_time=f$file_attribute(source_file,"cdt") 185 [-.tiff],[-.ttf],[-.zlib]) 'source_file'
|
/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)
|