Searched refs:stack (Results 1 - 25 of 35) sorted by relevance

12

/frameworks/base/tools/preload/
H A DProc.java46 /** Maps thread ID to operation stack. */
96 LinkedList<Operation> stack = stacks.get(threadId);
97 if (stack == null) {
98 stack = new LinkedList<Operation>();
99 stacks.put(threadId, stack);
102 if (!stack.isEmpty()) {
103 stack.getLast().subops.add(o);
106 stack.add(o);
118 LinkedList<Operation> stack = stacks.get(threadId);
120 if (stack
[all...]
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DStackActivity.java36 setContentView(R.layout.stack);
38 StackView stack = (StackView) findViewById(R.id.stack_view);
39 stack.setAdapter(new ArrayAdapter<Drawable>(this, android.R.layout.simple_list_item_1,
57 stack.setDisplayedChild(0);
/frameworks/base/core/java/android/util/
H A DJsonWriter.java125 private final List<JsonScope> stack = new ArrayList<JsonScope>(); field in class:JsonWriter
127 stack.add(JsonScope.EMPTY_DOCUMENT);
240 stack.add(empty);
253 throw new IllegalStateException("Nesting problem: " + stack);
256 stack.remove(stack.size() - 1);
265 * Returns the value on the top of the stack.
268 return stack.get(stack.size() - 1);
272 * Replace the value on the top of the stack wit
[all...]
H A DJsonReader.java205 private final List<JsonScope> stack = new ArrayList<JsonScope>(); field in class:JsonReader
536 stack.clear();
537 stack.add(JsonScope.CLOSED);
564 return stack.get(stack.size() - 1);
568 return stack.remove(stack.size() - 1);
572 stack.add(newTop);
576 * Replace the value on the top of the stack with the given value.
579 stack
[all...]
/frameworks/base/opengl/libs/EGL/
H A Degl_tls.cpp81 CallStack stack; local
82 stack.update();
83 stack.dump();
H A Degl.cpp154 CallStack stack; local
155 stack.update();
156 stack.dump();
/frameworks/base/libs/utils/
H A DRefBase.cpp108 refs->stack.dump();
126 refs->stack.dump();
133 CallStack stack; local
134 stack.update();
135 stack.dump();
201 snprintf(name, 100, "/data/%p.stack", this);
219 CallStack stack; member in struct:android::RefBase::weakref_impl::ref_entry
236 ref->stack.update(2);
277 CallStack stack; local
278 stack
[all...]
H A DThreads.cpp751 status_t Thread::run(const char* name, int32_t priority, size_t stack) argument
774 this, name, priority, stack, &mThread);
777 this, name, priority, stack, &mThread);
/frameworks/base/media/libstagefright/
H A DAndroid.mk99 # use the Chrome http stack either.
104 # See if the user has specified a stack they want to use
106 # We default to the Chrome HTTP stack.
112 # No HTTP stack is specified, pickup the one we want as default.
/frameworks/base/tools/localize/
H A DXMLHandler.cpp172 vector<XMLHandler*> stack; member in struct:xml_handler_data
471 list_contains(const vector<XMLHandler*>& stack, XMLHandler* handler) argument
473 const size_t N = stack.size();
475 if (stack[i] == handler) {
487 XMLHandler* handler = data->stack[data->stack.size()-1];
511 data->stack.push_back(next);
519 XMLHandler* handler = data->stack[data->stack.size()-1];
520 data->stack
[all...]
/frameworks/compile/slang/
H A Dslang_rs_object_ref_count.h21 #include <stack>
76 std::stack<Scope*> mScopeStack;
/frameworks/ex/variablespeed/jni/
H A Dvariablespeed.h33 #include <stack>
104 std::stack<int16*> freeBuffers_;
/frameworks/base/services/java/com/android/server/am/
H A DActivityRecord.java50 * An entry in the history stack, representing an activity.
54 final ActivityStack stack; // owner field in class:ActivityRecord
121 private boolean inHistory; // are we in the history stack?
280 stack = _stack;
603 final long totalTime = stack.mInitialStartTime != 0
604 ? (curTime - stack.mInitialStartTime) : thisTime;
622 stack.reportActivityLaunchedLocked(false, this, thisTime, totalTime);
627 stack.mInitialStartTime = 0;
635 stack.reportActivityVisibleLocked(this);
645 stack
[all...]
/frameworks/base/test-runner/src/junit/runner/
H A DBaseTestRunner.java262 * Returns a filtered stack trace
274 * Filters stack frames from internal JUnit classes
276 public static String getFilteredTrace(String stack) { argument
278 return stack;
282 StringReader sr= new StringReader(stack);
295 return stack; // return the stack unfiltered
/frameworks/base/core/java/com/google/android/mms/pdu/
H A DPduComposer.java101 * Message compose buffer stack.
1037 private int currentStackSize; // Current stack size
1057 private LengthRecordNode stack = null; field in class:PduComposer.BufferStack
1063 * Create a new message buffer and push it into the stack.
1078 temp.next = stack;
1079 stack = temp;
1088 * Pop the message before and record current message in the stack.
1094 mMessage = stack.currentMessage;
1095 mPosition = stack.currentPosition;
1097 toCopy = stack;
[all...]
/frameworks/base/tools/aapt/
H A DXMLNode.cpp1108 if (st->stack.size() > 0) {
1109 st->stack.itemAt(st->stack.size()-1)->addChild(node);
1113 st->stack.push(node);
1129 if (st->stack.size() > 0) {
1130 st->stack.itemAt(st->stack.size()-1)->addChild(node);
1134 st->stack.push(node);
1148 if (st->stack.size() == 0) {
1151 sp<XMLNode> parent = st->stack
[all...]
H A DXMLNode.h148 Vector<sp<XMLNode> > stack; member in struct:XMLNode::ParseState
/frameworks/base/opengl/libagl/
H A Dmatrix.cpp127 // Validate the projection stack (in fact, it's never needed)
152 // Validate the texture stack
387 stack = new matrixf_t[depth];
396 delete [] stack;
402 stack[depth].loadIdentity();
409 stack[depth].load(rhs);
415 stack[depth].load(rhs);
421 stack[depth].multiply(rhs);
427 stack[depth].translate(x,y,z);
433 stack[dept
912 matrix_stack_t* stack = 0; local
[all...]
/frameworks/base/libs/rs/
H A Dspec.l1 %option stack
/frameworks/base/libs/binder/
H A DIMemory.cpp249 CallStack stack; local
250 stack.update();
251 stack.dump("callstack");
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DDelegateMethodAdapter2.java212 // Push this.getField("this$0") on the call stack.
242 // we pushed on the call stack. The return type remains unchanged.
369 public void visitFrame(int type, int nLocal, Object[] local, int nStack, Object[] stack) { argument
371 mOrgWriter.visitFrame(type, nLocal, local, nStack, stack);
H A DStubMethodAdapter.java152 /* Pops the stack, depending on the return type.
249 // Pop the last word from the stack since invoke will generate its own return.
284 public void visitFrame(int type, int nLocal, Object[] local, int nStack, Object[] stack) { argument
286 mParentVisitor.visitFrame(type, nLocal, local, nStack, stack);
/frameworks/base/include/private/opengles/
H A Dgl_context.h450 matrixf_t *stack; member in struct:android::gl::matrix_stack_t
464 matrixf_t& top() { return stack[depth]; }
465 const matrixf_t& top() const { return stack[depth]; }
/frameworks/base/services/java/com/android/server/
H A DWatchdog.java413 // We've waited half the deadlock-detection interval. Pull a stack
424 // First collect stack traces from all threads of the system process.
436 final File stack = ActivityManagerService.dumpStackTraces(
439 // Give some extra time to make sure the stack traces get written.
455 name, null, stack, null);
477 String tracesPath = SystemProperties.get("dalvik.vm.stack-trace-file", null);
/frameworks/base/include/utils/
H A Dthreads.h509 size_t stack = 0);

Completed in 588 milliseconds

12