HomeSort by relevance Sort by last modified time
    Searched refs:file_buf (Results 1 - 7 of 7) sorted by null

  /external/compiler-rt/lib/tsan/rtl/
tsan_symbolize.cc 43 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);
  /external/llvm/test/Bindings/OCaml/
bitwriter.ml 44 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/
java_symbolization.cc 7 char *file_buf, jptr file_siz,
11 memcpy(file_buf, "MyFile.java", sizeof("MyFile.java"));
  /external/valgrind/tests/
s390x_features.c 119 char *p, *m, *model_name, *file_buf; local
122 /* Slurp contents of /proc/cpuinfo into FILE_BUF */
132 file_buf = malloc(file_buf_size + 1);
135 n = read(fh, file_buf, file_buf_size);
145 free(file_buf);
147 file_buf = malloc(num_bytes + 1);
148 n = read(fh, file_buf, num_bytes);
152 file_buf[num_bytes] = '\0';
157 for (p = file_buf; *p; ++p) {
189 free(file_buf);
    [all...]
  /external/libunwind/src/coredump/
_UCD_create.c 358 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);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/build/make/
obj_int_extract.c 781 uint8_t *file_buf; local
820 file_buf = malloc(file_size);
822 if (!file_buf) {
829 if (fread(file_buf, sizeof(char), file_size, fp) != file_size) {
841 res = parse_macho(file_buf, file_size, mode);
843 res = parse_elf(file_buf, file_size, mode);
847 res = parse_coff(file_buf, file_size);
850 free(file_buf);
  /external/valgrind/coregrind/
m_machine.c 624 HChar *p, *m, *model_name, *file_buf; local
626 /* Slurp contents of /proc/cpuinfo into FILE_BUF */
638 file_buf = VG_(malloc)("cpuinfo", file_buf_size + 1);
640 n = VG_(read)(fh, file_buf, file_buf_size);
650 VG_(free)( file_buf );
652 file_buf = VG_(malloc)( "cpuinfo", num_bytes + 1 );
653 n = VG_(read)( fh, file_buf, num_bytes );
657 file_buf[num_bytes] = '\0';
662 for (p = file_buf; *p; ++p) {
692 VG_(free)( file_buf );
713 HChar *file_buf; local
    [all...]

Completed in 498 milliseconds