Home
last modified time | relevance | path

Searched refs:file_buf (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/compiler-rt/lib/tsan/rtl/
H A Dtsan_symbolize.cpp43 char *file_buf, uptr file_siz, int *line, in __tsan_symbolize_external() argument
94 static char file_buf[1024]; in SymbolizeCode() local
97 if (__tsan_symbolize_external(addr, func_buf, sizeof(func_buf), file_buf, in SymbolizeCode()
98 sizeof(file_buf), &line, &col)) { in SymbolizeCode()
100 frame->info.file = internal_strdup(file_buf); in SymbolizeCode()
/llvm-project-15.0.7/compiler-rt/lib/tsan/rtl-old/
H A Dtsan_symbolize.cpp43 char *file_buf, uptr file_siz, int *line, in __tsan_symbolize_external() argument
94 static char file_buf[1024]; in SymbolizeCode() local
97 if (__tsan_symbolize_external(addr, func_buf, sizeof(func_buf), file_buf, in SymbolizeCode()
98 sizeof(file_buf), &line, &col)) { in SymbolizeCode()
100 frame->info.file = internal_strdup(file_buf); in SymbolizeCode()
/llvm-project-15.0.7/llvm/test/Bindings/OCaml/
H A Dbitwriter.ml44 let file_buf = read_file Sys.argv.(1) in
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 = Bytes.of_string (Llvm.MemoryBuffer.as_string (Llvm_bitwriter.write_bitcode_to_mem…
/llvm-project-15.0.7/compiler-rt/test/tsan/
H A Djava_symbolization_legacy.cpp7 char *file_buf, jptr file_siz, int *line, int *col) { in __tsan_symbolize_external() argument
10 memcpy(file_buf, "MyFile.java", sizeof("MyFile.java")); in __tsan_symbolize_external()
/llvm-project-15.0.7/compiler-rt/test/tsan/Linux/
H A Ddouble_race.cpp20 unsigned long func_siz, char *file_buf, in __tsan_symbolize_external() argument
/llvm-project-15.0.7/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
H A DRenderScriptRuntime.cpp2445 const void *file_buf = data_sp->GetBytes(); in LoadAllocation() local
2446 if (file_buf == nullptr || in LoadAllocation()
2454 static_cast<const AllocationDetails::FileHeader *>(file_buf); in LoadAllocation()
2467 static_cast<const uint8_t *>(file_buf) + in LoadAllocation()
2519 file_buf = static_cast<const uint8_t *>(file_buf) + file_header->hdr_size; in LoadAllocation()
2539 size_t written = GetProcess()->WriteMemory(alloc_data, file_buf, size, err); in LoadAllocation()