| /openjdk7/jdk/src/share/classes/sun/misc/ |
| H A D | JavaSecurityAccess.java | 34 AccessControlContext stack, 33 doIntersectionPrivilege(PrivilegedAction<T> action, AccessControlContext stack, AccessControlContext context) argument
|
| /openjdk7/corba/src/share/classes/sun/rmi/rmic/iiop/ |
| H A D | NCClassType.java | 63 ContextStack stack) { 65 if (stack.anyErrors()) return null; 72 Type existing = getType(theType,stack); 84 NCClassType it = new NCClassType(stack, classDef); 85 putType(theType,it,stack); 86 stack.push(it); 89 if (it.initialize(stack)) { 90 stack.pop(true); 93 removeType(theType,stack); 94 stack 62 forNCClass(ClassDefinition classDef, ContextStack stack) argument 118 NCClassType(ContextStack stack, ClassDefinition classDef) argument 129 initialize(ContextStack stack) argument [all...] |
| H A D | NCInterfaceType.java | 60 ContextStack stack) { 61 if (stack.anyErrors()) return null; 68 Type existing = getType(theType,stack); 79 NCInterfaceType it = new NCInterfaceType(stack, classDef); 80 putType(theType,it,stack); 81 stack.push(it); 84 if (it.initialize(stack)) { 85 stack.pop(true); 88 removeType(theType,stack); 89 stack 59 forNCInterface( ClassDefinition classDef, ContextStack stack) argument 113 NCInterfaceType(ContextStack stack, ClassDefinition classDef) argument 124 initialize(ContextStack stack) argument [all...] |
| H A D | AbstractType.java | 62 ContextStack stack, 73 Type existing = getType(theType,stack); 87 if (couldBeAbstract(stack,classDef,quiet)) { 91 AbstractType it = new AbstractType(stack, classDef); 92 putType(theType,it,stack); 93 stack.push(it); 96 if (it.initialize(quiet,stack)) { 97 stack.pop(true); 100 removeType(theType,stack); 101 stack 61 forAbstract(ClassDefinition classDef, ContextStack stack, boolean quiet) argument 126 AbstractType(ContextStack stack, ClassDefinition classDef) argument 135 couldBeAbstract(ContextStack stack, ClassDefinition classDef, boolean quiet) argument 163 initialize(boolean quiet,ContextStack stack) argument [all...] |
| H A D | InterfaceType.java | 100 protected InterfaceType(ContextStack stack, int typeCode, ClassDefinition classDef) { argument 101 super(stack,typeCode,classDef); // Call special parent constructor. 113 protected InterfaceType(ContextStack stack, argument 116 super(stack,classDef,typeCode);
|
| H A D | PrimitiveType.java | 61 ContextStack stack) { 63 if (stack.anyErrors()) return null; 67 Type existing = getType(type,stack); 93 PrimitiveType it = new PrimitiveType(stack,typeCode); 97 putType(type,it,stack); 99 // Do the stack thing in case tracing on... 101 stack.push(it); 102 stack.pop(true); 169 private PrimitiveType(ContextStack stack, int typeCode) { argument 170 super(stack,typeCod 60 forPrimitive(sun.tools.java.Type type, ContextStack stack) argument [all...] |
| H A D | SpecialClassType.java | 67 ContextStack stack) { 68 if (stack.anyErrors()) return null; 74 String typeKey = type.toString() + stack.getContextCodeString(); 76 Type existing = getType(typeKey,stack); 89 int typeCode = getTypeCode(type,theClass,stack); 95 SpecialClassType result = new SpecialClassType(stack,typeCode,theClass); 96 putType(typeKey,result,stack); 97 stack.push(result); 98 stack.pop(true); 121 private SpecialClassType(ContextStack stack, in argument 66 forSpecial(ClassDefinition theClass, ContextStack stack) argument 163 getTypeCode(sun.tools.java.Type type, ClassDefinition theClass, ContextStack stack) argument [all...] |
| H A D | SpecialInterfaceType.java | 73 ContextStack stack) { 75 if (stack.anyErrors()) return null; 80 Type existing = getType(type,stack); 93 if (isSpecial(type,theClass,stack)) { 97 SpecialInterfaceType result = new SpecialInterfaceType(stack,0,theClass); 98 putType(type,result,stack); 99 stack.push(result); 101 if (result.initialize(type,stack)) { 102 stack.pop(true); 105 removeType(type,stack); 72 forSpecial( ClassDefinition theClass, ContextStack stack) argument 127 SpecialInterfaceType(ContextStack stack, int typeCode, ClassDefinition theClass) argument 133 isSpecial(sun.tools.java.Type type, ClassDefinition theClass, ContextStack stack) argument 154 initialize(sun.tools.java.Type type, ContextStack stack) argument [all...] |
| H A D | ClassType.java | 129 protected ClassType(ContextStack stack, int typeCode, ClassDefinition classDef) { argument 130 super(stack,typeCode,classDef); // Call special parent constructor. 141 protected ClassType(int typeCode, ClassDefinition classDef,ContextStack stack) { argument 142 super(stack,classDef,typeCode); 155 protected ClassType(ContextStack stack, argument 158 super(stack,classDef,typeCode); 190 protected boolean initParents(ContextStack stack) { argument 192 stack.setNewContextCode(ContextStack.EXTENDS); 193 BatchEnvironment env = stack.getEnv(); 203 parent = (ClassType) makeType(parentDef.getType(),parentDef,stack); [all...] |
| H A D | ImplementationType.java | 64 ContextStack stack, 66 if (stack.anyErrors()) return null; 75 Type existing = getType(theType,stack); 89 if (couldBeImplementation(quiet,stack,classDef)) { 93 ImplementationType it = new ImplementationType(stack, classDef); 94 putType(theType,it,stack); 95 stack.push(it); 98 if (it.initialize(stack,quiet)) { 99 stack.pop(true); 102 removeType(theType,stack); 63 forImplementation(ClassDefinition classDef, ContextStack stack, boolean quiet) argument 129 ImplementationType(ContextStack stack, ClassDefinition classDef) argument 134 couldBeImplementation(boolean quiet, ContextStack stack, ClassDefinition classDef) argument 157 initialize(ContextStack stack, boolean quiet) argument 242 checkMethods(ClassDefinition theClass, Vector list, ContextStack stack, boolean quiet) argument 267 updateExceptions(MemberDefinition implMethod, Method[] list, ContextStack stack, boolean quiet) argument [all...] |
| H A D | RemoteType.java | 62 ContextStack stack, 65 if (stack.anyErrors()) return null; 74 Type existing = getType(theType,stack); 87 if (couldBeRemote(quiet,stack,classDef)) { 91 RemoteType it = new RemoteType(stack,classDef); 92 putType(theType,it,stack); 93 stack.push(it); 96 if (it.initialize(quiet,stack)) { 97 stack.pop(true); 100 removeType(theType,stack); 61 forRemote(ClassDefinition classDef, ContextStack stack, boolean quiet) argument 126 RemoteType(ContextStack stack, ClassDefinition classDef) argument 134 RemoteType(ContextStack stack, ClassDefinition classDef, int typeCode) argument 143 couldBeRemote(boolean quiet, ContextStack stack, ClassDefinition classDef) argument 167 initialize(boolean quiet,ContextStack stack) argument 204 isConformingRemoteInterface( Vector directInterfaces, Vector directMethods, Vector directConstants, boolean quiet, ContextStack stack) argument [all...] |
| H A D | ValueType.java | 69 ContextStack stack, 72 if (stack.anyErrors()) return null; 78 Type existing = getType(typeKey,stack); 99 BatchEnvironment env = stack.getEnv(); 106 classNotFound(stack,ex); 115 if (couldBeValue(stack,classDef)) { 119 ValueType it = new ValueType(classDef,stack,javaLangClass); 120 putType(typeKey,it,stack); 121 stack.push(it); 123 if (it.initialize(stack,quie 68 forValue(ClassDefinition classDef, ContextStack stack, boolean quiet) argument 172 ValueType(ClassDefinition classDef, ContextStack stack, boolean isMappedJavaLangClass) argument 194 couldBeValue(ContextStack stack, ClassDefinition classDef) argument 225 initialize(ContextStack stack, boolean quiet) argument [all...] |
| /openjdk7/jdk/test/javax/management/notification/ |
| H A D | BroadcasterSupportDeadlockTest.java | 136 StackTraceElement[] stack) { 138 if (stack == null) 139 System.out.println("<no stack trace???>"); 141 for (StackTraceElement elmt : stack) 135 showStackTrace(String title, StackTraceElement[] stack) argument
|
| /openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/util/ |
| H A D | ClassStack.java | 64 * Utility class implementing a (typesafe) stack of JavaClass objects. 70 private Stack stack = new Stack(); field in class:ClassStack 72 public void push(JavaClass clazz) { stack.push(clazz); } 73 public JavaClass pop() { return (JavaClass)stack.pop(); } 74 public JavaClass top() { return (JavaClass)stack.peek(); } 75 public boolean empty() { return stack.empty(); }
|
| /openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/bdi/ |
| H A D | ThreadGroupIterator.java | 48 private final Stack<Iterator<ThreadGroupReference>> stack field in class:ThreadGroupIterator 68 return stack.peek(); 73 * on the stack has more elements. If the stack is 78 stack.push(tgl.iterator()); 79 while (!stack.isEmpty() && !top().hasNext()) { 80 stack.pop(); 86 return !stack.isEmpty();
|
| /openjdk7/jdk/test/java/lang/management/ThreadMXBean/ |
| H A D | ThreadDump.java | 68 public static void printStack(StackTraceElement[] stack) { argument 69 System.out.println(INDENT + "Stack: (length = " + stack.length + ")"); 70 for (int j = 0; j < stack.length; j++) { 71 System.out.println(INDENT + INDENT + stack[j]); 77 // Get stack traces of all Threads 86 StackTraceElement[] stack = (StackTraceElement[]) entry.getValue(); 88 printStack(stack);
|
| /openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/ |
| H A D | LivenessPath.java | 41 stack = new Stack(); 46 return stack.size(); 51 return (LivenessPathElement) stack.get(index); 81 return (LivenessPathElement) stack.peek(); 86 stack.push(el); 91 stack.pop(); 98 for (int i = 0; i < stack.size(); i++) { 99 dup.stack.push(stack.get(i)); 107 private Stack stack; field in class:LivenessPath [all...] |
| /openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/ |
| H A D | ThreadGroupIterator.java | 48 private final Stack<Iterator<ThreadGroupReference>> stack = new Stack<Iterator<ThreadGroupReference>>(); field in class:ThreadGroupIterator 65 return stack.peek(); 70 * on the stack has more elements. If the stack is 75 stack.push(tgl.iterator()); 76 while (!stack.isEmpty() && !top().hasNext()) { 77 stack.pop(); 83 return !stack.isEmpty();
|
| /openjdk7/hotspot/src/cpu/zero/vm/ |
| H A D | interpreterRT_zero.cpp | 148 ZeroStack *stack = thread->zero_stack(); variable 154 stack->overflow_check(required_words, CHECK_NULL); 156 intptr_t *buf = (intptr_t *) stack->alloc(required_words * wordSize);
|
| /openjdk7/jdk/make/tools/src/build/tools/dtdbuilder/ |
| H A D | DTDInputStream.java | 51 public Stack stack = new Stack(); field in class:DTDInputStream 95 stack.push(new Integer(ln)); 96 stack.push(new Integer(ch)); 97 stack.push(this.in); 104 * a stream of the stack if the EOF is reached. Also replaces 170 if (stack.size() > 0) { 171 in = (Reader)stack.pop(); 172 ch = ((Integer)stack.pop()).intValue(); 173 ln = ((Integer)stack.pop()).intValue();
|
| /openjdk7/jdk/src/share/demo/jvmti/hprof/ |
| H A D | hprof_stack.c | 41 /* Simple stack storage mechanism (or simple List). */ 45 * length but known at stack init time. 47 * Stack elements can be accessed via pointers (be careful, if stack 48 * moved while you point into stack you have problems) 50 * Pointers to stack elements passed in are copied. 52 * Since the stack can be inspected, it can be used for more than just 53 * a simple stack. 60 resize(Stack *stack) argument 67 HPROF_ASSERT(stack!=NULL); 68 HPROF_ASSERT(stack 89 Stack *stack; local 107 stack_element(Stack *stack, int i) argument 117 stack_top(Stack *stack) argument 130 stack_depth(Stack *stack) argument 137 stack_pop(Stack *stack) argument 149 stack_push(Stack *stack, void *element) argument 163 stack_term(Stack *stack) argument [all...] |
| /openjdk7/jaxp/src/com/sun/org/apache/xml/internal/resolver/readers/ |
| H A D | TextCatalogReader.java | 55 * Character lookahead stack. Reading a catalog sometimes requires 58 protected int[] stack = new int[3]; field in class:TextCatalogReader 61 * Token stack. Recognizing an unexpected catalog entry requires 66 /** The current position on the lookahead stack */ 251 stack[++top] = nextch; 252 stack[++top] = ch; 273 stack[++top] = ch; 274 stack[++top] = nextch; 300 return stack[top--];
|
| /openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/ |
| H A D | OopMapForCacheEntry.java | 59 CellTypeStateList stack, 63 entry.setMask(vars, stack, stackTop); 57 fillStackmapForOpcodes(BytecodeStream bcs, CellTypeStateList vars, CellTypeStateList stack, int stackTop) argument
|
| /openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/agent/ |
| H A D | SnmpMibAgentMBean.java | 163 * @param stack The SNMP MIB handler. 165 public void setSnmpAdaptor(SnmpMibHandler stack); argument 174 * @param stack The SNMP MIB handler. 179 public void setSnmpAdaptor(SnmpMibHandler stack, SnmpOid[] oids); argument 186 * @param stack The SNMP MIB handler. 194 public void setSnmpAdaptor(SnmpMibHandler stack, String contextName); argument 201 * @param stack The SNMP MIB handler. 209 public void setSnmpAdaptor(SnmpMibHandler stack, argument
|
| /openjdk7/hotspot/src/share/vm/shark/ |
| H A D | sharkRuntime.cpp | 208 // being deopted one frame down on the stack. We create a dummy 248 ZeroStack *stack = ((JavaThread *) THREAD)->zero_stack(); local 249 stack->overflow_check(header_words, CHECK_NULL); 251 stack->push(0); // next_frame, filled in later 252 intptr_t *fp = stack->sp(); 253 assert(fp - stack->sp() == next_frame_off, "should be"); 255 stack->push(FAKE_STUB_FRAME); 256 assert(fp - stack->sp() == frame_type_off, "should be");
|