HomeSort by relevance Sort by last modified time
    Searched defs:self (Results 26 - 50 of 332) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
pthread_mutex_timedlock.c 158 pthread_t self = pthread_self(); local
166 mx->ownerThread = self;
170 if (pthread_equal (mx->ownerThread, self))
194 mx->ownerThread = self;
216 pthread_t self = pthread_self(); local
253 ptw32_robust_mutex_add(mutex, self);
259 pthread_t self = pthread_self(); local
271 ptw32_robust_mutex_add(mutex, self);
275 if (pthread_equal (mx->ownerThread, self))
315 ptw32_robust_mutex_add(mutex, self);
    [all...]
w32_CancelableWait.c 58 pthread_t self; local
66 self = pthread_self();
67 sp = (ptw32_thread_t *) self.p;
create.c 95 pthread_t self; local
137 self = pthread_self();
138 tp->sigmask = ((ptw32_thread_t *)self.p)->sigmask;
174 self = pthread_self ();
176 priority = ((ptw32_thread_t *) self.p)->sched_priority;
pthread_cancel.c 94 * ENOMEM implicit self thread create failed.
100 pthread_t self; local
111 if ((self = pthread_self ()).p == NULL)
117 * For self cancellation we need to ensure that a thread can't
122 cancel_self = pthread_equal (thread, self);
  /external/chromium_org/third_party/webrtc/common_audio/vad/
