HomeSort by relevance Sort by last modified time
    Searched defs:self (Results 1 - 25 of 206) sorted by null

1 2 3 4 5 6 7 8 9

  /dalvik/vm/mterp/c/
OP_MOVE_EXCEPTION.cpp 4 assert(self->exception != NULL);
5 SET_REGISTER(vdst, (u4)self->exception);
6 dvmClearException(self); variable
  /dalvik/vm/mterp/cstubs/
enddefs.cpp 8 #undef self macro
  /device/generic/goldfish/opengl/tests/gles_android_wrapper/
ApiInitializer.h 28 ApiInitializer *self = (ApiInitializer *)userData; local
29 return self->getProc(name);
  /external/linux-tools-perf/util/ui/
progress.c 12 struct ui_progress *self = malloc(sizeof(*self)); local
14 if (self != NULL) {
18 return self;
22 self->form = newtForm(NULL, NULL, 0);
23 if (self->form == NULL)
25 self->scale = newtScale(0, 0, cols, total);
26 if (self->scale == NULL)
28 newtFormAddComponent(self->form, self->scale)
    [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
  /device/generic/goldfish/opengl/shared/OpenglOsUtils/
osThreadUnix.cpp 82 Thread *self = (Thread *)p_arg; local
83 int ret = self->Main();
85 pthread_mutex_lock(&self->m_lock);
86 self->m_isRunning = false;
87 self->m_exitStatus = ret;
88 pthread_mutex_unlock(&self->m_lock);
osThreadWin.cpp 95 Thread *self = (Thread *)p_arg; local
96 int ret = self->Main();
97 self->m_isRunning = false;
  /external/checkpolicy/
checkpolicy.h 10 int self; member in struct:te_assert
  /external/chromium/chrome/browser/chromeos/cros/
brightness_library.cc 42 BrightnessLibraryImpl* self = static_cast<BrightnessLibraryImpl*>(object); local
43 self->OnBrightnessChanged(brightness_level, user_initiated);
  /external/linux-tools-perf/util/
pstack.c 26 struct pstack *self = zalloc((sizeof(*self) + local
28 if (self != NULL)
29 self->max_nr_entries = max_nr_entries;
30 return self;
33 void pstack__delete(struct pstack *self)
35 free(self);
38 bool pstack__empty(const struct pstack *self)
40 return self->top == 0;
43 void pstack__remove(struct pstack *self, void *key
    [all...]
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->comm = malloc(32);
18 if (self->comm)
19 snprintf(self->comm, 32, ":%d", self->pid);
22 return self;
    [all...]
  /external/mockwebserver/src/main/java/com/google/mockwebserver/
MockStreamResponse.java 64 protected MockStreamResponse self() { method in class:MockStreamResponse
  /sdk/emulator/opengl/shared/OpenglOsUtils/
osThreadUnix.cpp 82 Thread *self = (Thread *)p_arg; local
83 int ret = self->Main();
85 pthread_mutex_lock(&self->m_lock);
86 self->m_isRunning = false;
87 self->m_exitStatus = ret;
88 pthread_mutex_unlock(&self->m_lock);
osThreadWin.cpp 95 Thread *self = (Thread *)p_arg; local
96 int ret = self->Main();
97 self->m_isRunning = false;
  /system/extras/tests/bionic/libc/common/
test_pthread_getcpuclockid.c 41 pthread_t self = pthread_self(); local
48 e = pthread_getcpuclockid( self, &clock );
50 fprintf(stderr, "pthread_getcpuclockid(%08lx,) returned error %d: %s\n", self, e, strerror(e));
60 fprintf(stderr, "thread %08lx: clock_gettime() returned %g nsecs\n", self, ts.tv_sec*1e9 + ts.tv_nsec);
  /external/webkit/Source/WebCore/inspector/front-end/
ProfileView.js 38 var columns = { "self": { title: WebInspector.UIString("Self"), width: "72px", sort: "descending", sortable: true },
83 var self = this;
88 self.profile.head = profile.head;
89 self._assignParentsInProfile();
91 self.profileDataGridTree = self.bottomUpProfileDataGridTree;
92 self.profileDataGridTree.sort(WebInspector.ProfileDataGridTree.propertyComparator("selfTime", false));
94 self.refresh();
96 self._updatePercentButton()
    [all...]
  /bionic/libc/arch-x86/bionic/
__set_tls.c 66 void *self; member in struct:_thread_area_head
80 ((struct _thread_area_head *)ptr)->self = ptr;
  /dalvik/vm/native/
InternalNative.cpp 213 Thread* self = dvmThreadSelf(); local
214 Object* oldExcep = dvmGetException(self);
215 dvmAddTrackedAlloc(oldExcep, self); /* don't let this be GCed */
216 dvmClearException(self);
218 dvmReleaseTrackedAlloc(oldExcep, self);
  /external/stressapptest/src/
logger.cc 114 Logger *self = static_cast<Logger*>(ptr); local
115 self->ThreadMain();
  /external/webkit/Tools/TestWebKitAPI/
InjectedBundleController.cpp 75 InjectedBundleController* self = static_cast<InjectedBundleController*>(const_cast<void*>(clientInfo)); local
76 assert(self->m_currentTest);
77 self->m_currentTest->didCreatePage(bundle, page);
82 InjectedBundleController* self = static_cast<InjectedBundleController*>(const_cast<void*>(clientInfo)); local
83 assert(self->m_currentTest);
84 self->m_currentTest->willDestroyPage(bundle, page);
89 InjectedBundleController* self = static_cast<InjectedBundleController*>(const_cast<void*>(clientInfo)); local
90 assert(self->m_currentTest);
91 self->m_currentTest->didInitializePageGroup(bundle, pageGroup);
96 InjectedBundleController* self = static_cast<InjectedBundleController*>(const_cast<void*>(clientInfo)) local
    [all...]
  /frameworks/av/libvideoeditor/vss/stagefrightshells/src/
MediaBufferPuller.cpp 111 MediaBufferPuller* self = (MediaBufferPuller*)arg; local
112 self->acquireThreadFunc();
117 MediaBufferPuller* self = (MediaBufferPuller*)arg; local
118 self->releaseThreadFunc();
  /libcore/dalvik/src/main/java/dalvik/system/profiler/
AsciiHprofWriter.java 73 out.printf("rank self accum count trace method\n");
80 double self = (double)count/(double)total; local
81 accum += self;
85 rank, self*100, accum*100, count, stackTrace.stackTraceId,
  /bionic/tests/
dlfcn_test.cpp 37 void* self = dlopen(NULL, RTLD_NOW); local
38 ASSERT_TRUE(self != NULL);
41 void* sym = dlsym(self, "DlSymTestFunction");
50 ASSERT_EQ(0, dlclose(self));
54 void* self = dlopen("/does/not/exist", RTLD_NOW); local
55 ASSERT_TRUE(self == NULL);
86 void* self = dlopen(NULL, RTLD_NOW); local
87 ASSERT_TRUE(self != NULL);
104 sym = dlsym(self, NULL);
110 sym = dlsym(self, "ThisSymbolDoesNotExist")
119 void* self = dlopen(NULL, RTLD_NOW); local
    [all...]
  /dalvik/vm/
JniInternal.h 41 Thread* self; member in struct:JNIEnvExt
92 INLINE void dvmPopJniLocals(Thread* self, StackSaveArea* saveArea)
94 self->jniLocalRefTable.segmentState.all = saveArea->xtra.localRefCookie;
100 INLINE void dvmSetJniEnvThreadId(JNIEnv* pEnv, Thread* self)
102 ((JNIEnvExt*)pEnv)->envThreadId = self->threadId;
103 ((JNIEnvExt*)pEnv)->self = self;
107 const Method* method, Thread* self);
109 const Method* method, Thread* self);
127 Object* dvmDecodeIndirectRef(Thread* self, jobject jobj)
    [all...]

Completed in 929 milliseconds

1 2 3 4 5 6 7 8 9