HomeSort by relevance Sort by last modified time
    Searched defs:detached (Results 1 - 23 of 23) sorted by null

  /hardware/samsung_slsi/exynos5/mobicore/daemon/Common/
Connection.h 53 bool detached; /**< Connection state */ member in class:Connection
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8CustomElementLifecycleCallbacks.cpp 50 V(detached, Detached) \
53 PassRefPtr<V8CustomElementLifecycleCallbacks> V8CustomElementLifecycleCallbacks::create(ScriptState* scriptState, v8::Handle<v8::Object> prototype, v8::Handle<v8::Function> created, v8::Handle<v8::Function> attached, v8::Handle<v8::Function> detached, v8::Handle<v8::Function> attributeChanged)
66 return adoptRef(new V8CustomElementLifecycleCallbacks(scriptState, prototype, created, attached, detached, attributeChanged));
69 static CustomElementLifecycleCallbacks::CallbackType flagSet(v8::Handle<v8::Function> attached, v8::Handle<v8::Function> detached, v8::Handle<v8::Function> attributeChanged)
77 if (!detached.IsEmpty())
78 flags |= CustomElementLifecycleCallbacks::Detached;
92 V8CustomElementLifecycleCallbacks::V8CustomElementLifecycleCallbacks(ScriptState* scriptState, v8::Handle<v8::Object> prototype, v8::Handle<v8::Function> created, v8::Handle<v8::Function> attached, v8::Handle<v8::Function> detached, v8::Handle<v8::Function> attributeChanged)
93 : CustomElementLifecycleCallbacks(flagSet(attached, detached, attributeChanged))
100 , m_detached(scriptState->isolate(), detached)
198 void V8CustomElementLifecycleCallbacks::detached(Element* element) function in class:WebCore::V8CustomElementLifecycleCallbacks
    [all...]
CustomElementConstructorBuilder.cpp 165 v8::Handle<v8::Function> detached = retrieveCallback(isolate, "detachedCallback"); local
168 m_callbacks = V8CustomElementLifecycleCallbacks::create(m_scriptState.get(), m_prototype, created, attached, detached, attributeChanged);
  /external/chromium_org/third_party/libusb/src/libusb/os/
