Lines Matching refs:ret
56 auto ret = kTrustyApp.Connect(); in LLVMFuzzerInitialize() local
57 if (!ret.ok()) { in LLVMFuzzerInitialize()
58 std::cerr << ret.error() << std::endl; in LLVMFuzzerInitialize()
68 ret = record->Open(); in LLVMFuzzerInitialize()
69 if (!ret.ok()) { in LLVMFuzzerInitialize()
70 std::cerr << ret.error() << std::endl; in LLVMFuzzerInitialize()
82 auto ret = kTrustyApp.Write(data, size); in LLVMFuzzerTestOneInput() local
83 if (ret.ok()) { in LLVMFuzzerTestOneInput()
84 ret = kTrustyApp.Read(&buf, sizeof(buf)); in LLVMFuzzerTestOneInput()
89 ret = kTrustyApp.Connect(); in LLVMFuzzerTestOneInput()
90 if (!ret.ok()) { in LLVMFuzzerTestOneInput()
91 std::cerr << ret.error() << std::endl; in LLVMFuzzerTestOneInput()
95 return ret.ok() ? 0 : -1; in LLVMFuzzerTestOneInput()