Searched defs:this_obj (Results 1 - 6 of 6) sorted by relevance

/openjdk7/hotspot/agent/src/os/bsd/
H A DStubDebuggerLocal.c63 (JNIEnv *env, jobject this_obj, jint jpid) {
74 (JNIEnv *env, jobject this_obj, jstring execName, jstring coreName) {
84 (JNIEnv *env, jobject this_obj) {
93 (JNIEnv *env, jobject this_obj, jstring objectName, jstring symbolName) {
103 (JNIEnv *env, jobject this_obj, jlong addr) {
113 (JNIEnv *env, jobject this_obj, jlong addr, jlong numBytes) {
118 (JNIEnv *env, jobject this_obj, jint lwp_id) {
62 Java_sun_jvm_hotspot_debugger_bsd_BsdDebuggerLocal_attach0__I(JNIEnv *env, jobject this_obj, jint jpid) argument
73 Java_sun_jvm_hotspot_debugger_bsd_BsdDebuggerLocal_attach0__Ljava_lang_String_2Ljava_lang_String_2(JNIEnv *env, jobject this_obj, jstring execName, jstring coreName) argument
83 Java_sun_jvm_hotspot_debugger_bsd_BsdDebuggerLocal_detach0(JNIEnv *env, jobject this_obj) argument
92 Java_sun_jvm_hotspot_debugger_bsd_BsdDebuggerLocal_lookupByName0(JNIEnv *env, jobject this_obj, jstring objectName, jstring symbolName) argument
102 Java_sun_jvm_hotspot_debugger_bsd_BsdDebuggerLocal_lookupByAddress0(JNIEnv *env, jobject this_obj, jlong addr) argument
112 Java_sun_jvm_hotspot_debugger_bsd_BsdDebuggerLocal_readBytesFromProcess0(JNIEnv *env, jobject this_obj, jlong addr, jlong numBytes) argument
117 Java_sun_jvm_hotspot_debugger_bsd_BsdDebuggerLocal_getThreadIntegerRegisterSet0(JNIEnv *env, jobject this_obj, jint lwp_id) argument
H A DBsdDebuggerLocal.c63 static struct ps_prochandle* get_proc_handle(JNIEnv* env, jobject this_obj) { argument
64 jlong ptr = (*env)->GetLongField(env, this_obj, p_ps_prochandle_ID);
118 static void fillThreadsAndLoadObjects(JNIEnv* env, jobject this_obj, struct ps_prochandle* ph) { argument
129 thread = (*env)->CallObjectMethod(env, this_obj, getThreadForThreadId_ID,
132 threadList = (*env)->GetObjectField(env, this_obj, threadList_ID);
148 loadObject = (*env)->CallObjectMethod(env, this_obj, createLoadObject_ID,
151 loadObjectList = (*env)->GetObjectField(env, this_obj, loadObjectList_ID);
164 (JNIEnv *env, jobject this_obj, jint jpid) {
170 (*env)->SetLongField(env, this_obj, p_ps_prochandle_ID, (jlong)(intptr_t)ph);
171 fillThreadsAndLoadObjects(env, this_obj, p
163 Java_sun_jvm_hotspot_debugger_bsd_BsdDebuggerLocal_attach0__I(JNIEnv *env, jobject this_obj, jint jpid) argument
179 Java_sun_jvm_hotspot_debugger_bsd_BsdDebuggerLocal_attach0__Ljava_lang_String_2Ljava_lang_String_2(JNIEnv *env, jobject this_obj, jstring execName, jstring coreName) argument
207 Java_sun_jvm_hotspot_debugger_bsd_BsdDebuggerLocal_detach0(JNIEnv *env, jobject this_obj) argument
220 Java_sun_jvm_hotspot_debugger_bsd_BsdDebuggerLocal_lookupByName0(JNIEnv *env, jobject this_obj, jstring objectName, jstring symbolName) argument
249 Java_sun_jvm_hotspot_debugger_bsd_BsdDebuggerLocal_lookupByAddress0(JNIEnv *env, jobject this_obj, jlong addr) argument
266 Java_sun_jvm_hotspot_debugger_bsd_BsdDebuggerLocal_readBytesFromProcess0(JNIEnv *env, jobject this_obj, jlong addr, jlong numBytes) argument
284 Java_sun_jvm_hotspot_debugger_bsd_BsdDebuggerLocal_getThreadIntegerRegisterSet0(JNIEnv *env, jobject this_obj, jint lwp_id) argument
[all...]
/openjdk7/hotspot/agent/src/os/linux/
H A DLinuxDebuggerLocal.c62 struct ps_prochandle* get_proc_handle(JNIEnv* env, jobject this_obj) { argument
63 jlong ptr = (*env)->GetLongField(env, this_obj, p_ps_prochandle_ID);
117 static void fillThreadsAndLoadObjects(JNIEnv* env, jobject this_obj, struct ps_prochandle* ph) { argument
128 thread = (*env)->CallObjectMethod(env, this_obj, getThreadForThreadId_ID,
131 threadList = (*env)->GetObjectField(env, this_obj, threadList_ID);
147 loadObject = (*env)->CallObjectMethod(env, this_obj, createLoadObject_ID,
150 loadObjectList = (*env)->GetObjectField(env, this_obj, loadObjectList_ID);
163 (JNIEnv *env, jobject this_obj, jint jpid) {
169 (*env)->SetLongField(env, this_obj, p_ps_prochandle_ID, (jlong)(intptr_t)ph);
170 fillThreadsAndLoadObjects(env, this_obj, p
162 Java_sun_jvm_hotspot_debugger_linux_LinuxDebuggerLocal_attach0__I(JNIEnv *env, jobject this_obj, jint jpid) argument
178 Java_sun_jvm_hotspot_debugger_linux_LinuxDebuggerLocal_attach0__Ljava_lang_String_2Ljava_lang_String_2(JNIEnv *env, jobject this_obj, jstring execName, jstring coreName) argument
206 Java_sun_jvm_hotspot_debugger_linux_LinuxDebuggerLocal_detach0(JNIEnv *env, jobject this_obj) argument
219 Java_sun_jvm_hotspot_debugger_linux_LinuxDebuggerLocal_lookupByName0(JNIEnv *env, jobject this_obj, jstring objectName, jstring symbolName) argument
248 Java_sun_jvm_hotspot_debugger_linux_LinuxDebuggerLocal_lookupByAddress0(JNIEnv *env, jobject this_obj, jlong addr) argument
265 Java_sun_jvm_hotspot_debugger_linux_LinuxDebuggerLocal_readBytesFromProcess0(JNIEnv *env, jobject this_obj, jlong addr, jlong numBytes) argument
284 Java_sun_jvm_hotspot_debugger_linux_LinuxDebuggerLocal_getThreadIntegerRegisterSet0(JNIEnv *env, jobject this_obj, jint lwp_id) argument
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiImpl.hpp60 // void (*_listener_fun)(void *this_obj, address* cache)
100 void initialize(void *this_obj, void listener_fun(void *, address*) );
140 void initialize(void *this_obj, void listener_fun(void *, address*) ) { argument
141 _cache.initialize(this_obj,listener_fun);
274 static void listener_fun(void *this_obj, address *cache);
H A DjvmtiImpl.cpp148 void GrowableCache::initialize(void *this_obj, void listener_fun(void *, address*) ) { argument
149 _this_obj = this_obj;
505 void JvmtiCurrentBreakpoints::listener_fun(void *this_obj, address *cache) { argument
506 JvmtiBreakpoints *this_jvmti = (JvmtiBreakpoints *) this_obj;
/openjdk7/hotspot/agent/src/os/solaris/proc/
H A Dsaproc.cpp76 jobject this_obj; member in struct:Debugger
148 clear_libthread_db_ptrs(JNIEnv* env, jobject this_obj) { argument
151 p_td_ta_delete = (p_td_ta_delete_t) env->GetLongField(this_obj, p_td_ta_delete_ID);
154 p_td_thragent_t = (td_thragent_t*) env->GetLongField(this_obj, p_td_thragent_t_ID);
160 void* libthread_db_handle = (void*) env->GetLongField(this_obj, libthread_db_handle_ID);
165 env->SetLongField(this_obj, libthread_db_handle_ID, (jlong)0);
166 env->SetLongField(this_obj, p_td_init_ID, (jlong)0);
167 env->SetLongField(this_obj, p_td_ta_new_ID, (jlong)0);
168 env->SetLongField(this_obj, p_td_ta_delete_ID, (jlong)0);
169 env->SetLongField(this_obj, p_td_ta_thr_iter_I
176 detach_internal(JNIEnv* env, jobject this_obj) argument
330 jobject this_obj = dbg->this_obj; local
431 jobject this_obj = dbgo->this_obj; local
453 jobject this_obj = dbgo->this_obj; local
475 jobject this_obj = dbgo2->this_obj; local
591 jobject this_obj = dbg->this_obj; local
732 attach_internal(JNIEnv* env, jobject this_obj, jstring cmdLine, jboolean isProcess) argument
866 Java_sun_jvm_hotspot_debugger_proc_ProcDebuggerLocal_attach0__Ljava_lang_String_2(JNIEnv *env, jobject this_obj, jstring pid) argument
877 Java_sun_jvm_hotspot_debugger_proc_ProcDebuggerLocal_attach0__Ljava_lang_String_2Ljava_lang_String_2(JNIEnv *env, jobject this_obj, jstring executable, jstring corefile) argument
890 Java_sun_jvm_hotspot_debugger_proc_ProcDebuggerLocal_detach0(JNIEnv *env, jobject this_obj) argument
901 Java_sun_jvm_hotspot_debugger_proc_ProcDebuggerLocal_getRemoteProcessAddressSize0(JNIEnv *env, jobject this_obj) argument
917 Java_sun_jvm_hotspot_debugger_proc_ProcDebuggerLocal_getPageSize0(JNIEnv *env, jobject this_obj) argument
944 Java_sun_jvm_hotspot_debugger_proc_ProcDebuggerLocal_getThreadIntegerRegisterSet0(JNIEnv *env, jobject this_obj, jlong tid) argument
980 Java_sun_jvm_hotspot_debugger_proc_ProcDebuggerLocal_fillThreadList0(JNIEnv *env, jobject this_obj, jobject list) argument
1010 Java_sun_jvm_hotspot_debugger_proc_ProcDebuggerLocal_fillCFrameList0(JNIEnv *env, jobject this_obj, jlongArray regsArray) argument
1058 Java_sun_jvm_hotspot_debugger_proc_ProcDebuggerLocal_fillLoadObjectList0(JNIEnv *env, jobject this_obj, jobject list) argument
1075 Java_sun_jvm_hotspot_debugger_proc_ProcDebuggerLocal_readBytesFromProcess0(JNIEnv *env, jobject this_obj, jlong address, jlong numBytes) argument
1147 Java_sun_jvm_hotspot_debugger_proc_ProcDebuggerLocal_writeBytesToProcess0(JNIEnv *env, jobject this_obj, jlong address, jlong numBytes, jbyteArray data) argument
1167 Java_sun_jvm_hotspot_debugger_proc_ProcDebuggerLocal_suspend0(JNIEnv *env, jobject this_obj) argument
1179 Java_sun_jvm_hotspot_debugger_proc_ProcDebuggerLocal_resume0(JNIEnv *env, jobject this_obj) argument
1192 Java_sun_jvm_hotspot_debugger_proc_ProcDebuggerLocal_lookupByName0(JNIEnv *env, jobject this_obj, jstring objectName, jstring symbolName) argument
1230 Java_sun_jvm_hotspot_debugger_proc_ProcDebuggerLocal_lookupByAddress0(JNIEnv *env, jobject this_obj, jlong address) argument
[all...]

Completed in 55 milliseconds