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

1 2 3 45 6 7 8 9

  /frameworks/wilhelm/src/
sles.c 529 void *self = (char *) thiz + x->mOffset; local
532 ((IObject **) self)[1] = thiz;
535 (*init)(self);
539 ((size_t *) self)[0] ^= ~0;
543 state = (exposedMask & 1) && ((NULL == (expose = mi->mExpose)) || (*expose)(self)) ?
  /dalvik/vm/
Init.cpp 1619 Thread* self = gDvm.threadList; local
    [all...]
Sync.cpp 262 static void logContentionEvent(Thread *self, u4 waitMs, u4 samplePercent,
276 if (self->interpSave.curFrame == NULL) {
280 saveArea = SAVEAREA_FROM_FP(self->interpSave.curFrame);
288 fd = open("/proc/self/cmdline", O_RDONLY);
302 /* Emit self thread name string, <= 37 bytes. */
303 std::string selfName = dvmGetThreadName(self);
343 static void lockMonitor(Thread* self, Monitor* mon)
349 if (mon->owner == self) {
354 oldStatus = dvmChangeStatus(self, THREAD_MONITOR);
367 dvmChangeStatus(self, oldStatus)
1167 Thread* self = dvmThreadSelf(); local
1229 Thread *self, *thread; local
    [all...]
Exception.cpp 100 Thread* self);
114 Thread* self = dvmThreadSelf(); local
148 if (dvmCheckException(self))
164 if (!initException(exception, msg, cause, self)) {
170 if (!dvmCheckException(self)) {
175 self->exception = gDvm.internalErrorObj;
181 self->exception = exception;
184 dvmReleaseTrackedAlloc(exception, self);
241 * "self" is dvmThreadSelf(), passed in so we don't have to look it up again.
245 * and leave self->exception intact
490 Thread* self = dvmThreadSelf(); local
566 Thread* self = dvmThreadSelf(); local
1074 Thread* self = dvmThreadSelf(); local
1291 Thread* self = dvmThreadSelf(); local
    [all...]
  /dalvik/vm/alloc/
MarkSweep.cpp 765 Thread *self = dvmThreadSelf(); local
766 assert(self != NULL);
770 dvmCallMethod(self, meth, NULL, &unusedResult, obj);
830 Thread *self = dvmThreadSelf(); local
831 assert(self != NULL);
836 dvmCallMethod(self, meth, NULL, &unused, reference);
  /dalvik/vm/interp/
Jit.cpp 37 void* dvmSelfVerificationShadowSpaceAlloc(Thread* self)
39 self->shadowSpace = (ShadowSpace*) calloc(1, sizeof(ShadowSpace));
40 if (self->shadowSpace == NULL)
43 self->shadowSpace->registerSpaceSize = REG_SPACE;
44 self->shadowSpace->registerSpace =
45 (int*) calloc(self->shadowSpace->registerSpaceSize, sizeof(int));
47 return self->shadowSpace->registerSpace;
51 void dvmSelfVerificationShadowSpaceFree(Thread* self)
53 free(self->shadowSpace->registerSpace);
54 free(self->shadowSpace)
1509 Thread* self = dvmThreadSelf(); local
    [all...]
Interp.cpp 138 Thread* self = dvmThreadSelf(); local
139 ThreadStatus oldStatus = dvmChangeStatus(self, THREAD_VMWAIT);
141 dvmChangeStatus(self, oldStatus);
618 void dvmReportExceptionThrow(Thread* self, Object* exception)
620 const Method* curMethod = self->interpSave.method;
622 if (self->interpBreak.ctl.subMode & kSubModeJitTraceBuild) {
623 dvmJitEndTraceSelect(self, self->interpSave.pc);
625 if (self->interpBreak.ctl.breakFlags & kInterpSingleStep) {
627 self->jitResumeNPC = NULL
1479 Thread* self = dvmThreadSelf(); local
1537 Thread* self = dvmThreadSelf(); local
    [all...]
  /dalvik/vm/mterp/out/
InterpC-armv5te-vfp.cpp 91 # define EXPORT_EXTRA_PC() (self->currentPc2 = pc)
140 self->threadId, (int)(pc - curMethod->insns), debugStrBuf); \
143 self->threadId, debugStrBuf); \
385 extern "C" void dvmMterp_##_target(Thread* self, ## __VA_ARGS__);
389 void dvmMterp_##_target(Thread* self, ## __VA_ARGS__) { \
403 #define retval self->interpSave.retval
404 #define pc self->interpSave.pc
405 #define fp self->interpSave.curFrame
406 #define curMethod self->interpSave.method
407 #define methodClassDex self->interpSave.methodClassDe
1173 #undef self macro
    [all...]
InterpC-armv5te.cpp 91 # define EXPORT_EXTRA_PC() (self->currentPc2 = pc)
140 self->threadId, (int)(pc - curMethod->insns), debugStrBuf); \
143 self->threadId, debugStrBuf); \
385 extern "C" void dvmMterp_##_target(Thread* self, ## __VA_ARGS__);
389 void dvmMterp_##_target(Thread* self, ## __VA_ARGS__) { \
403 #define retval self->interpSave.retval
404 #define pc self->interpSave.pc
405 #define fp self->interpSave.curFrame
406 #define curMethod self->interpSave.method
407 #define methodClassDex self->interpSave.methodClassDe
1173 #undef self macro
    [all...]
InterpC-armv7-a-neon.cpp 91 # define EXPORT_EXTRA_PC() (self->currentPc2 = pc)
140 self->threadId, (int)(pc - curMethod->insns), debugStrBuf); \
143 self->threadId, debugStrBuf); \
385 extern "C" void dvmMterp_##_target(Thread* self, ## __VA_ARGS__);
389 void dvmMterp_##_target(Thread* self, ## __VA_ARGS__) { \
403 #define retval self->interpSave.retval
404 #define pc self->interpSave.pc
405 #define fp self->interpSave.curFrame
406 #define curMethod self->interpSave.method
407 #define methodClassDex self->interpSave.methodClassDe
1173 #undef self macro
    [all...]
