Home
last modified time | relevance | path

Searched refs:stack (Results 1 – 25 of 63) sorted by relevance

123

/frameworks/base/libs/surfaceflinger_client/
DSharedBufferStack.cpp183 SharedBufferStack& stack( *mSharedStack ); in getStatus() local
184 return stack.status; in getStatus()
189 SharedBufferStack& stack( *mSharedStack ); in getIdentity() local
190 return stack.identity; in getIdentity()
198 SharedBufferStack& stack( *mSharedStack ); in dump() local
202 prefix, stack.head, stack.available, stack.queued, in dump()
203 stack.reallocMask, stack.identity, stack.status); in dump()
211 const SharedBufferStack& stack( *mSharedStack ); in waitForCondition() local
218 (stack.identity == identity) && in waitForCondition()
219 (stack.status == NO_ERROR)) in waitForCondition()
[all …]
DSurface.cpp910 CallStack stack; in lock() local
911 stack.update(); in lock()
912 stack.dump(""); in lock()
918 CallStack stack; in lock() local
919 stack.update(); in lock()
920 stack.dump(""); in lock()
/frameworks/base/tools/preload/
DProc.java96 LinkedList<Operation> stack = stacks.get(threadId); in startOperation() local
97 if (stack == null) { in startOperation()
98 stack = new LinkedList<Operation>(); in startOperation()
99 stacks.put(threadId, stack); in startOperation()
102 if (!stack.isEmpty()) { in startOperation()
103 stack.getLast().subops.add(o); in startOperation()
106 stack.add(o); in startOperation()
118 LinkedList<Operation> stack = stacks.get(threadId); in endOperation() local
120 if (stack == null || stack.isEmpty()) { in endOperation()
125 Operation o = stack.getLast(); in endOperation()
[all …]
/frameworks/base/tools/localize/
DXMLHandler.cpp172 vector<XMLHandler*> stack; member
471 list_contains(const vector<XMLHandler*>& stack, XMLHandler* handler) in list_contains() argument
473 const size_t N = stack.size(); in list_contains()
475 if (stack[i] == handler) { in list_contains()
487 XMLHandler* handler = data->stack[data->stack.size()-1]; in start_element_handler()
511 data->stack.push_back(next); in start_element_handler()
519 XMLHandler* handler = data->stack[data->stack.size()-1]; in end_element_handler()
520 data->stack.pop_back(); in end_element_handler()
524 if (!list_contains(data->stack, handler)) { in end_element_handler()
526 if (data->stack.size() > 1) { in end_element_handler()
[all …]
/frameworks/base/services/java/com/android/server/am/
DActivityRecord.java50 final ActivityStack stack; // owner field in ActivityRecord
193 stack = _stack; in ActivityRecord()
427 final long totalTime = stack.mInitialStartTime != 0 in windowsVisible()
428 ? (curTime - stack.mInitialStartTime) : thisTime; in windowsVisible()
446 stack.reportActivityLaunchedLocked(false, this, thisTime, totalTime); in windowsVisible()
451 stack.mInitialStartTime = 0; in windowsVisible()
454 stack.reportActivityVisibleLocked(this); in windowsVisible()
463 stack.processStoppingActivitiesLocked(false); in windowsVisible()
470 final int N = stack.mWaitingVisibleActivities.size(); in windowsVisible()
474 stack.mWaitingVisibleActivities.get(i); in windowsVisible()
[all …]
/frameworks/base/test-runner/src/junit/runner/
DBaseTestRunner.java276 public static String getFilteredTrace(String stack) { in getFilteredTrace() argument
278 return stack; in getFilteredTrace()
282 StringReader sr= new StringReader(stack); in getFilteredTrace()
295 return stack; // return the stack unfiltered in getFilteredTrace()
/frameworks/base/docs/html/guide/topics/wireless/
Dindex.jd9 wireless stack that provides Wi-Fi network access. Almost all information from the device supplicant
16 <p>The Android platform includes support for the Bluetooth network stack, which allows a device to
/frameworks/base/core/java/com/google/android/mms/pdu/
DPduComposer.java1057 private LengthRecordNode stack = null; field in PduComposer.BufferStack
1078 temp.next = stack; in newbuf()
1079 stack = temp; in newbuf()
1094 mMessage = stack.currentMessage; in pop()
1095 mPosition = stack.currentPosition; in pop()
1097 toCopy = stack; in pop()
1100 stack = stack.next; in pop()
/frameworks/base/opengl/libagl/
Dmatrix.cpp387 stack = new matrixf_t[depth]; in init()
396 delete [] stack; in uninit()
402 stack[depth].loadIdentity(); in loadIdentity()
409 stack[depth].load(rhs); in load()
415 stack[depth].load(rhs); in load()
421 stack[depth].multiply(rhs); in multiply()
427 stack[depth].translate(x,y,z); in translate()
433 stack[depth].scale(x,y,z); in scale()
443 stack[depth].rotate(a,x,y,z); in rotate()
463 stack[depth+1] = stack[depth]; in push()
[all …]
/frameworks/base/include/private/surfaceflinger/
DSharedBufferStack.h166 SharedBufferStack& stack; member
168 : stack(*sbc->mSharedStack) { } in ConditionBase()
176 SharedBufferStack& stack; member
178 : stack(*sbb->mSharedStack) { } in UpdateBase()
/frameworks/base/tools/aapt/
DXMLNode.cpp1106 if (st->stack.size() > 0) { in startNamespace()
1107 st->stack.itemAt(st->stack.size()-1)->addChild(node); in startNamespace()
1111 st->stack.push(node); in startNamespace()
1127 if (st->stack.size() > 0) { in startElement()
1128 st->stack.itemAt(st->stack.size()-1)->addChild(node); in startElement()
1132 st->stack.push(node); in startElement()
1146 if (st->stack.size() == 0) { in characterData()
1149 sp<XMLNode> parent = st->stack.itemAt(st->stack.size()-1); in characterData()
1172 sp<XMLNode> node = st->stack.itemAt(st->stack.size()-1); in endElement()
1183 st->stack.pop(); in endElement()
[all …]
/frameworks/base/docs/html/guide/developing/tools/
Dproguard.jd48 <code>retrace</code> tool to decode obfuscated stack traces.</p>
90 translates the obfuscated stack trace back to the original class, method, and member names.
152 <p>When your obfuscated code outputs a stack trace, the method names are obfuscated, which makes
158 or Mac OS X can convert an obfuscated stack trace to a readable one. It is located in the
173 …sure that you can debug a problem if a user encounters a bug and submits an obfuscated stack trace.
180 …containing a stack trace from the application that is currently published. You no longer have a wa…
181 …of debugging the user's stack trace, because the <code>mapping.txt</code> file associated with the…
/frameworks/base/libs/utils/
DRefBase.cpp172 CallStack stack; member
188 ref->stack.update(2); in addRef()
227 out->append(refs->stack.toString("\t\t")); in printRefsLocked()
DThreads.cpp690 status_t Thread::run(const char* name, int32_t priority, size_t stack) in run() argument
713 this, name, priority, stack, &mThread); in run()
716 this, name, priority, stack, &mThread); in run()
/frameworks/base/libs/binder/
DIMemory.cpp247 CallStack stack; in ~BpMemoryHeap() local
248 stack.update(); in ~BpMemoryHeap()
249 stack.dump("callstack"); in ~BpMemoryHeap()
/frameworks/base/docs/html/guide/topics/
Dfundamentals.jd20 <li><a href="#clearstack">Clearing the stack</a></li>
531 in a stack. The root activity in the stack is the one that began the task
533 The activity at the top of the stack is one that's currently running &mdash;
535 the new activity is pushed on the stack; it becomes the running activity.
536 The previous activity remains in the stack. When the user presses the BACK key,
537 the current activity is popped from the stack, and the previous one resumes as
542 The stack contains objects, so if a task has more than one instance of the same
544 stack has a separate entry for each instance. Activities in the stack are never
549 A task is a stack of activities, not a class or an element in the manifest file.
558 activity stack) can be brought to the foreground or sent to the background.
[all …]
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
DStubMethodAdapter.java283 public void visitFrame(int type, int nLocal, Object[] local, int nStack, Object[] stack) { in visitFrame() argument
285 mParentVisitor.visitFrame(type, nLocal, local, nStack, stack); in visitFrame()
/frameworks/base/libs/rs/
Dspec.l1 %option stack
/frameworks/base/include/private/opengles/
Dgl_context.h453 matrixf_t *stack; member
467 matrixf_t& top() { return stack[depth]; } in top()
468 const matrixf_t& top() const { return stack[depth]; } in top()
/frameworks/base/docs/html/resources/faq/
Dlicensingandoss.jd13 <p>The source code for the full Android stack is available from the <a href="http://source.android.…
/frameworks/base/docs/html/guide/appendix/faq/
Dlicensingandoss.jd13 <p>The source code for the full Android stack is available from the <a href="http://source.android.…
/frameworks/base/docs/html/guide/basics/
Dwhat-is-android.jd4 <p>Android is a software stack for mobile devices that includes an operating
139 security, memory management, process management, network stack, and driver
141 the rest of the software stack.</p>
/frameworks/base/docs/html/guide/developing/
Ddebug-tasks.jd35 IDE), screen captures on the emulator, thread and stack information,
43 messages. The messages include a stack trace when the device throws an error,
160 <dt><strong>Dump the stack trace</strong></dt>
161 <dd>To obtain a stack dump from emulator, you can log
163 want, and then &quot;kill -3 &quot;. The stack trace appears in the log file.
/frameworks/base/services/java/com/android/server/
DWatchdog.java437 final File stack = ActivityManagerService.dumpStackTraces( in run() local
455 "watchdog", null, null, null, name, null, stack, null); in run()
/frameworks/base/voip/java/com/android/server/sip/
DSipSessionGroup.java145 SipStack stack = mSipStack = sipFactory.createSipStack(properties); in reset() local
148 SipProvider provider = stack.createSipProvider( in reset()
149 stack.createListeningPoint(localIp, allocateLocalPort(), in reset()
152 mSipHelper = new SipHelper(stack, provider); in reset()
160 stack.start(); in reset()

123