Home
last modified time | relevance | path

Searched +full:- +full:threadsafe (Results 1 – 25 of 184) sorted by relevance

12345678

/third_party/protobuf/objectivec/
DGPBWrappers.pbobjc.m24 #pragma clang diagnostic ignored "-Wdeprecated-declarations"
26 #pragma mark - GPBWrappersRoot
35 #pragma mark - GPBWrappersRoot_FileDescriptor
50 #pragma mark - GPBDoubleValue
61 // This method is threadsafe because it is initially called
95 #pragma mark - GPBFloatValue
106 // This method is threadsafe because it is initially called
140 #pragma mark - GPBInt64Value
151 // This method is threadsafe because it is initially called
185 #pragma mark - GPBUInt64Value
[all …]
DGPBStruct.pbobjc.m26 #pragma clang diagnostic ignored "-Wdeprecated-declarations"
27 #pragma clang diagnostic ignored "-Wdirect-ivar-access"
28 #pragma clang diagnostic ignored "-Wdollar-in-identifier-extension"
30 #pragma mark - Objective C Class declarations
38 #pragma mark - GPBStructRoot
47 #pragma mark - GPBStructRoot_FileDescriptor
62 #pragma mark - Enum GPBNullValue
95 #pragma mark - GPBStruct
106 // This method is threadsafe because it is initially called
140 #pragma mark - GPBValue
[all …]
DGPBType.pbobjc.m30 #pragma clang diagnostic ignored "-Wdeprecated-declarations"
31 #pragma clang diagnostic ignored "-Wdollar-in-identifier-extension"
33 #pragma mark - Objective C Class declarations
43 #pragma mark - GPBTypeRoot
52 #pragma mark - GPBTypeRoot_FileDescriptor
67 #pragma mark - Enum GPBSyntax
102 #pragma mark - GPBType
123 // This method is threadsafe because it is initially called
214 #pragma mark - GPBField
242 // This method is threadsafe because it is initially called
[all …]
DGPBApi.pbobjc.m28 #pragma clang diagnostic ignored "-Wdeprecated-declarations"
29 #pragma clang diagnostic ignored "-Wdollar-in-identifier-extension"
31 #pragma mark - Objective C Class declarations
40 #pragma mark - GPBApiRoot
49 #pragma mark - GPBApiRoot_FileDescriptor
64 #pragma mark - GPBApi
87 // This method is threadsafe because it is initially called
187 #pragma mark - GPBMethod
208 // This method is threadsafe because it is initially called
313 #pragma mark - GPBMixin
[all …]
/third_party/libphonenumber/migrator/migrator-servlet/src/main/webapp/WEB-INF/
Dappengine-web.xml1 <?xml version="1.0" encoding="utf-8"?>
2 <appengine-web-app xmlns="http://appengine.google.com/ns/1.0">
4 <threadsafe>true</threadsafe>
5 <system-properties>
6 <property name="java.util.logging.config.file" value="WEB-INF/logging.properties"/>
7 </system-properties>
8 </appengine-web-app>
/third_party/libphonenumber/java/demo/src/main/webapp/WEB-INF/
Dappengine-web.xml1 <?xml version="1.0" encoding="utf-8"?>
2 <appengine-web-app xmlns="http://appengine.google.com/ns/1.0">
3 <application>libphonenumber-hrd</application>
6 <threadsafe>true</threadsafe>
8 <!-- Configure java.util.logging -->
9 <system-properties>
10 <property name="java.util.logging.config.file" value="WEB-INF/logging.properties"/>
11 </system-properties>
12 </appengine-web-app>
/third_party/littlefs/.github/workflows/
Drelease.yml10 runs-on: ubuntu-18.04
13 # - tests passed?
14 # - we are the most recent commit on master?
19 - uses: actions/checkout@v2
26 fetch-depth: 0
29 - uses: dawidd6/action-download-artifact@v2
30 continue-on-error: true
37 - name: find-version
40 LFS_VERSION="$(grep -o '^#define LFS_VERSION .*$' lfs.h \
47 ( git describe --tags --abbrev=0 \
[all …]
/third_party/rust/crates/nix/src/
Denv.rs10 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { in fmt()
17 /// Clear the environment of all name-value pairs.
26 /// removes them one-by-one.
30 /// This function is not threadsafe and can cause undefined behavior in
33 /// function is a case of an "inherently unsafe non-threadsafe API" dealing with
41 pub unsafe fn clearenv() -> std::result::Result<(), ClearEnvError> { in clearenv()
Dpty.rs1 //! Create master and slave virtual pseudo-terminals (PTYs)
48 /// so that when it's consumed or goes out of scope, it's automatically cleaned-up.
53 fn as_raw_fd(&self) -> RawFd { in as_raw_fd()
59 fn into_raw_fd(self) -> RawFd { in into_raw_fd()
72 // invalid file descriptor. That frequently indicates a double-close in drop()
83 fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> { in read()
89 fn write(&mut self, buf: &[u8]) -> io::Result<usize> { in write()
92 fn flush(&mut self) -> io::Result<()> { in flush()
98 fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> { in read()
104 fn write(&mut self, buf: &[u8]) -> io::Result<usize> { in write()
[all …]
/third_party/libwebsockets/include/libwebsockets/
Dlws-smd.h4 * Copyright (C) 2010 - 2020 Andy Green <andy@warmcat.com>
37 * Well-known device classes
52 * Something happened on the network, eg, link-up or DHCP, or captive
65 * lws_smd_msg_alloc() - allocate a message of length len
82 * This is useful if you have a message you know the length of. For text-based
89 * lws_smd_msg_free() - abandon a previously allocated message before sending
91 * \param payload: pointer the previously-allocated message payload
93 * Destroys a previously-allocated opaque message object and the requested
103 * lws_smd_msg_send() - queue a previously allocated message
110 * This is threadsafe to call from a non-service thread.
[all …]
Dlws-system.h2 * libwebsockets - small server side websockets and web server implementation
4 * Copyright (C) 2010 - 2021 Andy Green <andy@warmcat.com>
57 /* opaque generic blob whose content may be on-the-heap or pointed-to
114 * time, good for non-https tests... if
145 /* Captive Portal Detect -related */
173 * If \p get is non-NULL, look for the first listed item on the pt whose
177 * It's done like this so (*attach) can perform system-specific
179 * same so it is thread-safe. A non-threadsafe helper
181 * system-specific locking.
212 * lws_system_get_state_manager() - return the state mgr object for system state
[all …]
/third_party/node/src/
Dnode_threadsafe_cow.h14 // Copy-on-write utility. Not threadsafe, i.e. there is no synchronization
32 const T* operator->() const { return read(); }
38 // Threadsafe copy-on-write utility. Consumers need to use the Read and
74 const T* operator->() const;
86 T* operator->();
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DIntrusiveRefCntPtr.h1 //==- llvm/ADT/IntrusiveRefCntPtr.h - Smart Refcounting Pointer --*- C++ -*-==//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
13 // reference count. (ThreadSafe)RefCountedBase is a mixin class that adds a
15 // that inherits from (ThreadSafe)RefCountedBase deletes itself when its
31 // // refcount. After a move, the moved-from pointer is null.
49 // - inherits from (ThreadSafe)RefCountedBase,
50 // - has Retain() and Release() methods, or
51 // - specializes IntrusiveRefCntPtrInfo.
53 //===----------------------------------------------------------------------===//
[all …]
/third_party/libwebsockets/lib/system/smd/
DREADME.md10 message-passing, but the lws apis operate the same across any platforms
17 ![SMD message](/doc-assets/smd-message.png)
20 in a linked-list, and delivered to all other registered participants for that
28 ![SMD message](/doc-assets/smd-single-process.png)
39 ![SMD message](/doc-assets/smd-proxy.png)
41 Registering as a participant and sending messages are threadsafe APIs.
55 not at distribution-time but at message allocation-time, so no heap or cpu is
61 Various well-known high level classes are defined but also a bit index
69 indicates they want it, including the sender. The send apis are threadsafe.
71 Locally-delivered message delivery callbacks occur from lws event loop thread
[all …]
/third_party/skia/src/core/
DSkMessageBus.h4 * Use of this source code is governed by a BSD-style license that can be
42 // SkShouldPostMessageToBus() for each inbox. Threadsafe.
52 // Overwrite out with all the messages we've received since the last call. Threadsafe.
84 // ----------------------- Implementation of SkMessageBus::Inbox -----------------------
91 SkAutoMutexExclusive lock(bus->fInboxesMutex);
92 bus->fInboxes.push_back(this);
99 SkAutoMutexExclusive lock(bus->fInboxesMutex);
101 for (int i = 0; i < bus->fInboxes.count(); i++) {
102 if (this == bus->fInboxes[i]) {
103 bus->fInboxes.removeShuffle(i);
[all …]
/third_party/googletest/googletest/test/
Dgoogletest-death-test-test.cc33 #include "gtest/gtest-death-test.h"
35 #include "gtest/internal/gtest-filepath.h"
59 #include "gtest/gtest-spi.h"
60 #include "src/gtest-internal-inl.h"
84 old_factory_ = unit_test_impl_->death_test_factory_.release(); in ReplaceDeathTestFactory()
85 unit_test_impl_->death_test_factory_.reset(new_factory); in ReplaceDeathTestFactory()
89 unit_test_impl_->death_test_factory_.release(); in ~ReplaceDeathTestFactory()
90 unit_test_impl_->death_test_factory_.reset(old_factory_); in ~ReplaceDeathTestFactory()
113 // will invoke user-defined exit-hooks, which may do dangerous in DieWithMessage()
165 // A non-void function that's expected to die.
[all …]
/third_party/googletest/googletest/src/
Dgtest-death-test.cc33 #include "gtest/gtest-death-test.h"
39 #include "gtest/internal/gtest-port.h"
84 #include "gtest/gtest-message.h"
85 #include "gtest/internal/gtest-string.h"
86 #include "src/gtest-internal-inl.h"
94 // This is defined in internal/gtest-port.h as "fast", but can be overridden by
95 // a definition in internal/custom/gtest-port.h. The recommended value, which is
96 // used internally at Google, is "threadsafe".
106 "\"threadsafe\" (child process re-executes the test binary "
129 "current process is a sub-process launched for running a thread-safe "
[all …]
/third_party/mesa3d/src/gtest/src/
Dgtest-death-test.cc33 #include "gtest/gtest-death-test.h"
37 #include "gtest/internal/gtest-port.h"
83 #include "gtest/gtest-message.h"
84 #include "gtest/internal/gtest-string.h"
85 #include "src/gtest-internal-inl.h"
93 // This is defined in internal/gtest-port.h as "fast", but can be overridden by
94 // a definition in internal/custom/gtest-port.h. The recommended value, which is
95 // used internally at Google, is "threadsafe".
102 "\"threadsafe\" (child process re-executes the test binary "
126 "current process is a sub-process launched for running a thread-safe "
[all …]
/third_party/node/deps/googletest/src/
Dgtest-death-test.cc33 #include "gtest/gtest-death-test.h"
43 #include "gtest/internal/gtest-port.h"
88 #include "gtest/gtest-message.h"
89 #include "gtest/internal/gtest-string.h"
90 #include "src/gtest-internal-inl.h"
98 // This is defined in internal/gtest-port.h as "fast", but can be overridden by
99 // a definition in internal/custom/gtest-port.h. The recommended value, which is
100 // used internally at Google, is "threadsafe".
110 "\"threadsafe\" (child process re-executes the test binary "
133 "current process is a sub-process launched for running a thread-safe "
[all …]
/third_party/curl/tests/data/
Dtest30265 thread-safe
11 # Server-side
16 # Client-side
21 threadsafe
22 threaded-resolver
28 curl_global_init thread-safety
/third_party/libwebsockets/minimal-examples/ws-client/minimal-ws-client-tx/
DREADME.md3 This demonstrates a ws "publisher" to go with the minimal-ws-broker example.
6 via a local ringbuffer. Locking is provided to make ringbuffer access threadsafe.
8 When a nailed-up client connection to the broker is established, the
20 This example connects to ws-server/minimal-ws-broker, so you need to build and run
24 $ ./lws-minimal-ws-client-tx
26 [2018/03/16 16:04:33:5774] USER: Run minimal-ws-broker and browse to that
27 [2018/03/16 16:04:33:5774] NOTICE: Creating Vhost 'default' port -1, 1 protocols, IPv6 off
/third_party/ltp/include/
Dparse_vdso.h1 // SPDX-License-Identifier: GPL-2.0-or-later
27 * vdso_sym is threadsafe; the init functions are not.
/third_party/skia/src/gpu/
DGrNonAtomicRef.h4 * Use of this source code is governed by a BSD-style license that can be
16 * A simple non-atomic ref used in the GrBackendApi when we don't want to pay for the overhead of a
17 * threadsafe ref counted object
28 fRefCnt = -10; in ~GrNonAtomicRef()
34 // We allow this getter because this type is not thread-safe, meaning only one thread should
46 --fRefCnt; in unref()
/third_party/skia/src/lazy/
DSkDiscardableMemoryPool.h4 * Use of this source code is governed by a BSD-style license that can be
23 * An implementation of Discardable Memory that manages a fixed-size
26 * can exceed the memory-use budget.
49 * This non-global pool can be used for unit tests to verify that
56 * Returns (and creates if needed) a threadsafe global
/third_party/node/deps/v8/src/objects/
Dstring-table.cc2 // Use of this source code is governed by a BSD-style license that can be
5 #include "src/objects/string-table.h"
11 #include "src/common/assert-scope.h"
13 #include "src/common/ptr-compr-inl.h"
14 #include "src/execution/isolate-utils-inl.h"
16 #include "src/objects/internal-index.h"
17 #include "src/objects/object-list-macros.h"
18 #include "src/objects/slots-inl.h"
20 #include "src/objects/string-inl.h"
21 #include "src/objects/string-table-inl.h"
[all …]

12345678