Searched defs:object_name (Results 1 - 4 of 4) sorted by relevance

/openjdk7/hotspot/agent/src/os/bsd/
H A Dlibproc_impl.c208 uintptr_t lookup_symbol(struct ps_prochandle* ph, const char* object_name, argument
210 // ignore object_name. search in all libraries
211 // FIXME: what should we do with object_name?? The library names are obtained
212 // by parsing /proc/<pid>/maps, which may not be the same as object_name.
213 // What we need is a utility to map object_name to real file name, something
215 // now, we just ignore object_name and do a global search for the symbol.
227 sym_name, object_name);
390 // of the load object object_name in the target process identified by ph.
394 ps_err_e ps_pglobal_lookup(struct ps_prochandle *ph, const char *object_name, argument
396 *sym_addr = (psaddr_t) lookup_symbol(ph, object_name, sym_nam
[all...]
/openjdk7/hotspot/agent/src/os/linux/
H A Dlibproc_impl.c206 uintptr_t lookup_symbol(struct ps_prochandle* ph, const char* object_name, argument
208 // ignore object_name. search in all libraries
209 // FIXME: what should we do with object_name?? The library names are obtained
210 // by parsing /proc/<pid>/maps, which may not be the same as object_name.
211 // What we need is a utility to map object_name to real file name, something
213 // now, we just ignore object_name and do a global search for the symbol.
225 sym_name, object_name);
393 // of the load object object_name in the target process identified by ph.
397 ps_err_e ps_pglobal_lookup(struct ps_prochandle *ph, const char *object_name, argument
399 *sym_addr = (psaddr_t) lookup_symbol(ph, object_name, sym_nam
[all...]
/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DORB.java505 * @param object_name the name of the initial service as a string
510 abstract public org.omg.CORBA.Object resolve_initial_references(String object_name) argument
/openjdk7/hotspot/agent/src/os/solaris/proc/
H A Dsaproc.cpp327 init_libthread_db_ptrs(void *cd, const prmap_t *pmp, const char *object_name) { argument
336 if (strstr(object_name, "/libthread.so.") == NULL)
344 (void) strcpy(libthread_db, object_name);
345 s1 = (char*) strstr(object_name, ".so.");
357 (void) strcpy(libthread_db, object_name);
358 s1 = (char*) strstr(object_name, "/libthread.so.");

Completed in 38 milliseconds