HomeSort by relevance Sort by last modified time
    Searched full:atomicbool (Results 1 - 16 of 16) sorted by null

  /external/clang/test/SemaObjC/
property-atomic-bool.m 3 // CHECK: TypedefDecl {{.*}} referenced AtomicBool '_Atomic(_Bool)'
12 // CHECK: ObjCPropertyDecl {{.*}} p 'AtomicBool':'_Atomic(_Bool)' {{.*}} nonatomic
23 // CHECK: ObjCIvarDecl {{.*}} p 'AtomicBool':'_Atomic(_Bool)' protected
24 // CHECK: ObjCPropertyDecl {{.*}} p 'AtomicBool':'_Atomic(_Bool)'
29 typedef _Atomic(_Bool) AtomicBool;
38 @property(nonatomic) AtomicBool p;
54 AtomicBool p;
56 @property AtomicBool p;
  /prebuilts/go/darwin-x86/src/net/
fd_plan9.go 15 type atomicBool int32
17 func (b *atomicBool) isSet() bool { return atomic.LoadInt32((*int32)(b)) != 0 }
18 func (b *atomicBool) setFalse() { atomic.StoreInt32((*int32)(b), 0) }
19 func (b *atomicBool) setTrue() { atomic.StoreInt32((*int32)(b), 1) }
39 rtimedout atomicBool // set true when read deadline has been reached
40 wtimedout atomicBool // set true when write deadline has been reached
  /prebuilts/go/linux-x86/src/net/
fd_plan9.go 15 type atomicBool int32
17 func (b *atomicBool) isSet() bool { return atomic.LoadInt32((*int32)(b)) != 0 }
18 func (b *atomicBool) setFalse() { atomic.StoreInt32((*int32)(b), 0) }
19 func (b *atomicBool) setTrue() { atomic.StoreInt32((*int32)(b), 1) }
39 rtimedout atomicBool // set true when read deadline has been reached
40 wtimedout atomicBool // set true when write deadline has been reached
  /external/webrtc/webrtc/base/
thread_unittest.cc 153 class AtomicBool {
155 explicit AtomicBool(bool value = false) : flag_(value) {}
156 AtomicBool& operator=(bool value) {
177 explicit FunctorB(AtomicBool* flag) : flag_(flag) {}
180 AtomicBool* flag_;
273 AtomicBool called;
415 AtomicBool called;
485 AtomicBool flag1;
486 AtomicBool flag2;
503 AtomicBool flag1
    [all...]
  /prebuilts/go/darwin-x86/pkg/darwin_amd64/net/
http.a 1014  status closeAfterReply%requestBodyLimitHit trailers handlerDone *?atomicBool*? ? isSet?? setTrue?? c dateBuf:" clenBuf"
    [all...]
  /prebuilts/go/darwin-x86/pkg/darwin_amd64_race/net/
http.a 1014  status closeAfterReply%requestBodyLimitHit trailers handlerDone *?atomicBool*? ? isSet?? setTrue?? c dateBuf:" clenBuf"
    [all...]
  /prebuilts/go/linux-x86/pkg/linux_amd64/net/
http.a 1014  status closeAfterReply%requestBodyLimitHit trailers handlerDone *?atomicBool*? ? isSet?? setTrue?? c dateBuf:" clenBuf"
    [all...]
  /prebuilts/go/linux-x86/pkg/linux_amd64_race/net/
http.a 1014  status closeAfterReply%requestBodyLimitHit trailers handlerDone *?atomicBool*? ? isSet?? setTrue?? c dateBuf:" clenBuf"
    [all...]
  /prebuilts/go/darwin-x86/src/net/http/
client.go 317 var timedOut atomicBool
server.go 440 handlerDone atomicBool // set true when the handler exits
490 type atomicBool int32
492 func (b *atomicBool) isSet() bool { return atomic.LoadInt32((*int32)(b)) != 0 }
493 func (b *atomicBool) setTrue() { atomic.StoreInt32((*int32)(b), 1) }
    [all...]
  /prebuilts/go/linux-x86/src/net/http/
client.go 317 var timedOut atomicBool
server.go 440 handlerDone atomicBool // set true when the handler exits
490 type atomicBool int32
492 func (b *atomicBool) isSet() bool { return atomic.LoadInt32((*int32)(b)) != 0 }
493 func (b *atomicBool) setTrue() { atomic.StoreInt32((*int32)(b), 1) }
    [all...]
  /prebuilts/go/darwin-x86/pkg/darwin_amd64/net/http/
httptest.a 1045  statuscloseAfterReply%requestBodyLimitHittrailers handlerDone atomicBool isSet?? setTrue??
    [all...]
  /prebuilts/go/darwin-x86/pkg/darwin_amd64_race/net/http/
httptest.a 1045  statuscloseAfterReply%requestBodyLimitHittrailers handlerDone atomicBool isSet?? setTrue??
    [all...]
  /prebuilts/go/linux-x86/pkg/linux_amd64/net/http/
httptest.a 1045  statuscloseAfterReply%requestBodyLimitHittrailers handlerDone atomicBool isSet?? setTrue??
    [all...]
  /prebuilts/go/linux-x86/pkg/linux_amd64_race/net/http/
httptest.a 1045  statuscloseAfterReply%requestBodyLimitHittrailers handlerDone atomicBool isSet?? setTrue??
    [all...]

Completed in 581 milliseconds