InterpC-armv7-a.cpp 91 # define EXPORT_EXTRA_PC() (self->currentPc2 = pc)
140 self->threadId, (int)(pc - curMethod->insns), debugStrBuf); \
143 self->threadId, debugStrBuf); \
385 extern "C" void dvmMterp_##_target(Thread* self, ## __VA_ARGS__);
389 void dvmMterp_##_target(Thread* self, ## __VA_ARGS__) { \
403 #define retval self->interpSave.retval
404 #define pc self->interpSave.pc
405 #define fp self->interpSave.curFrame
406 #define curMethod self->interpSave.method
407 #define methodClassDex self->interpSave.methodClassDe
1173 #undef self macro
    [all...]
InterpC-allstubs.cpp 91 # define EXPORT_EXTRA_PC() (self->currentPc2 = pc)
140 self->threadId, (int)(pc - curMethod->insns), debugStrBuf); \
143 self->threadId, debugStrBuf); \
385 extern "C" void dvmMterp_##_target(Thread* self, ## __VA_ARGS__);
389 void dvmMterp_##_target(Thread* self, ## __VA_ARGS__) { \
403 #define retval self->interpSave.retval
404 #define pc self->interpSave.pc
405 #define fp self->interpSave.curFrame
406 #define curMethod self->interpSave.method
407 #define methodClassDex self->interpSave.methodClassDe
1310 dvmClearException(self); variable
4067 #undef self macro
    [all...]
InterpC-mips.cpp 91 # define EXPORT_EXTRA_PC() (self->currentPc2 = pc)
140 self->threadId, (int)(pc - curMethod->insns), debugStrBuf); \
143 self->threadId, debugStrBuf); \
385 extern "C" void dvmMterp_##_target(Thread* self, ## __VA_ARGS__);
389 void dvmMterp_##_target(Thread* self, ## __VA_ARGS__) { \
403 #define retval self->interpSave.retval
404 #define pc self->interpSave.pc
405 #define fp self->interpSave.curFrame
406 #define curMethod self->interpSave.method
407 #define methodClassDex self->interpSave.methodClassDe
2172 #undef self macro
    [all...]
  /external/libxml2/
