Searched refs:file_buf (Results 1 - 8 of 8) sorted by relevance

/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_symbolize.cc43 char *file_buf, uptr file_siz, int *line,
54 static char file_buf[1024]; local
57 if (__tsan_symbolize_external(addr, func_buf, sizeof(func_buf), file_buf,
58 sizeof(file_buf), &line, &col)) {
60 frame->info.file = internal_strdup(file_buf);
42 __tsan_symbolize_external(uptr pc, char *func_buf, uptr func_siz, char *file_buf, uptr file_siz, int *line, int *col) argument
/external/llvm/test/Bindings/OCaml/
H A Dbitwriter.ml44 let file_buf = read_file Sys.argv.(1) in var
46 test (file_buf = temp_bitcode m);
47 test (file_buf = temp_bitcode ~unbuffered:false m);
48 test (file_buf = temp_bitcode ~unbuffered:true m);
49 test (file_buf = Llvm.MemoryBuffer.as_string (Llvm_bitwriter.write_bitcode_to_memory_buffer m))
/external/compiler-rt/test/tsan/
H A Djava_symbolization.cc7 char *file_buf, jptr file_siz,
11 memcpy(file_buf, "MyFile.java", sizeof("MyFile.java"));
5 __tsan_symbolize_external(jptr pc, char *func_buf, jptr func_siz, char *file_buf, jptr file_siz, int *line, int *col) argument
/external/swiftshader/third_party/LLVM/test/Bindings/Ocaml/
H A Dbitwriter.ml41 let file_buf = read_file Sys.argv.(1) in var
43 test (file_buf = temp_bitcode m);
44 test (file_buf = temp_bitcode ~unbuffered:false m);
45 test (file_buf = temp_bitcode ~unbuffered:true m)
/external/ltp/testcases/kernel/containers/share/
H A Dns_exec.c59 char file_buf[30]; local
61 sprintf(file_buf, "%s/%s/ns/%s", PROC_PATH, pid, ns);
63 fd = open(file_buf, O_RDONLY);
/external/valgrind/tests/
H A Ds390x_features.c120 char *p, *m, *model_name, *file_buf; local
133 file_buf = malloc(file_buf_size + 1);
136 n = read(fh, file_buf, file_buf_size);
146 free(file_buf);
148 file_buf = malloc(num_bytes + 1);
149 n = read(fh, file_buf, num_bytes);
153 file_buf[num_bytes] = '\0';
158 for (p = file_buf; *p; ++p) {
190 free(file_buf);
/external/valgrind/coregrind/
H A Dm_machine.c562 HChar *p, *m, *model_name, *file_buf; local
576 file_buf = VG_(malloc)("cpuinfo", file_buf_size + 1);
578 n = VG_(read)(fh, file_buf, file_buf_size);
588 VG_(free)( file_buf );
590 file_buf = VG_(malloc)( "cpuinfo", num_bytes + 1 );
591 n = VG_(read)( fh, file_buf, num_bytes );
595 file_buf[num_bytes] = '\0';
600 for (p = file_buf; *p; ++p) {
630 VG_(free)( file_buf );
658 HChar *file_buf, *is local
784 HChar *file_buf; local
[all...]
/external/libunwind/src/coredump/
H A D_UCD_create.c358 char *file_buf = malloc(phdr->p_filesz); local
366 free(file_buf);
369 if ((uoff_t)read(fd, file_buf, phdr->p_filesz) != phdr->p_filesz)
374 int r = memcmp(core_buf, file_buf, phdr->p_filesz);
376 free(file_buf);

Completed in 247 milliseconds