Home
last modified time | relevance | path

Searched refs:tryGetExceptionObject (Results 1 – 8 of 8) sorted by relevance

/dports/devel/folly/folly-2021.12.27.00/folly/test/
H A DTryTest.cpp597 TEST(Try, tryGetExceptionObject) { in TEST() argument
606 EXPECT_EQ(nullptr, t.tryGetExceptionObject()); in TEST()
613 EXPECT_EQ(exn, t.tryGetExceptionObject()); in TEST()
620 EXPECT_EQ(nullptr, t.tryGetExceptionObject()); in TEST()
627 EXPECT_EQ(nullptr, t.tryGetExceptionObject()); in TEST()
634 EXPECT_EQ(exn, t.tryGetExceptionObject()); in TEST()
641 EXPECT_EQ(nullptr, t.tryGetExceptionObject()); in TEST()
648 EXPECT_EQ(nullptr, t.tryGetExceptionObject()); in TEST()
655 EXPECT_EQ(exn, t.tryGetExceptionObject()); in TEST()
662 EXPECT_EQ(nullptr, t.tryGetExceptionObject()); in TEST()
[all …]
/dports/security/keybase/client-v5.7.1/shared/ios/Pods/Folly/folly/
H A DTry.h292 std::exception* tryGetExceptionObject() { in tryGetExceptionObject() function
295 std::exception const* tryGetExceptionObject() const { in tryGetExceptionObject() function
305 E* tryGetExceptionObject() { in tryGetExceptionObject() function
309 E const* tryGetExceptionObject() const { in tryGetExceptionObject() function
510 std::exception* tryGetExceptionObject() { in tryGetExceptionObject() function
513 std::exception const* tryGetExceptionObject() const { in tryGetExceptionObject() function
523 E* tryGetExceptionObject() { in tryGetExceptionObject() function
527 E const* tryGetExceptionObject() const { in tryGetExceptionObject() function
/dports/devel/folly/folly-2021.12.27.00/folly/
H A DTry.h316 std::exception* tryGetExceptionObject() { in tryGetExceptionObject() function
319 std::exception const* tryGetExceptionObject() const { in tryGetExceptionObject() function
329 Ex* tryGetExceptionObject() { in tryGetExceptionObject() function
333 Ex const* tryGetExceptionObject() const { in tryGetExceptionObject() function
521 std::exception* tryGetExceptionObject() { in tryGetExceptionObject() function
524 std::exception const* tryGetExceptionObject() const { in tryGetExceptionObject() function
534 E* tryGetExceptionObject() { in tryGetExceptionObject() function
538 E const* tryGetExceptionObject() const { in tryGetExceptionObject() function
/dports/devel/folly/folly-2021.12.27.00/folly/io/coro/
H A DTransport.cpp312 (!waitRet.tryGetExceptionObject<OperationCancelled>() || in read()
347 (!waitRet.tryGetExceptionObject<OperationCancelled>() || in read()
/dports/devel/folly/folly-2021.12.27.00/folly/experimental/coro/test/
H A DRetryTest.cpp62 EXPECT_EQ(4, result.tryGetExceptionObject<SomeError>()->value); in TEST()
/dports/devel/folly/folly-2021.12.27.00/folly/futures/
H A DFuture-inl.h806 if (auto e = t.template tryGetExceptionObject<ExceptionType>()) {
1066 if (auto ex = t.template tryGetExceptionObject<
1101 if (auto ex = t.template tryGetExceptionObject<
/dports/devel/folly/folly-2021.12.27.00/folly/futures/test/
H A DSemiFutureTest.cpp682 if (auto err = t.tryGetExceptionObject<std::logic_error>()) { in TEST()
/dports/devel/fbthrift/fbthrift-2021.12.27.00/thrift/lib/cpp2/transport/core/testutil/
H A DTransportCompatibilityTest.cpp592 ftry.tryGetExceptionObject()->what(), in TestRequestResponse_Header_ExpectedException()