Lines Matching refs:Pr

218 		struct ps_prochandle *Pr = NULL;  in main()  local
228 if ((Pr = proc_arg_xgrab(arg, NULL, PR_ARG_ANY, in main()
236 if ((tpsinfo = Ppsinfo(Pr)) == NULL) { in main()
239 Prelease(Pr, 0); in main()
246 if (Pstate(Pr) == PS_DEAD) { in main()
247 if ((Pcontent(Pr) & content) != content) { in main()
262 if (Pgetauxval(Pr, AT_BASE) != -1L && Prd_agent(Pr) == NULL) { in main()
272 td_ta_new(Pr, &Tap) != TD_OK) /* no libc */ in main()
289 handle.proc = Pr; in main()
290 handle.jvm = load_libjvm(Pr); in main()
291 handle.pydb = load_libpython(Pr); in main()
302 Prelease(Pr, 0); in main()
447 struct ps_prochandle *Pr = h->proc; in all_call_stacks() local
448 pstatus_t status = *Pstatus(Pr); in all_call_stacks()
451 (void) Plookup_by_name(Pr, "libc.so", "sigacthandler", &sigh); in all_call_stacks()
465 (void) Plwp_iter_all(Pr, thread_call_stack, h); in all_call_stacks()
467 (void) Plwp_iter_all(Pr, lwp_call_stack, h); in all_call_stacks()
481 print_zombie(Pr, tip); in all_call_stacks()
569 struct ps_prochandle *Pr = h->proc; in print_frame() local
590 if (Plookup_by_addr(Pr, pc, in print_frame()
656 print_zombie(struct ps_prochandle *Pr, struct threadinfo *tip) in print_zombie() argument
665 if (Plookup_by_addr(Pr, tip->startfunc, in print_zombie()
720 struct ps_prochandle *Pr = cd; in jvm_object_iter() local
727 if (Pstatus(Pr)->pr_dmodel != PR_MODEL_NATIVE) { in jvm_object_iter()
749 load_libjvm(struct ps_prochandle *Pr) in load_libjvm() argument
770 (void) Pobject_iter(Pr, jvm_object_iter, Pr); in load_libjvm()
782 (ret = j_agent_create(Pr, JVM_DB_VERSION)) == NULL) { in load_libjvm()
816 struct ps_prochandle *Pr = cd; in python_object_iter() local
822 if (Pstatus(Pr)->pr_dmodel != PR_MODEL_NATIVE) { in python_object_iter()
844 load_libpython(struct ps_prochandle *Pr) in load_libpython() argument
848 (void) Pobject_iter(Pr, python_object_iter, Pr); in load_libpython()
868 pdb = pydb_agent_create(Pr, PYDB_VERSION); in load_libpython()