OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NonThreadSafe
(Results
1 - 6
of
6
) sorted by null
/external/libchrome/base/threading/
non_thread_safe.h
8
// Classes deriving from
NonThreadSafe
may need to suppress MSVC warning 4275:
25
// Do nothing implementation of
NonThreadSafe
, for release mode.
27
// Note: You should almost always use the
NonThreadSafe
class to get
40
//
NonThreadSafe
is a helper class used to help verify that methods of a
48
// class MyClass : public base::
NonThreadSafe
{
57
//
NonThreadSafe
, but does not require inheritance. In general, it is preferable
59
//
NonThreadSafe
. For more details about when to choose one over the other, see
62
typedef NonThreadSafeImpl
NonThreadSafe
;
64
typedef NonThreadSafeDoNothing
NonThreadSafe
;
non_thread_safe_unittest.cc
24
// Simple class to exersice the basics of
NonThreadSafe
.
27
class NonThreadSafeClass : public
NonThreadSafe
{
37
NonThreadSafe
::DetachFromThread();
/external/libchrome/base/message_loop/
message_pump.h
16
class BASE_EXPORT MessagePump : public
NonThreadSafe
{
/external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/util/
AppRTCUtils.java
25
*
NonThreadSafe
is a helper class used to help verify that methods of a
28
public static class
NonThreadSafe
{
31
public
NonThreadSafe
() {
/external/libchrome/base/files/
important_file_writer.h
40
class BASE_EXPORT ImportantFileWriter : public
NonThreadSafe
{
/external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
AppRTCProximitySensor.java
14
import org.appspot.apprtc.util.AppRTCUtils.
NonThreadSafe
;
37
// (e.g. the main thread). We use |
nonThreadSafe
| to ensure that this is
39
private final
NonThreadSafe
nonThreadSafe
= new AppRTCUtils.
NonThreadSafe
();
176
if (!
nonThreadSafe
.calledOnValidThread()) {
Completed in 575 milliseconds