vad_filterbank_unittest.cc 27 VadInstT* self = reinterpret_cast<VadInstT*>(malloc(sizeof(VadInstT))); local
46 ASSERT_EQ(0, WebRtcVad_InitCore(self));
50 WebRtcVad_CalculateFeatures(self, speech, kFrameLengths[j],
63 ASSERT_EQ(0, WebRtcVad_InitCore(self));
66 EXPECT_EQ(0, WebRtcVad_CalculateFeatures(self, speech, kFrameLengths[j],
81 ASSERT_EQ(0, WebRtcVad_InitCore(self));
82 EXPECT_EQ(0, WebRtcVad_CalculateFeatures(self, speech, kFrameLengths[j],
90 free(self);
vad_sp_unittest.cc 25 VadInstT* self = reinterpret_cast<VadInstT*>(malloc(sizeof(VadInstT))); local
58 ASSERT_EQ(0, WebRtcVad_InitCore(self));
66 EXPECT_EQ(kReferenceMin[i], WebRtcVad_FindMinimum(self, value, j));
67 EXPECT_EQ(kReferenceMin[i + 16], WebRtcVad_FindMinimum(self, 12000, j));
69 self->frame_counter++;
72 free(self);
webrtc_vad.c 26 VadInstT* self = NULL; local
33 self = (VadInstT*) malloc(sizeof(VadInstT));
34 *handle = (VadInst*) self;
36 if (self == NULL) {
42 self->init_flag = 0;
59 VadInstT* self = (VadInstT*) handle; local
64 if (self->init_flag != kInitCheck) {
68 return WebRtcVad_set_mode_core(self, mode);
74 VadInstT* self = (VadInstT*) handle; local
80 if (self->init_flag != kInitCheck)
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
thread.c 12 struct thread *self = zalloc(sizeof(*self)); local
14 if (self != NULL) {
15 map_groups__init(&self->mg);
16 self->pid_ = pid;
17 self->tid = tid;
18 self->ppid = -1;
19 self->comm = malloc(32);
20 if (self->comm)
21 snprintf(self->comm, 32, ":%d", self->tid)
    [all...]
  /hardware/ti/omap3/dspbridge/inc/
list.h 65 struct LST_ELEM *self; member in struct:LST_ELEM
172 * - head.self must be correctly set to &head.
274 * pElem->self = pElem before pElem is passed to this function.
281 * Warning: if pElem->self is not set beforehand, LST_GetHead() will
  /hardware/ti/omap3/dspbridge/libbridge/inc/
list.h 65 struct LST_ELEM *self; member in struct:LST_ELEM
172 * - head.self must be correctly set to &head.
274 * pElem->self = pElem before pElem is passed to this function.
281 * Warning: if pElem->self is not set beforehand, LST_GetHead() will
  /art/compiler/utils/
dedupe_set_test.cc 36 Thread* self = Thread::Current(); local
46 array1 = deduplicator.Add(self, test1);
57 array2 = deduplicator.Add(self, test1);
69 array3 = deduplicator.Add(self, test1);
  /art/runtime/entrypoints/portable/
portable_throw_entrypoints.cc 42 Thread* self = Thread::Current(); local
43 ThrowLocation throw_location = self->GetCurrentLocationForThrow();
53 Thread* self = Thread::Current(); local
54 ThrowLocation throw_location = self->GetCurrentLocationForThrow();
58 self->SetException(throw_location, exception);
62 extern "C" void* art_portable_get_and_clear_exception(Thread* self)
64 DCHECK(self->IsExceptionPending());
66 mirror::Throwable* exception = self->GetException(NULL);
67 self->ClearException();
74 Thread* self = Thread::Current(); // TODO: make an argument local
    [all...]
  /art/runtime/entrypoints/quick/
quick_jni_entrypoints.cc 31 extern uint32_t JniMethodStart(Thread* self) {
32 JNIEnvExt* env = self->GetJniEnv();
36 mirror::ArtMethod* native_method = self->GetManagedStack()->GetTopQuickFrame()->AsMirrorPtr();
39 self->TransitionFromRunnableToSuspended(kNative);
44 extern uint32_t JniMethodStartSynchronized(jobject to_lock, Thread* self) {
45 self->DecodeJObject(to_lock)->MonitorEnter(self);
46 return JniMethodStart(self);
50 static void GoToRunnable(Thread* self) NO_THREAD_SAFETY_ANALYSIS {
51 mirror::ArtMethod* native_method = self->GetManagedStack()->GetTopQuickFrame()->AsMirrorPtr()
59 CheckSuspend(self); variable
    [all...]
  /art/runtime/mirror/
string-inl.h 62 Thread* self = Thread::Current(); local
63 ThrowLocation throw_location = self->GetCurrentLocationForThrow();
64 self->ThrowNewExceptionF(throw_location, "Ljava/lang/StringIndexOutOfBoundsException;",
  /art/runtime/
monitor_pool_test.cc 39 static void VerifyMonitor(Monitor* mon, Thread* self) {
43 EXPECT_EQ(MonitorPool::ComputeMonitorId(mon, self), mon->GetMonitorId());
58 Thread* self = Thread::Current(); local
59 ScopedObjectAccess soa(self);
74 Monitor* mon = MonitorPool::CreateMonitor(self, self, nullptr, static_cast<int32_t>(i));
77 VerifyMonitor(mon, self);
85 VerifyMonitor(mon, self);
87 MonitorPool::ReleaseMonitor(self, mon);
97 Monitor* mon = MonitorPool::CreateMonitor(self, self, nullptr
    [all...]
thread_pool_test.cc 31 void Run(Thread* self) {
33 LOG(INFO) << "Running: " << *self;
62 Thread* self = Thread::Current(); local
67 thread_pool.AddTask(self, new CountTask(&count));
69 thread_pool.StartWorkers(self);
71 thread_pool.Wait(self, true, false);
77 Thread* self = Thread::Current(); local
82 thread_pool.AddTask(self, new CountTask(&count));
88 thread_pool.StartWorkers(self);
90 thread_pool.StopWorkers(self);
133 Thread* self = Thread::Current(); local
    [all...]
  /bionic/libc/bionic/
clone.cpp 70 pthread_internal_t* self = __get_thread(); local
71 pid_t parent_pid = self->invalidate_cached_pid();
81 self->set_cached_pid(parent_pid);
  /external/checkpolicy/
checkpolicy.h 10 int self; member in struct:te_assert
  /external/chromium_org/base/mac/
libdispatch_task_runner.cc 75 LibDispatchTaskRunner* self = static_cast<LibDispatchTaskRunner*>(context); local
76 self->queue_finalized_.Signal();
  /external/chromium_org/chrome/browser/sync_file_system/local/
syncable_file_system_operation.h 99 typedef SyncableFileSystemOperation self; typedef in class:sync_file_system::SyncableFileSystemOperation
  /external/chromium_org/content/common/gpu/
devtools_gpu_instrumentation.cc 41 GpuEventsDispatcher* self = local
43 DCHECK(self->CalledOnValidThread());
45 for (it = self->processors_.begin(); it != self->processors_.end(); ++it) {
  /external/chromium_org/net/data/websocket/
websocket_worker_simple.js 5 if (!self.postMessage) {
9 self.postMessage = function (msg) {
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8GarbageCollected.h 77 T* self = data.GetParameter(); local
78 self->m_handle.clear();
79 delete self;
  /external/chromium_org/third_party/webrtc/common_audio/signal_processing/
real_fft.c 22 struct RealFFT* self = NULL; local
28 self = malloc(sizeof(struct RealFFT));
29 if (self == NULL) {
32 self->order = order;
34 return self;
37 void WebRtcSpl_FreeRealFFTC(struct RealFFT* self) {
38 if (self != NULL) {
39 free(self);
47 int WebRtcSpl_RealForwardFFTC(struct RealFFT* self,
53 int n = 1 << self->order
    [all...]
  /external/libunwind/tests/
test-ptrace-misc.c 36 pid_t self; variable
102 kill (self, SIGUSR1); /* tell test-ptrace to start single-stepping */
104 kill (self, SIGUSR2); /* tell test-ptrace to stop single-stepping */
116 self = getpid ();

Completed in 689 milliseconds

12 3 4 5 6 7 8 91011>>