/forgerock/openidm-v4/openidm-core/src/main/java/org/forgerock/openidm/sync/impl/ |
H A D | ObjectSetContext.java | 31 private static ThreadLocal<Deque<Context>> stack = new ThreadLocal<Deque<Context>>() { field in class:ObjectSetContext 38 * Pushes a request onto the top of the stack. 40 * @param request the request to be pushed onto the top of the stack. 43 stack.get().push(request); 47 * Pops the request from the top of the stack and returns it. 49 * @throws NoSuchElementException if there is no request on the top of the stack. 52 return stack.get().pop(); 56 * Returns the request on the top of the stack, or {@code null} if there is no request 57 * on the top of the stack. 60 return stack [all...] |
/forgerock/opendj-b2.6/src/server/org/opends/server/util/ |
H A D | Validator.java | 432 * @return a stack trace rooted at the line that called the first 450 * @return the index in the supplied stack trace of the first non-Validator 453 private static int getOriginalCallerStackIndex(StackTraceElement stack[]) { argument 454 // Go up the stack until we find who called the first Validator method. 457 for (i = 0; i < stack.length; i++) { 458 element = stack[i]; 459 // The stack trace of this thread looks like 465 // more stack
|
/forgerock/opendj2/src/server/org/opends/server/util/ |
H A D | Validator.java | 431 * @return a stack trace rooted at the line that called the first 449 * @return the index in the supplied stack trace of the first non-Validator 452 private static int getOriginalCallerStackIndex(StackTraceElement stack[]) { argument 453 // Go up the stack until we find who called the first Validator method. 456 for (i = 0; i < stack.length; i++) { 457 element = stack[i]; 458 // The stack trace of this thread looks like 464 // more stack
|
/forgerock/opendj2.6.2/src/server/org/opends/server/util/ |
H A D | Validator.java | 432 * @return a stack trace rooted at the line that called the first 450 * @return the index in the supplied stack trace of the first non-Validator 453 private static int getOriginalCallerStackIndex(StackTraceElement stack[]) { argument 454 // Go up the stack until we find who called the first Validator method. 457 for (i = 0; i < stack.length; i++) { 458 element = stack[i]; 459 // The stack trace of this thread looks like 465 // more stack
|
/forgerock/opendj2-jel-hg/src/server/org/opends/server/util/ |
H A D | Validator.java | 432 * @return a stack trace rooted at the line that called the first 450 * @return the index in the supplied stack trace of the first non-Validator 453 private static int getOriginalCallerStackIndex(StackTraceElement stack[]) { argument 454 // Go up the stack until we find who called the first Validator method. 457 for (i = 0; i < stack.length; i++) { 458 element = stack[i]; 459 // The stack trace of this thread looks like 465 // more stack
|
/forgerock/opendj2-hg/src/server/org/opends/server/util/ |
H A D | Validator.java | 431 * @return a stack trace rooted at the line that called the first 449 * @return the index in the supplied stack trace of the first non-Validator 452 private static int getOriginalCallerStackIndex(StackTraceElement stack[]) { argument 453 // Go up the stack until we find who called the first Validator method. 456 for (i = 0; i < stack.length; i++) { 457 element = stack[i]; 458 // The stack trace of this thread looks like 464 // more stack
|
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/loggers/ |
H A D | ConsoleDebugLogPublisher.java | 82 String stack = null; 85 stack = DebugStackTraceFormatter.formatStackTrace(stackTrace, settings.getStackDepth()); 87 publish(msg, stack); 101 String stack = null; 104 stack = 108 publish(message, stack); 121 * - injecting a stack trace into the message 123 private void publish(String msg, String stack) argument 138 if(stack != null) 141 buf.append(stack); [all...] |
H A D | TextDebugLogPublisher.java | 375 String stack = null; 378 stack = DebugStackTraceFormatter.formatStackTrace(stackTrace, 381 publish(signature, sourceLocation, msg, stack); 391 String stack = null; 394 stack = DebugStackTraceFormatter.formatStackTrace(ex, settings.getStackDepth(), 397 publish(signature, sourceLocation, message, stack); 413 * - injecting a stack trace into the message 417 String stack) 466 if(stack != null) 469 buf.append(stack); 416 publish(String signature, String sourceLocation, String msg, String stack) argument [all...] |
/forgerock/opendj-b2.6/src/server/org/opends/server/plugins/profiler/ |
H A D | ProfileStackFrame.java | 40 * This class defines a data structure for holding information about a stack 57 // The mapping between the line numbers for this stack frame and the 66 // The class name for this stack frame. 69 // The method name for this stack frame. 75 * Creates a new profile stack frame with the provided information. 77 * @param className The class name for use in this stack frame. 78 * @param methodName The method name for use in this stack frame. 92 * Retrieves the class name for this stack frame. 94 * @return The class name for this stack frame. 104 * Retrieves the method name for this stack fram 251 recurseSubFrames(ProfileStack stack, int depth, long count, HashMap<String,HashMap<ProfileStack,Long>> stacksByMethod) argument [all...] |
H A D | ProfileViewer.java | 74 // The root stack frames for the profile information that has been captured. 77 // A set of stack traces indexed by class and method name. 81 // stack frame. 84 // The GUI tree that will be used to hold stack frame information; 226 * contents of the file into profile stack objects. 248 // The remaining elements will contain the stack frames. 251 ProfileStack stack = ProfileStack.decode(reader); 255 int pos = stack.getNumFrames() - 1; 261 String[] classNames = stack.getClassNames(); 262 String[] methodNames = stack 648 appendHTMLStack(ProfileStack stack, StringBuilder html, String highlightClassAndMethod) argument [all...] |
/forgerock/opendj2/src/server/org/opends/server/plugins/profiler/ |
H A D | ProfileStackFrame.java | 39 * This class defines a data structure for holding information about a stack 56 // The mapping between the line numbers for this stack frame and the 65 // The class name for this stack frame. 68 // The method name for this stack frame. 74 * Creates a new profile stack frame with the provided information. 76 * @param className The class name for use in this stack frame. 77 * @param methodName The method name for use in this stack frame. 91 * Retrieves the class name for this stack frame. 93 * @return The class name for this stack frame. 103 * Retrieves the method name for this stack fram 250 recurseSubFrames(ProfileStack stack, int depth, long count, HashMap<String,HashMap<ProfileStack,Long>> stacksByMethod) argument [all...] |
H A D | ProfileViewer.java | 73 // The root stack frames for the profile information that has been captured. 76 // A set of stack traces indexed by class and method name. 80 // stack frame. 83 // The GUI tree that will be used to hold stack frame information; 225 * contents of the file into profile stack objects. 247 // The remaining elements will contain the stack frames. 250 ProfileStack stack = ProfileStack.decode(reader); 254 int pos = stack.getNumFrames() - 1; 260 String[] classNames = stack.getClassNames(); 261 String[] methodNames = stack 647 appendHTMLStack(ProfileStack stack, StringBuilder html, String highlightClassAndMethod) argument [all...] |
/forgerock/opendj2.6.2/src/server/org/opends/server/plugins/profiler/ |
H A D | ProfileStackFrame.java | 40 * This class defines a data structure for holding information about a stack 57 // The mapping between the line numbers for this stack frame and the 66 // The class name for this stack frame. 69 // The method name for this stack frame. 75 * Creates a new profile stack frame with the provided information. 77 * @param className The class name for use in this stack frame. 78 * @param methodName The method name for use in this stack frame. 92 * Retrieves the class name for this stack frame. 94 * @return The class name for this stack frame. 104 * Retrieves the method name for this stack fram 251 recurseSubFrames(ProfileStack stack, int depth, long count, HashMap<String,HashMap<ProfileStack,Long>> stacksByMethod) argument [all...] |
H A D | ProfileViewer.java | 74 // The root stack frames for the profile information that has been captured. 77 // A set of stack traces indexed by class and method name. 81 // stack frame. 84 // The GUI tree that will be used to hold stack frame information; 226 * contents of the file into profile stack objects. 248 // The remaining elements will contain the stack frames. 251 ProfileStack stack = ProfileStack.decode(reader); 255 int pos = stack.getNumFrames() - 1; 261 String[] classNames = stack.getClassNames(); 262 String[] methodNames = stack 648 appendHTMLStack(ProfileStack stack, StringBuilder html, String highlightClassAndMethod) argument [all...] |
/forgerock/opendj2-jel-hg/src/server/org/opends/server/plugins/profiler/ |
H A D | ProfileStackFrame.java | 40 * This class defines a data structure for holding information about a stack 57 // The mapping between the line numbers for this stack frame and the 66 // The class name for this stack frame. 69 // The method name for this stack frame. 75 * Creates a new profile stack frame with the provided information. 77 * @param className The class name for use in this stack frame. 78 * @param methodName The method name for use in this stack frame. 92 * Retrieves the class name for this stack frame. 94 * @return The class name for this stack frame. 104 * Retrieves the method name for this stack fram 251 recurseSubFrames(ProfileStack stack, int depth, long count, HashMap<String,HashMap<ProfileStack,Long>> stacksByMethod) argument [all...] |
H A D | ProfileViewer.java | 74 // The root stack frames for the profile information that has been captured. 77 // A set of stack traces indexed by class and method name. 81 // stack frame. 84 // The GUI tree that will be used to hold stack frame information; 226 * contents of the file into profile stack objects. 248 // The remaining elements will contain the stack frames. 251 ProfileStack stack = ProfileStack.decode(reader); 255 int pos = stack.getNumFrames() - 1; 261 String[] classNames = stack.getClassNames(); 262 String[] methodNames = stack 648 appendHTMLStack(ProfileStack stack, StringBuilder html, String highlightClassAndMethod) argument [all...] |
/forgerock/opendj2-hg/src/server/org/opends/server/plugins/profiler/ |
H A D | ProfileStackFrame.java | 39 * This class defines a data structure for holding information about a stack 56 // The mapping between the line numbers for this stack frame and the 65 // The class name for this stack frame. 68 // The method name for this stack frame. 74 * Creates a new profile stack frame with the provided information. 76 * @param className The class name for use in this stack frame. 77 * @param methodName The method name for use in this stack frame. 91 * Retrieves the class name for this stack frame. 93 * @return The class name for this stack frame. 103 * Retrieves the method name for this stack fram 250 recurseSubFrames(ProfileStack stack, int depth, long count, HashMap<String,HashMap<ProfileStack,Long>> stacksByMethod) argument [all...] |
H A D | ProfileViewer.java | 73 // The root stack frames for the profile information that has been captured. 76 // A set of stack traces indexed by class and method name. 80 // stack frame. 83 // The GUI tree that will be used to hold stack frame information; 225 * contents of the file into profile stack objects. 247 // The remaining elements will contain the stack frames. 250 ProfileStack stack = ProfileStack.decode(reader); 254 int pos = stack.getNumFrames() - 1; 260 String[] classNames = stack.getClassNames(); 261 String[] methodNames = stack 647 appendHTMLStack(ProfileStack stack, StringBuilder html, String highlightClassAndMethod) argument [all...] |
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/plugins/profiler/ |
H A D | ProfileStackFrame.java | 38 * This class defines a data structure for holding information about a stack 53 * The mapping between the line numbers for this stack frame and the 65 /** The class name for this stack frame. */ 68 /** The method name for this stack frame. */ 74 * Creates a new profile stack frame with the provided information. 76 * @param className The class name for use in this stack frame. 77 * @param methodName The method name for use in this stack frame. 91 * Retrieves the class name for this stack frame. 93 * @return The class name for this stack frame. 103 * Retrieves the method name for this stack fram 250 recurseSubFrames(ProfileStack stack, int depth, long count, HashMap<String,HashMap<ProfileStack,Long>> stacksByMethod) argument [all...] |
H A D | ProfileViewer.java | 75 /** The root stack frames for the profile information that has been captured. */ 78 /** A set of stack traces indexed by class and method name. */ 83 * stack frame. 87 /** The GUI tree that will be used to hold stack frame information;. */ 241 // The remaining elements will contain the stack frames. 244 ProfileStack stack = ProfileStack.decode(reader); 248 int pos = stack.getNumFrames() - 1; 254 String[] classNames = stack.getClassNames(); 255 String[] methodNames = stack.getMethodNames(); 256 int[] lineNumbers = stack 638 appendHTMLStack(ProfileStack stack, StringBuilder html, String highlightClassAndMethod) argument [all...] |
/forgerock/openam/openam-test-utils/src/main/java/org/forgerock/openam/test/apidescriptor/ |
H A D | ApiSchemaAssert.java | 151 Stack<Map<String, Object>> stack = new Stack<>(); field in class:ApiSchemaAssert.SchemaResourceAssertor 169 if (stack.size() > 0) { 170 Map<String, Object> top = stack.peek(); 175 stack.push(value.asMap()); 179 stack.pop();
|
/forgerock/opendj-b2.6/src/server/org/opends/server/loggers/debug/ |
H A D | TextDebugLogPublisher.java | 477 String stack = null; 480 stack = DebugStackTraceFormatter.formatStackTrace(stackTrace, 483 publish(category, level, signature, sourceLocation, msg, stack); 505 String stack = null; 508 stack = DebugStackTraceFormatter.formatStackTrace(stackTrace, 511 publish(category, level, signature, sourceLocation, msg, stack); 532 String stack = null; 535 stack = DebugStackTraceFormatter.formatStackTrace(stackTrace, 538 publish(category, level, signature, sourceLocation, msg, stack); 560 String stack 797 publish(LogCategory category, LogLevel level, String signature, String sourceLocation, String msg, String stack) argument [all...] |
/forgerock/opendj-b2.6/src/server/org/opends/server/tools/ |
H A D | ConsoleDebugLogPublisher.java | 105 String stack = null; 108 stack = DebugStackTraceFormatter.formatStackTrace(stackTrace, 111 publish(category, level, msg, stack); 133 String stack = null; 136 stack = DebugStackTraceFormatter.formatStackTrace(stackTrace, 139 publish(category, level, msg, stack); 160 String stack = null; 163 stack = DebugStackTraceFormatter.formatStackTrace(stackTrace, 166 publish(category, level, msg, stack); 194 String stack 431 publish(LogCategory category, LogLevel level, String msg, String stack) argument [all...] |
/forgerock/opendj2/src/server/org/opends/server/loggers/debug/ |
H A D | TextDebugLogPublisher.java | 472 String stack = null; 475 stack = DebugStackTraceFormatter.formatStackTrace(stackTrace, 478 publish(category, level, signature, sourceLocation, msg, stack); 500 String stack = null; 503 stack = DebugStackTraceFormatter.formatStackTrace(stackTrace, 506 publish(category, level, signature, sourceLocation, msg, stack); 527 String stack = null; 530 stack = DebugStackTraceFormatter.formatStackTrace(stackTrace, 533 publish(category, level, signature, sourceLocation, msg, stack); 555 String stack 792 publish(LogCategory category, LogLevel level, String signature, String sourceLocation, String msg, String stack) argument [all...] |
/forgerock/opendj2/src/server/org/opends/server/tools/ |
H A D | ConsoleDebugLogPublisher.java | 104 String stack = null; 107 stack = DebugStackTraceFormatter.formatStackTrace(stackTrace, 110 publish(category, level, msg, stack); 132 String stack = null; 135 stack = DebugStackTraceFormatter.formatStackTrace(stackTrace, 138 publish(category, level, msg, stack); 159 String stack = null; 162 stack = DebugStackTraceFormatter.formatStackTrace(stackTrace, 165 publish(category, level, msg, stack); 193 String stack 430 publish(LogCategory category, LogLevel level, String msg, String stack) argument [all...] |