Searched defs:self (Results 1 - 25 of 316) sorted by relevance

1234567891011>>

/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Derrno.c74 pthread_t self; local
77 if ((self = pthread_self ()).p == NULL)
87 result = (int *)(&self.p->exitStatus);
H A Dpthread_self.c62 pthread_t self; local
75 self = sp->ptHandle;
80 * Need to create an implicit 'self' for the currently
83 self = ptw32_new ();
84 sp = (ptw32_thread_t *) self.p;
121 ptw32_threadReusePush (self);
139 return (self);
H A Dpthread_testcancel.c72 pthread_t self = pthread_self (); local
73 ptw32_thread_t * sp = (ptw32_thread_t *) self.p;
H A Dpthread_join.c80 * EDEADLK attempt to join thread with self
86 pthread_t self; local
113 self = pthread_self();
115 if (NULL == self.p)
119 else if (pthread_equal (self, thread))
H A Dpthread_mutex_lock.c98 pthread_t self = pthread_self(); local
106 mx->ownerThread = self;
110 if (pthread_equal (mx->ownerThread, self))
137 mx->ownerThread = self;
160 pthread_t self = pthread_self(); local
198 ptw32_robust_mutex_add(mutex, self);
213 ptw32_robust_mutex_add(mutex, self);
217 if (pthread_equal (mx->ownerThread, self))
259 ptw32_robust_mutex_add(mutex, self);
H A Dpthread_mutex_trylock.c103 pthread_t self; local
114 self = pthread_self();
126 ptw32_robust_mutex_add(mutex, self);
140 ptw32_robust_mutex_add(mutex, self);
H A Dpthread_mutex_unlock.c114 pthread_t self = pthread_self(); local
121 if (pthread_equal (mx->ownerThread, self))
H A Dpthread_setcancelstate.c84 pthread_t self = pthread_self (); local
85 ptw32_thread_t * sp = (ptw32_thread_t *) self.p;
H A Dpthread_setcanceltype.c84 pthread_t self = pthread_self (); local
85 ptw32_thread_t * sp = (ptw32_thread_t *) self.p;
H A Dpthread_delay_np.c88 pthread_t self; local
128 if (NULL == (self = pthread_self ()).p)
133 sp = (ptw32_thread_t *) self.p;
H A Dpthread_setspecific.c68 pthread_t self; local
78 self = pthread_self ();
79 if (self.p == NULL)
98 self = *((pthread_t *) value);
102 self = sp->ptHandle;
110 if (self.p != NULL && key->destructor != NULL && value != NULL)
114 ptw32_thread_t * sp = (ptw32_thread_t *) self.p;
/external/chromium_org/third_party/webrtc/common_audio/vad/
H A Dvad_core_unittest.cc25 VadInstT* self = reinterpret_cast<VadInstT*>(malloc(sizeof(VadInstT))); local
31 EXPECT_EQ(0, WebRtcVad_InitCore(self));
33 EXPECT_EQ(42, self->init_flag);
35 free(self);
39 VadInstT* self = reinterpret_cast<VadInstT*>(malloc(sizeof(VadInstT))); local
44 ASSERT_EQ(0, WebRtcVad_InitCore(self));
47 EXPECT_EQ(-1, WebRtcVad_set_mode_core(self, -1));
48 EXPECT_EQ(-1, WebRtcVad_set_mode_core(self, 1000));
51 EXPECT_EQ(0, WebRtcVad_set_mode_core(self, kModes[j]));
54 free(self);
58 VadInstT* self = reinterpret_cast<VadInstT*>(malloc(sizeof(VadInstT))); local
[all...]
H A Dvad_filterbank_unittest.cc27 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);
H A Dvad_sp_unittest.cc25 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);
/external/chromium_org/content/test/data/workers/
H A Dworker_common.js5 if (!self.postMessage) {
10 self.postMessage = function(msg) {
13 self.onmessage(e);
/external/chromium_org/extensions/renderer/resources/
H A Dstorage_area.js23 var self = this;
25 self[functionName] = function() {
/external/e2fsprogs/contrib/python-uuid/
H A Duuid.c5 static PyObject * _uuid_generate(PyObject *self, PyObject *args) argument
/external/chromium_org/content/browser/service_worker/
H A Dservice_worker_controllee_request_handler.h51 typedef ServiceWorkerControlleeRequestHandler self; typedef in class:content::ServiceWorkerControlleeRequestHandler
/external/javassist/sample/duplicate/
H A DDuplicatedObject.java11 public DuplicatedObject(Object self, Object[] args) { argument
12 super(self, args);
15 backup = null; // self is a backup object.
18 args2[0] = self;
/external/javassist/src/main/javassist/util/proxy/
H A DMethodHandler.java31 * @param self the proxy instance.
46 Object invoke(Object self, Method thisMethod, Method proceed, argument
/external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/python/Perf-Trace-Util/
H A DContext.c28 static PyObject *perf_trace_context_common_pc(PyObject *self, PyObject *args) argument
43 static PyObject *perf_trace_context_common_flags(PyObject *self, argument
59 static PyObject *perf_trace_context_common_lock_depth(PyObject *self, argument
/external/srec/shared/src/
H A Dlstring.c25 ESR_ReturnCode LStringAppend(LString* self, const LCHAR* value) argument
27 if (self == NULL)
32 return self->append(self, value);
35 ESR_ReturnCode LStringToLCHAR(LString* self, LCHAR** result) argument
37 if (self == NULL)
42 return self->toLCHAR(self, result);
45 ESR_ReturnCode LStringReset(LString* self) argument
47 if (self
55 LStringDestroy(LString* self) argument
[all...]
/external/srec/srec/Nametag/src/
H A DNametag.c26 ESR_ReturnCode SR_NametagGetID(const SR_Nametag* self, LCHAR** id) argument
28 if (self == NULL)
33 return self->getID(self, id);
36 ESR_ReturnCode SR_NametagGetValue(const SR_Nametag* self, const char** pvalue, size_t* plen) argument
38 if (self == NULL || pvalue == NULL || plen == NULL)
43 return self->getValue(self, pvalue, plen);
46 ESR_ReturnCode SR_NametagSetID(SR_Nametag* self, const LCHAR* id) argument
48 if (self
56 SR_NametagClone(const SR_Nametag* self, SR_Nametag** result) argument
66 SR_NametagDestroy(SR_Nametag* self) argument
[all...]
/external/checkpolicy/
H A Dcheckpolicy.h10 int self; member in struct:te_assert
/external/chromium_org/chrome/browser/sync_file_system/local/
H A Dsyncable_file_system_operation.h101 typedef SyncableFileSystemOperation self; typedef in class:sync_file_system::SyncableFileSystemOperation

Completed in 5502 milliseconds

1234567891011>>