Home
last modified time | relevance | path

Searched refs:makeTryWith (Results 1 – 16 of 16) sorted by relevance

/dports/devel/folly/folly-2021.12.27.00/folly/python/
H A Dfibers.h55 auto res = folly::makeTryWith([&] { return function(); }); in bridgeFibers()
/dports/devel/fbthrift/fbthrift-2021.12.27.00/thrift/lib/cpp2/transport/rocket/
H A DPayloadUtils.h137 return folly::makeTryWith( in unpackAsCompressed()
143 return folly::makeTryWith( in unpack()
/dports/devel/folly/folly-2021.12.27.00/folly/test/
H A DTryTest.cpp492 TEST(Try, makeTryWith) { in TEST() argument
495 auto result = makeTryWith(func); in TEST()
505 auto result = makeTryWith(func); in TEST()
512 auto result = makeTryWith(func); in TEST()
519 auto result = makeTryWith(func); in TEST()
/dports/security/keybase/client-v5.7.1/shared/ios/Pods/Folly/folly/
H A DTry.h597 makeTryWith(F&& f);
609 makeTryWith(F&& f);
H A DTry-inl.h223 makeTryWith(F&& f) { in makeTryWith() function
237 makeTryWith(F&& f) { in makeTryWith() function
/dports/devel/folly/folly-2021.12.27.00/folly/futures/
H A DSharedPromise-inl.h81 setTry(makeTryWith(static_cast<F&&>(func))); in setWith()
H A DPromise-inl.h151 setTry(makeTryWith(static_cast<F&&>(func))); in setWith()
H A DFuture-inl.h149 return makeTryWith([&] { return invoke(static_cast<Args&&>(args)...); });
382 state.setTry(std::move(propagateKA), makeTryWith([&] {
595 makeTryWith([&func]() mutable { return static_cast<F&&>(func)(); }));
1103 state.setTry(std::move(ka), makeTryWith([&] {
1164 state.setTry(std::move(ka), makeTryWith([&] {
1243 makeTryWith([&func]() mutable { return static_cast<F&&>(func)(); }));
/dports/devel/folly/folly-2021.12.27.00/folly/fibers/
H A DPromise-inl.h90 setTry(makeTryWith(std::forward<F>(func))); in setWith()
H A DAddTasks-inl.h100 taskId, folly::makeTryWith(std::move(func))); in addTask()
/dports/devel/folly/folly-2021.12.27.00/folly/
H A DTry.h636 makeTryWith(F&& f);
650 makeTryWith(F&& f);
H A DTry-inl.h275 makeTryWith(F&& f) { in makeTryWith() function
282 makeTryWith(F&& f) { in makeTryWith() function
/dports/devel/folly/folly-2021.12.27.00/folly/experimental/channels/
H A DTransform-inl.h200 auto outputGen = folly::makeTryWith([&]() { in processValues()
/dports/devel/fbthrift/fbthrift-2021.12.27.00/thrift/lib/cpp2/async/
H A DAsyncProcessor.cpp130 auto tile = folly::makeTryWith( in createInteraction()
/dports/devel/folly/folly-2021.12.27.00/folly/logging/test/
H A DAsyncFileWriterTest.cpp238 [&]() { promise.setTry(makeTryWith(flushFunction)); }}; in TEST()
/dports/devel/fbthrift/fbthrift-2021.12.27.00/thrift/lib/cpp2/transport/rocket/test/network/
H A DClientServerTestUtil.cpp258 return folly::makeTryWith([&] { in sendRequestStreamSync()