Searched refs:scoper (Results 1 – 11 of 11) sorted by relevance
127 for (final Scoper scoper : Scoper.values()) { in suite()136 scoper.configure(abb); in suite()139 .scoper(scoper) in suite()149 scoper.configure(sbb); in suite()152 .scoper(scoper) in suite()162 scoper.configure(sbb); in suite()165 .scoper(scoper) in suite()175 scoper.configure(sbb); in suite()178 .scoper(scoper) in suite()189 scoper.configure(sbb); in suite()[all …]
12 void OnWatcherSignaled(std::unique_ptr<MessagePipeScoperBase> scoper, in OnWatcherSignaled() argument15 DCHECK(scoper); in OnWatcherSignaled()32 std::unique_ptr<MessagePipeScoperBase> scoper) { in StartWatchingPipe() argument33 auto* unowned_scoper = scoper.get(); in StartWatchingPipe()42 base::BindRepeating(&OnWatcherSignaled, base::Passed(&scoper))); in StartWatchingPipe()
27 static void StartWatchingPipe(std::unique_ptr<MessagePipeScoperBase> scoper);
37 dereference the scoper and make calls directly on the underlying handle type.143 And finally the library also provides a scoper for mapping the shared buffer's
17 explicit PassedWrapper(T&& scoper) {} in PassedWrapper() argument25 internal::PassedWrapper<T> Passed(T&& scoper) { in Passed() argument26 return internal::PassedWrapper<T>(std::move(scoper)); in Passed()30 internal::PassedWrapper<T> Passed(T* scoper) { in Passed() argument31 return internal::PassedWrapper<T>(std::move(*scoper)); in Passed()
127 RequestScoper scoper; in testTransferNonHttpRequest_closeable() field in TransferRequestIntegrationTest.Data136 data.scoper = ServletScopes.transferRequest(); in testTransferNonHttpRequest_closeable()145 RequestScoper.CloseableScope scope = data.scoper.open(); in testTransferNonHttpRequest_closeable()183 final RequestScoper scoper = ServletScopes.transferRequest(); in testTransferNonHttpRequest_concurrentUseBlocks_closeable()191 RequestScoper.CloseableScope scope = scoper.open(); in testTransferNonHttpRequest_concurrentUseBlocks_closeable()
336 bssl::UniquePtr<uint8_t> scoper(buf); in TEST() local378 bssl::UniquePtr<uint8_t> scoper(out_buf); in TEST() local410 bssl::UniquePtr<uint8_t> scoper(buf); in TEST() local445 bssl::UniquePtr<uint8_t> scoper(buf); in TEST() local480 bssl::UniquePtr<uint8_t> scoper(buf); in TEST() local523 bssl::UniquePtr<uint8_t> scoper(buf); in TEST() local532 scoper.reset(buf); in TEST()542 scoper.reset(buf); in TEST()553 scoper.reset(buf); in TEST()569 bssl::UniquePtr<uint8_t> scoper(storage); in ExpectBerConvert() local[all …]
433 static inline internal::PassedWrapper<T> Passed(T&& scoper) {434 return internal::PassedWrapper<T>(std::move(scoper));437 static inline internal::PassedWrapper<T> Passed(T* scoper) {438 return internal::PassedWrapper<T>(std::move(*scoper));
152 explicit PassedWrapper(T&& scoper) in PassedWrapper() argument153 : is_valid_(true), scoper_(std::move(scoper)) {} in PassedWrapper()
253 T PassThru(T scoper) { in PassThru() argument254 return scoper; in PassThru()
277 explicit PassThru(ScopedVector<T> scoper) in PassThru() argument278 : scoper_(scoper.DEPRECATED_Pass()) {} in PassThru()