HomeSort by: relevance | last modified time | path
    Searched defs:Success (Results 1 - 13 of 13) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/xray/tests/unit/
allocator_test.cc 61 bool Success = false;
62 BufferQueue BQ(GetPageSizeCached(), 10, Success);
63 ASSERT_TRUE(Success);
fdr_log_writer_test.cc 41 bool Success = false;
42 BufferQueue Buffers(kSize, 1, Success);
79 bool Success = false;
80 BufferQueue Buffers(kSize, 1, Success);
129 bool Success = false;
130 BufferQueue Buffers(kSize, 1, Success);
fdr_controller_test.cc 54 bool Success;
55 BQ = llvm::make_unique<BufferQueue>(4096, 1, Success);
56 ASSERT_TRUE(Success);
306 bool Success;
309 kBuffers, Success);
310 ASSERT_TRUE(Success);
buffer_queue_test.cc 30 bool Success = false;
31 BufferQueue Buffers(kSize, 1, Success);
32 ASSERT_TRUE(Success);
36 bool Success = false;
37 BufferQueue Buffers(kSize, 1, Success);
38 ASSERT_TRUE(Success);
47 bool Success = false;
48 BufferQueue Buffers(kSize, 1, Success);
49 ASSERT_TRUE(Success);
58 bool Success = false
    [all...]
profile_collector_test.cc 113 bool Success = false;
115 profilingFlags()->buffers_max, Success);
116 ASSERT_EQ(Success, true);
184 static bool Success = false;
186 profilingFlags()->buffers_max, Success);
  /src/sys/external/bsd/compiler_rt/dist/lib/profile/
InstrProfilingValue.c 120 uint32_t Success = 0;
122 Success =
125 Success = COMPILER_RT_BOOL_CMPXCHG(&(PrevVNode->Next), 0, CurrentVNode);
127 if (!Success) {
  /src/sys/external/bsd/compiler_rt/dist/lib/xray/
xray_buffer_queue.cc 79 bool Success = false;
88 if (Success)
100 if (Success)
142 Success = true;
147 bool &Success) XRAY_NEVER_INSTRUMENT
159 Success = init(B, N) == BufferQueue::ErrorCode::Ok;
xray_x86_64.cc 60 bool Success;
61 std::tie(BytesRead, Success) = retryingReadSome(Fd, Line, Line + BufSize);
63 if (!Success)
xray_interface.cc 152 bool Success = false;
155 Success = patchFunctionEntry(Enable, FuncId, Sled, __xray_FunctionEntry);
158 Success = patchFunctionExit(Enable, FuncId, Sled);
161 Success = patchFunctionTailExit(Enable, FuncId, Sled);
164 Success = patchFunctionEntry(Enable, FuncId, Sled, __xray_ArgLoggerEntry);
167 Success = patchCustomEvent(Enable, FuncId, Sled);
170 Success = patchTypedEvent(Enable, FuncId, Sled);
176 return Success;
225 return XRayPatchingStatus::SUCCESS;
310 return XRayPatchingStatus::SUCCESS;
    [all...]
xray_profiling.cc 92 bool Success = false;
94 if (!Success)
105 if (!Success)
112 if (!Success)
120 if (!Success)
128 Success = true;
393 bool Success = false;
396 profilingFlags()->buffers_max, Success);
397 if (!Success) {
xray_fdr_logging.cc 666 bool Success = false;
668 new (BQ) BufferQueue(BufferSize, BufferMax, Success);
669 if (!Success) {
xray_profile_collector.cc 343 bool Success = false;
345 BufferQueue(profilingFlags()->global_allocator_max, 1, Success);
346 if (!Success)
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerMerge.cpp 338 bool Success = false;
348 Success = true;
352 if (!Success) {

Completed in 40 milliseconds