triostr.c 1268 trio_string_t *self; local
1270 self = (trio_string_t *)TRIO_MALLOC(sizeof(trio_string_t));
1271 if (self)
1273 self->content = NULL;
1274 self->length = 0;
1275 self->allocated = 0;
1277 return self;
1289 TRIO_ARGS2((self, delta),
1290 trio_string_t *self,
1298 ? ( (self->allocated == 0) ? 1 : self->allocated * 2
1346 trio_string_t *self; local
1693 trio_string_t *self; local
1724 trio_string_t *self; local
    [all...]
  /external/linux-tools-perf/util/
hist.c 20 u16 hists__col_len(struct hists *self, enum hist_column col)
22 return self->col_len[col];
25 void hists__set_col_len(struct hists *self, enum hist_column col, u16 len)
27 self->col_len[col] = len;
30 bool hists__new_col_len(struct hists *self, enum hist_column col, u16 len)
32 if (len > hists__col_len(self, col)) {
33 hists__set_col_len(self, col, len);
39 static void hists__reset_col_len(struct hists *self)
44 hists__set_col_len(self, col, 0);
47 static void hists__calc_col_len(struct hists *self, struct hist_entry *h
101 struct hist_entry *self = malloc(sizeof(*self) + callchain_size); local
    [all...]
  /external/linux-tools-perf/util/ui/browsers/
hists.c 29 static void hist_browser__refresh_dimensions(struct hist_browser *self)
32 self->b.width = 3 + (hists__sort_list_width(self->hists) +
36 static void hist_browser__reset(struct hist_browser *self)
38 self->b.nr_entries = self->hists->nr_entries;
39 hist_browser__refresh_dimensions(self);
40 ui_browser__reset_index(&self->b);
48 static char map_symbol__folded(const struct map_symbol *self)
50 return self->has_children ? tree__folded_sign(self->unfolded) : ' '
758 struct hist_browser *self = zalloc(sizeof(*self)); local
810 struct hists *self = &evsel->hists; local
    [all...]
  /external/llvm/include/llvm/Support/
IntegersSubset.h 187 typedef IntRange<IntType> self; typedef in class:llvm::IntRange
188 typedef std::pair<self, self> SubRes;
191 IntRange(const self &RHS) :
212 bool operator<(const self &RHS) const {
225 bool operator==(const self &RHS) const {
231 bool operator!=(const self &RHS) const {
235 static bool LessBySize(const self &LHS, const self &RHS) {
244 SubRes sub(const self &RHS) const
291 typedef IntegersSubsetGeneric<IntTy> self; typedef in class:llvm::IntegersSubsetGeneric
    [all...]
IntegersSubsetMapping.h 58 typedef IntegersSubsetMapping<SuccessorClass, IntegersSubsetTy, IntTy> self; typedef in class:llvm::IntegersSubsetMapping
121 self *LeftMapping;
122 self *IntersectionMapping;
123 self *RightMapping;
285 bool isOverlapped(self &RHS) {
380 void add(self& RHS) {
384 void add(self& RHS, SuccessorClass *S) {
398 void detachCase(self& NewMapping, SuccessorClass *Succ) {
429 void diff(self *LExclude, self *Intersection, self *RExclude
    [all...]
  /external/openssh/
channels.h 92 int self; /* my own channel identifier */ member in struct:Channel
  /external/oprofile/libpp/
format_output.cpp 953 bool self = false; local
977 // Find any self references and handle
979 self = true;
987 if (self)
1025 string const selfname = symbol_names.demangle(symb->name) + " [self]";
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
IntentTest.java 236 Intent self = intent.setFlags(1234); local
238 assertSame(self, intent);
244 Intent self = intent.addFlags(4); local
245 self.addFlags(8);
247 assertSame(self, intent);
253 Intent self = intent.addCategory("category.name.1"); local
272 assertSame(self, intent);
278 Intent self = intent.addCategory("foo"); local
280 assertSame(self, intent);
  /external/webkit/Source/WebCore/platform/efl/
CursorEfl.cpp 134 static Cursors* self();
184 Cursors* Cursors::self() function in class:WebCore::__anon17820::Cursors
196 return Cursors::self()->PointerCursor;
201 return Cursors::self()->MoveCursor;
206 return Cursors::self()->CrossCursor;
211 return Cursors::self()->HandCursor;
216 return Cursors::self()->IBeamCursor;
221 return Cursors::self()->WaitCursor;
226 return Cursors::self()->HelpCursor;
231 return Cursors::self()->EastResizeCursor
    [all...]
  /external/webkit/Source/WebKit/efl/ewk/
ewk_view.h 272 Evas_Object *self; /**< reference to owner object */ member in struct:_Ewk_View_Smart_Data
  /external/webrtc/src/modules/audio_processing/aec/
echo_cancellation.c 803 aecpc_t* self = handle; local
808 const int kMsPerBlock = (PART_LEN * 1000) / self->splitSampFreq;
811 if (self == NULL) {
815 self->lastError = AEC_NULL_POINTER_ERROR;
819 self->lastError = AEC_NULL_POINTER_ERROR;
822 if (self->initFlag != initCheck) {
823 self->lastError = AEC_UNINITIALIZED_ERROR;
826 if (self->aec->delay_logging_enabled == 0) {
828 self->lastError = AEC_UNSUPPORTED_FUNCTION_ERROR;
834 num_delay_values += self->aec->delay_histogram[i]
    [all...]
  /frameworks/native/libs/binder/
IPCThreadState.cpp 298 IPCThreadState* IPCThreadState::self() function in class:android::IPCThreadState
621 self()->mProcess->expungeHandle(handle, binder);
641 : mProcess(ProcessState::self()),
1106 IPCThreadState* const self = static_cast<IPCThreadState*>(st); local
    [all...]

Completed in 619 milliseconds

1 2 3 45 6 7 8 9