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

12 3 4 5 6 7 8 9

  /dalvik/vm/
SignalCatcher.cpp 79 fd = open("/proc/self/cmdline", O_RDONLY, 0);
256 Thread* self = dvmThreadSelf(); local
262 ALOGV("Signal catcher thread started (threadid=%d)", self->threadId);
275 dvmChangeStatus(self, THREAD_VMWAIT);
301 /* set our status to RUNNING, self-suspending if GC in progress */
302 dvmChangeStatus(self, THREAD_RUNNING);
  /dalvik/vm/native/
dalvik_system_VMStack.cpp 137 Thread* self = dvmThreadSelf(); local
143 dvmLockThreadList(self);
164 if (thread != self)
167 if (thread != self)
java_lang_VMThread.cpp 126 Thread* self = dvmThreadSelf(); local
131 interrupted = self->interrupted;
132 self->interrupted = false;
  /external/chromium/chrome/browser/chromeos/cros/
screen_lock_library.cc 93 ScreenLockLibraryImpl* self = static_cast<ScreenLockLibraryImpl*>(object); local
96 self->LockScreen();
99 self->UnlockScreen();
102 self->UnlockScreenFailed();
mount_library.cc 138 MountLibraryImpl* self = static_cast<MountLibraryImpl*>(object); local
139 self->OnMountRemovableDevice(device_path,
152 MountLibraryImpl* self = static_cast<MountLibraryImpl*>(object); local
153 self->OnUnmountRemovableDevice(device_path,
165 MountLibraryImpl* self = static_cast<MountLibraryImpl*>(object); local
166 self->OnGetDiskProperties(device_path,
179 MountLibraryImpl* self = static_cast<MountLibraryImpl*>(object); local
180 self->OnRequestMountInfo(devices,
191 MountLibraryImpl* self = static_cast<MountLibraryImpl*>(object); local
192 self->OnMountEvent(evt, device_path)
    [all...]
  /external/guava/guava/src/com/google/common/collect/
ForwardingSortedMap.java 117 SortedMap<Object, V> self = (SortedMap<Object, V>) this; local
118 Object ceilingKey = self.tailMap(key).firstKey();
141 SortedMap<Object, V> self = (SortedMap<Object, V>) this; local
143 self.tailMap(key).entrySet().iterator();
ForwardingSortedSet.java 115 SortedSet<Object> self = (SortedSet<Object>) this; local
116 Object ceiling = self.tailSet(object).first();
138 SortedSet<Object> self = (SortedSet<Object>) this; local
139 Iterator<Object> iterator = self.tailSet(object).iterator();
  /external/linux-tools-perf/util/
strlist.c 15 struct str_node *self = malloc(sizeof(*self)); local
17 if (self != NULL) {
23 self->s = s;
26 return self;
29 free(self);
33 static void str_node__delete(struct str_node *self, bool dupstr)
36 free((void *)self->s);
37 free(self);
40 int strlist__add(struct strlist *self, const char *new_entry
156 struct strlist *self = malloc(sizeof(*self)); local
    [all...]
  /external/linux-tools-perf/util/ui/
util.c 15 static void newt_form__set_exit_keys(newtComponent self)
17 newtFormAddHotKey(self, NEWT_KEY_LEFT);
18 newtFormAddHotKey(self, NEWT_KEY_ESCAPE);
19 newtFormAddHotKey(self, 'Q');
20 newtFormAddHotKey(self, 'q');
21 newtFormAddHotKey(self, CTRL('c'));
26 newtComponent self = newtForm(NULL, NULL, 0); local
27 if (self)
28 newt_form__set_exit_keys(self);
29 return self;
    [all...]
  /external/mockwebserver/src/main/java/com/google/mockwebserver/
MockResponse.java 92 protected MockResponse self() { method in class:MockResponse
BaseMockResponse.java 58 return self();
63 return self();
75 return self();
80 return self();
100 return self();
109 return self();
121 return self();
177 protected abstract T self(); method in class:BaseMockResponse
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
TabSpecTest.java 35 TabHost.TabSpec self = spec.setIndicator(view); local
36 assertThat(self, is(spec));
44 TabHost.TabSpec self = spec.setContent(intent); local
45 assertThat(self, is(spec));
  /external/valgrind/unittest/
deadlock_unittest.cc 139 pthread_t self = pthread_self(); local
142 map<pthread_t, int>::iterator it = m.find(self);
147 m[self] = id;
  /external/webkit/Source/WebCore/bindings/scripts/test/GObject/
WebKitDOMTestSerializedScriptValueInterface.cpp 58 webkit_dom_test_serialized_script_value_interface_get_value(WebKitDOMTestSerializedScriptValueInterface* self)
60 g_return_val_if_fail(self, 0);
62 WebCore::TestSerializedScriptValueInterface * item = WebKit::core(self);
120 WebKitDOMTestSerializedScriptValueInterface* self = WEBKIT_DOM_TEST_SERIALIZED_SCRIPT_VALUE_INTERFACE(object); local
121 WebCore::TestSerializedScriptValueInterface* coreSelf = WebKit::core(self);
  /external/webkit/Source/WebCore/bindings/scripts/test/JS/
JSTestInterface.cpp 88 putDirect(exec->globalData(), exec->propertyNames().prototype, JSTestInterfacePrototype::self(exec, globalObject), DontDelete | ReadOnly);
131 JSObject* JSTestInterfacePrototype::self(ExecState* exec, JSGlobalObject* globalObject) function in class:WebCore::JSTestInterfacePrototype
JSTestMediaQueryListListener.cpp 87 putDirect(exec->globalData(), exec->propertyNames().prototype, JSTestMediaQueryListListenerPrototype::self(exec, globalObject), DontDelete | ReadOnly);
117 JSObject* JSTestMediaQueryListListenerPrototype::self(ExecState* exec, JSGlobalObject* globalObject) function in class:WebCore::JSTestMediaQueryListListenerPrototype
JSTestSerializedScriptValueInterface.cpp 88 putDirect(exec->globalData(), exec->propertyNames().prototype, JSTestSerializedScriptValueInterfacePrototype::self(exec, globalObject), DontDelete | ReadOnly);
117 JSObject* JSTestSerializedScriptValueInterfacePrototype::self(ExecState* exec, JSGlobalObject* globalObject) function in class:WebCore::JSTestSerializedScriptValueInterfacePrototype
  /external/webrtc/src/modules/audio_processing/utility/
delay_estimator.c 94 BinaryDelayEstimator* self = NULL; local
111 self = malloc(sizeof(BinaryDelayEstimator));
112 *handle = self;
113 if (self == NULL) {
117 self->mean_bit_counts = NULL;
118 self->bit_counts = NULL;
119 self->binary_far_history = NULL;
120 self->far_bit_counts = NULL;
122 self->history_size = history_size;
123 self->near_history_size = lookahead + 1
    [all...]
  /frameworks/native/include/ui/
ANativeObjectBase.h 75 static inline TYPE* getSelf(NATIVE_TYPE* self) {
76 return static_cast<TYPE*>(self);
78 static inline TYPE const* getSelf(NATIVE_TYPE const* self) {
79 return static_cast<TYPE const *>(self);
88 ANativeObjectBase* self = getSelf(base); local
89 self->incStrong(self);
92 ANativeObjectBase* self = getSelf(base); local
93 self->decStrong(self);
    [all...]
  /external/clang/utils/
clang-completion-mode.el 175 (defun clang-complete-self-insert (arg)
177 (self-insert-command arg)
192 (defun clang-filter-self-insert (arg)
194 (self-insert-command arg)
227 (define-key clang-completion-mode-map char 'clang-complete-self-insert))
236 (define-key clang-completion-mode-map char 'clang-filter-self-insert))
  /bootable/recovery/
ui.cpp 44 static RecoveryUI* self = NULL; variable
52 self = this;
78 self->rel_sum += ev.value;
79 if (self->rel_sum > 3) {
80 self->process_key(KEY_DOWN, 1); // press down key
81 self->process_key(KEY_DOWN, 0); // and release it
82 self->rel_sum = 0;
83 } else if (self->rel_sum < -3) {
84 self->process_key(KEY_UP, 1); // press up key
85 self->process_key(KEY_UP, 0); // and release i
    [all...]
  /cts/suite/audio_quality/lib/src/audio/
RemoteAudio.cpp 140 RemoteAudio* self = reinterpret_cast<RemoteAudio*>(data); local
143 if (!self->handlePacket()) { //error, stop polling
  /dalvik/vm/alloc/
Alloc.cpp 81 Thread *self = dvmThreadSelf(); local
82 assert(self != NULL);
84 dvmCallMethod(self, method, NULL, &unusedResult);
93 Thread* self = dvmThreadSelf(); local
123 dvmReleaseTrackedAlloc(obj, self);
129 dvmCallMethod(self, init, obj, &unused, msgStr);
130 if (dvmCheckException(self)) {
131 dvmReleaseTrackedAlloc((Object*) msgStr, self);
132 dvmReleaseTrackedAlloc(obj, self);
136 dvmReleaseTrackedAlloc((Object*) msgStr, self); // okay if msgStr NUL
    [all...]
  /external/chromium/base/
timer.h 172 SelfType* self = static_cast<SelfType*>(timer_); local
176 if (self->delayed_task_ == this)
177 self->delayed_task_ = NULL;
189 SelfType* self = static_cast<SelfType*>(timer_); local
190 self->Reset();
  /external/libvpx/libvpx/vpx_mem/memory_manager/include/
hmm_intrnl.h 56 struct ptr_struct *self, *prev, *next; member in struct:ptr_struct

Completed in 1014 milliseconds

12 3 4 5 6 7 8 9