linux_udev.c 198 static int udev_device_info(struct libusb_context *ctx, int detached,
213 return linux_get_device_address(ctx, detached, busnum, devaddr,
222 int detached; local
231 detached = !strncmp(udev_action, "remove", 6);
233 r = udev_device_info(NULL, detached, udev_dev, &busnum, &devaddr, &sys_name);
242 } else if (detached) {
linux_netlink.c 196 static int linux_netlink_parse(char *buffer, size_t len, int *detached, const char **sys_name,
204 *detached = 0;
212 *detached = 1;
272 int detached, r; local
286 r = linux_netlink_parse(buffer, len, &detached, &sys_name,
292 busnum, devaddr, sys_name, detached ? "yes" : "no");
295 if (detached)
  /external/chromium_org/third_party/openssl/openssl/crypto/pkcs7/
dec.c 83 BIO *data,*detached=NULL,*p7bio=NULL; local
108 detached=BIO_new(BIO_s_file());
109 if (!BIO_read_filename(detached,argv[1]))
151 /* We cannot support detached encryption */
152 p7bio=PKCS7_dataDecode(p7,pkey,detached,x509);
verify.c 80 BIO *data,*detached=NULL,*p7bio=NULL; local
114 detached=BIO_new(BIO_s_file());
115 if (!BIO_read_filename(detached,argv[1]))
146 if ((PKCS7_get_detached(p7) || detached))
148 if (detached == NULL)
154 p7bio=PKCS7_dataInit(p7,detached);
pkcs7.h 187 int detached; member in struct:pkcs7_st
  /external/compiler-rt/lib/lsan/
lsan_interceptors.cc 249 int detached = 0; local
250 pthread_attr_getdetachstate(attr, &detached);
257 int tid = ThreadCreate(GetCurrentThread(), *(uptr *)th, detached);
  /external/openssl/crypto/pkcs7/
dec.c 83 BIO *data,*detached=NULL,*p7bio=NULL; local
108 detached=BIO_new(BIO_s_file());
109 if (!BIO_read_filename(detached,argv[1]))
151 /* We cannot support detached encryption */
152 p7bio=PKCS7_dataDecode(p7,pkey,detached,x509);
verify.c 80 BIO *data,*detached=NULL,*p7bio=NULL; local
114 detached=BIO_new(BIO_s_file());
115 if (!BIO_read_filename(detached,argv[1]))
146 if ((PKCS7_get_detached(p7) || detached))
148 if (detached == NULL)
154 p7bio=PKCS7_dataInit(p7,detached);
pkcs7.h 187 int detached; member in struct:pkcs7_st
  /hardware/samsung_slsi/exynos5/mobicore/daemon/Daemon/Server/
NetlinkServer.cpp 144 // Only handle connections which have not been detached
145 if (connection->detached == false) {
160 connection->detached == false) {
172 connection->detached = true;
187 if (i->second->detached == false) {
249 bool detached = connection->detached; local
260 // Remove connection from list only if detached, the detached
262 if (detached == false)
    [all...]
  /external/chromium_org/chrome/browser/ui/views/tabs/
tab.h 60 // Used to mark the tab as having been detached. Once this has happened, the
63 bool detached() const { return detached_; } function in class:Tab
312 // True if the tab has been detached.
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_thread_registry.h 47 bool detached; member in class:__sanitizer::ThreadContextBase
94 u32 CreateThread(uptr user_id, bool detached, u32 parent_tid, void *arg);
  /external/compiler-rt/lib/asan/
asan_interceptors.cc 181 int detached = 0; local
183 REAL(pthread_attr_getdetachstate)(attr, &detached);
188 asanThreadRegistry().CreateThread(*(uptr*)t, detached, current_tid, &args);
722 bool detached = false; // FIXME: how can we determine it on Windows? local
723 asanThreadRegistry().CreateThread(*(uptr*)t, detached, current_tid, &args);
  /external/chromium_org/chrome/browser/ui/tabs/
tab_strip_model_unittest.cc 539 WebContents* detached = tabstrip.DetachWebContentsAt(2); local
541 tabstrip.AppendWebContents(detached, true);
543 State s1(detached, 2, MockTabStripModelObserver::DETACH);
545 State s2(detached, ui::ListSelectionModel::kUnselectedIndex,
556 State s5(detached, 2, MockTabStripModelObserver::INSERT);
561 State s7(detached, 2, MockTabStripModelObserver::ACTIVATE);
565 State s8(detached, 2, MockTabStripModelObserver::SELECT);
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkPictureFlat.h 512 SkFlatData* detached = this->detachScratch(); local
513 fHash.add(detached);
514 *fIndexedData.append() = detached;
516 return detached;
541 SkFlatData* detached = (SkFlatData*)fController->allocThrow(fScratch.bytesWritten()); local
546 memcpy(detached, scratch, fScratch.bytesWritten());
548 // We can now reuse fScratch, and detached will live until fController dies.
549 return detached;
  /external/skia/src/core/
SkPictureFlat.h 512 SkFlatData* detached = this->detachScratch(); local
513 fHash.add(detached);
514 *fIndexedData.append() = detached;
516 return detached;
541 SkFlatData* detached = (SkFlatData*)fController->allocThrow(fScratch.bytesWritten()); local
546 memcpy(detached, scratch, fScratch.bytesWritten());
548 // We can now reuse fScratch, and detached will live until fController dies.
549 return detached;
  /external/chromium_org/third_party/openssl/openssl/include/openssl/
pkcs7.h 187 int detached; member in struct:pkcs7_st
  /external/compiler-rt/lib/tsan/rtl/
tsan_interceptors.cc 864 int detached = 0; local
865 REAL(pthread_attr_getdetachstate)(attr, &detached);
881 int tid = ThreadCreate(thr, pc, *(uptr*)th, detached);
    [all...]
  /external/openssl/include/openssl/
pkcs7.h 187 int detached; member in struct:pkcs7_st
  /external/ppp/pppd/
main.c 148 int detached; /* have detached from terminal */ variable
800 if (detached)
823 detached = 1;
    [all...]

Completed in 1107 milliseconds