HomeSort by relevance Sort by last modified time
    Searched refs:lockable (Results 1 - 25 of 43) sorted by null

1 2

  /external/clang/test/Modules/Inputs/thread-safety/
a.h 1 struct __attribute__((lockable)) mutex {
  /external/ltp/testcases/kernel/security/mmc_security/
force_erase.sh 49 if grep -q "unlocked" /sys/bus/mmc/devices/mmc0\:*/lockable; then
65 echo erase > /sys/bus/mmc/devices/mmc0\:*/lockable || \
remove_password.sh 54 echo remove > /sys/bus/mmc/devices/mmc0\:*/lockable || \
  /external/clang/test/Misc/
ast-dump-color.cpp 18 class __attribute__((lockable)) Mutex {
ast-dump-attr.cpp 44 class __attribute__((lockable)) Mutex {
  /external/swiftshader/src/D3D8/
Direct3DSwapChain8.hpp 61 bool lockable; member in class:D3D8::Direct3DSwapChain8
Direct3DVolume8.cpp 26 Direct3DVolume8::Direct3DVolume8(Direct3DDevice8 *device, Direct3DVolumeTexture8 *container, int width, int height, int depth, D3DFORMAT format, D3DPOOL pool, bool lockable, unsigned long usage)
27 : Surface(container->getResource(), width, height, depth, 0, 1, translateFormat(format), lockable, false), container(container), width(width), height(height), depth(depth), format(format), pool(pool), lockable(lockable), usage(usage)
Direct3DSurface8.hpp 32 Direct3DSurface8(Direct3DDevice8 *device, Unknown *container, int width, int height, D3DFORMAT format, D3DPOOL pool, D3DMULTISAMPLE_TYPE multiSample, bool lockable, unsigned long usage);
70 const bool lockable; member in class:D3D8::Direct3DSurface8
Direct3DSurface8.cpp 61 Direct3DSurface8::Direct3DSurface8(Direct3DDevice8 *device, Unknown *container, int width, int height, D3DFORMAT format, D3DPOOL pool, D3DMULTISAMPLE_TYPE multiSample, bool lockable, unsigned long usage)
62 : Surface(getParentResource(container), width, height, 1, 0, sampleCount(multiSample), translateFormat(format), lockable, (usage & D3DUSAGE_RENDERTARGET) == D3DUSAGE_RENDERTARGET || (usage & D3DUSAGE_DEPTHSTENCIL) == D3DUSAGE_DEPTHSTENCIL), device(device), container(container), width(width), height(height), format(format), pool(pool), multiSample(multiSample), lockable(lockable), usage(usage)
Direct3DVolume8.hpp 67 const bool lockable; member in class:D3D8::Direct3DVolume8
Direct3DSwapChain8.cpp 172 lockable = presentParameters->Flags & D3DPRESENTFLAG_LOCKABLE_BACKBUFFER;
180 backBuffer[i] = new Direct3DSurface8(device, this, width, height, presentParameters->BackBufferFormat, D3DPOOL_DEFAULT, presentParameters->MultiSampleType, lockable, D3DUSAGE_RENDERTARGET);
  /external/clang/test/SemaCXX/
warn-thread-safety-verbose.cpp 3 #define LOCKABLE __attribute__ ((lockable))
27 class __attribute__((lockable)) Mutex {
warn-thread-safety-negative.cpp 6 #define LOCKABLE __attribute__ ((lockable))
30 class __attribute__((lockable)) Mutex {
  /external/libchrome/base/
thread_annotations.h 124 // LOCKABLE
126 // Documents if a class/type is a lockable type (such as the `Mutex` class).
127 #define LOCKABLE THREAD_ANNOTATION_ATTRIBUTE__(lockable)
  /external/swiftshader/src/D3D9/
Direct3DSwapChain9.hpp 67 bool lockable; member in class:D3D9::Direct3DSwapChain9
Direct3DVolume9.hpp 68 const bool lockable; member in class:D3D9::Direct3DVolume9
Direct3DVolume9.cpp 34 : device(device), Surface(container->getResource(), width, height, depth, 0, 1, translateFormat(format), isLockable(pool, usage), false), container(container), width(width), height(height), depth(depth), format(format), pool(pool), lockable(isLockable(pool, usage)), usage(usage)
174 if(!lockable)
Direct3DSurface9.hpp 77 const bool lockable; member in class:D3D9::Direct3DSurface9
  /external/tensorflow/tensorflow/core/platform/default/
thread_annotations.h 105 // Document if a class/type is a lockable type (such as the Mutex class).
106 #define LOCKABLE THREAD_ANNOTATION_ATTRIBUTE__(lockable)
  /external/webrtc/webrtc/base/
thread_annotations.h 73 // Document if a class/type is a lockable type (such as the Mutex class).
74 #define LOCKABLE THREAD_ANNOTATION_ATTRIBUTE__(lockable)
76 // Document if a class is a scoped lockable type (such as the MutexLock class).
  /build/soong/ui/build/
proc_sync.go 47 type lockable interface { type
53 var _ lockable = (*fileLock)(nil)
69 func lockSynchronous(lock lockable, waiter waiter, logger logger.Logger) (err error) {
  /external/swiftshader/src/OpenGL/common/
Image.hpp 127 Image(GLsizei width, GLsizei height, GLint internalformat, int multiSampleDepth, bool lockable)
128 : sw::Surface(nullptr, width, height, 1, 0, multiSampleDepth, gl::SelectInternalFormat(internalformat), lockable, true),
146 static Image *create(GLsizei width, GLsizei height, GLint internalformat, int multiSampleDepth, bool lockable);
  /external/clang/test/PCH/
thread-safety-attrs.cpp 11 #define LOCKABLE __attribute__ ((lockable))
33 class __attribute__((lockable)) Mutex {
  /external/swiftshader/src/Device/
Surface.hpp 115 Surface(Resource *texture, int width, int height, int depth, int border, int samples, VkFormat format, bool lockable, bool renderTarget, int pitchP = 0);
119 static Surface *create(Resource *texture, int width, int height, int depth, int border, int samples, VkFormat format, bool lockable, bool renderTarget, int pitchP = 0);
321 const bool lockable; member in class:sw::Surface
  /external/clang/test/Sema/
warn-thread-safety-analysis.c 3 #define LOCKABLE __attribute__ ((lockable))
28 struct LOCKABLE Mutex {};

Completed in 1093 milliseconds

1 2