| /openjdk7/hotspot/src/share/vm/runtime/ |
| H A D | orderAccess.cpp | 33 void (*func)() = CAST_TO_FN_PTR(void (*)(), StubRoutines::fence_entry()); 35 if (func != NULL) { 36 (*func)();
|
| /openjdk7/jdk/src/share/classes/com/sun/jmx/remote/util/ |
| H A D | ClassLogger.java | 93 public final void debug(String func, String msg) { argument 94 finest(func,msg); 97 public final void debug(String func, Throwable t) { argument 98 finest(func,t); 101 public final void debug(String func, String msg, Throwable t) { argument 102 finest(func,msg,t); 105 public final void trace(String func, String msg) { argument 106 finer(func,msg); 109 public final void trace(String func, Throwable t) { argument 110 finer(func, 113 trace(String func, String msg, Throwable t) argument 117 error(String func, String msg) argument 121 error(String func, Throwable t) argument 125 error(String func, String msg, Throwable t) argument 129 finest(String func, String msg) argument 134 finest(String func, Throwable t) argument 140 finest(String func, String msg, Throwable t) argument 146 finer(String func, String msg) argument 151 finer(String func, Throwable t) argument 157 finer(String func, String msg, Throwable t) argument 162 fine(String func, String msg) argument 167 fine(String func, Throwable t) argument 173 fine(String func, String msg, Throwable t) argument 179 config(String func, String msg) argument 184 config(String func, Throwable t) argument 190 config(String func, String msg, Throwable t) argument 196 info(String func, String msg) argument 201 info(String func, Throwable t) argument 207 info(String func, String msg, Throwable t) argument 213 warning(String func, String msg) argument 218 warning(String func, Throwable t) argument 224 warning(String func, String msg, Throwable t) argument 230 severe(String func, String msg) argument 235 severe(String func, Throwable t) argument 241 severe(String func, String msg, Throwable t) argument [all...] |
| /openjdk7/jdk/src/share/classes/sun/management/snmp/util/ |
| H A D | MibLogger.java | 108 public void config(String func, String msg) { argument 111 func,msg); 114 public void config(String func, Throwable t) { argument 117 func,t.toString(),t); 120 public void config(String func, String msg, Throwable t) { argument 123 func,msg,t); 126 public void error(String func, String msg) { argument 129 func,msg); 132 public void info(String func, String msg) { argument 135 func,ms 138 info(String func, Throwable t) argument 144 info(String func, String msg, Throwable t) argument 150 warning(String func, String msg) argument 156 warning(String func, Throwable t) argument 162 warning(String func, String msg, Throwable t) argument 168 trace(String func, String msg) argument 174 trace(String func, Throwable t) argument 180 trace(String func, String msg, Throwable t) argument 186 debug(String func, String msg) argument 192 debug(String func, Throwable t) argument 198 debug(String func, String msg, Throwable t) argument [all...] |
| /openjdk7/hotspot/src/os/solaris/vm/ |
| H A D | os_solaris.hpp | 223 static void set_thr_getstate(int_fnP_thread_t_iP_uP_stack_tP_gregset_t func) argument 224 { _thr_getstate = func; } 227 static void set_thr_setstate(int_fnP_thread_t_i_gregset_t func) { _thr_setstate = func; } argument 230 static void set_thr_setmutator(int_fnP_thread_t_i func) { _thr_setmutator = func; } argument 233 static void set_thr_suspend_mutator(int_fnP_thread_t func) { _thr_suspend_mutator = func; } argument 236 static void set_thr_continue_mutator(int_fnP_thread_t func) { _thr_continue_mutator = func; } argument 246 set_mutex_lock(int_fnP_mutex_tP func) argument 247 set_mutex_trylock(int_fnP_mutex_tP func) argument 248 set_mutex_unlock(int_fnP_mutex_tP func) argument 249 set_mutex_init(int_fnP_mutex_tP_i_vP func) argument 250 set_mutex_destroy(int_fnP_mutex_tP func) argument 262 set_cond_timedwait(int_fnP_cond_tP_mutex_tP_timestruc_tP func) argument 264 set_cond_wait(int_fnP_cond_tP_mutex_tP func) argument 265 set_cond_signal(int_fnP_cond_tP func) argument 266 set_cond_broadcast(int_fnP_cond_tP func) argument 267 set_cond_init(int_fnP_cond_tP_i_vP func) argument 268 set_cond_destroy(int_fnP_cond_tP func) argument 271 set_lgrp_home(lgrp_home_func_t func) argument 272 set_lgrp_init(lgrp_init_func_t func) argument 273 set_lgrp_fini(lgrp_fini_func_t func) argument 274 set_lgrp_root(lgrp_root_func_t func) argument 275 set_lgrp_children(lgrp_children_func_t func) argument 276 set_lgrp_resources(lgrp_resources_func_t func) argument 277 set_lgrp_nlgrps(lgrp_nlgrps_func_t func) argument 278 set_lgrp_cookie_stale(lgrp_cookie_stale_func_t func) argument 304 set_meminfo(meminfo_func_t func) argument [all...] |
| /openjdk7/langtools/test/tools/javac/6464451/ |
| H A D | DeepNestedFinally.java | 35 static public int func(int i) { method in class:DeepNestedFinally
|
| /openjdk7/jdk/src/share/native/common/ |
| H A D | sizecalc.h | 72 #define SAFE_SIZE_ARRAY_ALLOC(func, m, n) \ 73 (IS_SAFE_SIZE_MUL((m), (n)) ? ((func)((m) * (n))) : FAILURE_RESULT) 75 #define SAFE_SIZE_ARRAY_REALLOC(func, p, m, n) \ 76 (IS_SAFE_SIZE_MUL((m), (n)) ? ((func)((p), (m) * (n))) : FAILURE_RESULT) 113 #define SAFE_SIZE_STRUCT_ALLOC(func, a, m, n) \ 114 (IS_SAFE_STRUCT_SIZE((a), (m), (n)) ? ((func)((a) + (m) * (n))) : FAILURE_RESULT)
|
| /openjdk7/jdk/src/share/classes/com/sun/script/javascript/ |
| H A D | JSAdapter.java | 93 Function func = getAdapteeFunction(GET_PROP); 94 if (func != null) { 95 return call(func, new Object[] { name }); 103 Function func = getAdapteeFunction(GET_PROP); 104 if (func != null) { 105 return call(func, new Object[] { new Integer(index) }); 113 Function func = getAdapteeFunction(HAS_PROP); 114 if (func != null) { 115 Object res = call(func, new Object[] { name }); 124 Function func 316 call(Function func, Object[] args) argument [all...] |
| /openjdk7/jdk/test/sun/management/jmxremote/bootstrap/ |
| H A D | TestLogger.java | 94 public void error(String func, String msg) { argument 97 func,msg); 100 public void trace(String func, String msg) { argument 103 func,msg); 106 public void trace(String func, Throwable t) { argument 109 func,t.toString(),t); 112 public void trace(String func, String msg, Throwable t) { argument 115 func,msg,t); 118 public void debug(String func, String msg) { argument 121 func,ms 124 debug(String func, Throwable t) argument 130 debug(String func, String msg, Throwable t) argument [all...] |
| /openjdk7/jdk/test/com/sun/jdi/ |
| H A D | RedefineImplementor.sh | 51 B.func(r); 52 B.func(r); // @1 breakpoint 58 static void func(Runnable r) {
|
| /openjdk7/hotspot/src/os/bsd/dtrace/ |
| H A D | libjvm_db.h | 58 * returns the last value returned from 'func'. 60 int Jframe_iter(jvm_agent_t *agent, prgregset_t gregs, java_stack_f *func, void* cld);
|
| /openjdk7/jdk/src/share/back/ |
| H A D | eventHandlerRestricted.h | 38 IteratorFunction func, void *arg);
|
| H A D | eventHandler.h | 54 HandlerFunction func); 56 HandlerFunction func, 58 HandlerNode *eventHandler_createInternalBreakpoint(HandlerFunction func,
|
| H A D | debugLoop.c | 96 jvmtiStartFunction func; local 106 func = &reader; 107 (void)spawnNewThread(func, NULL, "JDWP Command Reader"); 130 CommandHandler func; local 155 func = debugDispatch_getHandler(cmd->cmdSet,cmd->cmd); 156 if (func == NULL) { 172 replyToSender = func(&in, &out);
|
| H A D | bag.h | 77 /* Enumerate over the items in the bag, calling 'func' for 87 bagEnumerateFunction func, void *arg);
|
| /openjdk7/jdk/src/share/native/sun/java2d/opengl/ |
| H A D | OGLContext.h | 180 #define OGLC_INIT_TEXTURE_FUNCTION(oglc, func) \ 182 j2d_glTexEnvi(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, (func)); \ 183 (oglc)->textureFunction = (func); \ 186 #define OGLC_UPDATE_TEXTURE_FUNCTION(oglc, func) \ 188 if ((oglc)->textureFunction != (func)) { \ 189 OGLC_INIT_TEXTURE_FUNCTION(oglc, func); \
|
| /openjdk7/langtools/test/tools/javac/BadOptimization/ |
| H A D | DeadCode2.java | 45 static int[] func() { return (int[])null; } method in class:DeadCode2 52 try { int i = func()[m = 7]; }
|
| /openjdk7/jdk/src/share/demo/jvmti/hprof/ |
| H A D | hprof_table.h | 64 LookupTableIterator func, void *arg); 66 LookupTableIterator func, void *arg);
|
| /openjdk7/hotspot/src/os/solaris/dtrace/ |
| H A D | libjvm_db.h | 58 * returns the last value returned from 'func'. 60 int Jframe_iter(jvm_agent_t *agent, prgregset_t gregs, java_stack_f *func, void* cld);
|
| /openjdk7/hotspot/src/os/bsd/vm/ |
| H A D | os_bsd.hpp | 248 static void set_sched_getcpu(sched_getcpu_func_t func) { _sched_getcpu = func; } argument 249 static void set_numa_node_to_cpus(numa_node_to_cpus_func_t func) { _numa_node_to_cpus = func; } argument 250 static void set_numa_max_node(numa_max_node_func_t func) { _numa_max_node = func; } argument 251 static void set_numa_available(numa_available_func_t func) { _numa_available = func; } argument 252 static void set_numa_tonode_memory(numa_tonode_memory_func_t func) { _numa_tonode_memory = func; } argument 253 set_numa_interleave_memory(numa_interleave_memory_func_t func) argument [all...] |
| /openjdk7/hotspot/src/os/linux/vm/ |
| H A D | os_linux.hpp | 233 static void set_sched_getcpu(sched_getcpu_func_t func) { _sched_getcpu = func; } argument 234 static void set_numa_node_to_cpus(numa_node_to_cpus_func_t func) { _numa_node_to_cpus = func; } argument 235 static void set_numa_max_node(numa_max_node_func_t func) { _numa_max_node = func; } argument 236 static void set_numa_available(numa_available_func_t func) { _numa_available = func; } argument 237 static void set_numa_tonode_memory(numa_tonode_memory_func_t func) { _numa_tonode_memory = func; } argument 238 set_numa_interleave_memory(numa_interleave_memory_func_t func) argument [all...] |
| /openjdk7/hotspot/src/os_cpu/windows_x86/vm/ |
| H A D | os_windows_x86.cpp | 233 xchg_func_t* func = CAST_TO_FN_PTR(xchg_func_t*, StubRoutines::atomic_xchg_entry()); local 235 if (func != NULL) { 236 os::atomic_xchg_func = func; 237 return (*func)(exchange_value, dest); 248 xchg_ptr_func_t* func = CAST_TO_FN_PTR(xchg_ptr_func_t*, StubRoutines::atomic_xchg_ptr_entry()); local 250 if (func != NULL) { 251 os::atomic_xchg_ptr_func = func; 252 return (*func)(exchange_value, dest); 264 cmpxchg_func_t* func = CAST_TO_FN_PTR(cmpxchg_func_t*, StubRoutines::atomic_cmpxchg_entry()); local 266 if (func ! 281 cmpxchg_long_func_t* func = CAST_TO_FN_PTR(cmpxchg_long_func_t*, StubRoutines::atomic_cmpxchg_long_entry()); local 299 add_func_t* func = CAST_TO_FN_PTR(add_func_t*, StubRoutines::atomic_add_entry()); local 312 add_ptr_func_t* func = CAST_TO_FN_PTR(add_ptr_func_t*, StubRoutines::atomic_add_ptr_entry()); local 381 get_sp_func* func = CAST_TO_FN_PTR(get_sp_func*, local 403 get_fp_func* func = CAST_TO_FN_PTR(get_fp_func*, local [all...] |
| /openjdk7/jdk/src/share/sample/scripting/scriptpad/src/resources/ |
| H A D | gui.js | 54 var func = this; 58 func.apply(func, args); 69 var func = this; 73 func.apply(func, args);
|
| H A D | conc.js | 94 var func = this; 97 func.apply(null, args); 127 var func = this; 129 call: function() { return func.apply(null, args); }
|
| /openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/axes/ |
| H A D | HasPositionalPredChecker.java | 63 * @param func The function reference object. 66 public boolean visitFunction(ExpressionOwner owner, Function func) argument 68 if((func instanceof FuncPosition) || 69 (func instanceof FuncLast))
|
| /openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/soql/ |
| H A D | JSJavaHeap.java | 91 Callable func = null; 112 func = (Callable) f; 124 final Callable finalFunc = func; 147 Callable func = null; 158 func = (Callable) f; 168 final Callable finalFunc = func;
|