Home | History | Annotate | Download | only in opjitconv

Lines Matching refs:proc_id

145 					char const * proc_id)
149 snprintf(match_filter, 10, "*/%s.*", proc_id);
245 * we create an ELF file (<proc_id>.jo) and place it in that directory.
260 char * proc_id = NULL;
291 proc_id = xmalloc(proc_id_length + 1);
292 memcpy(proc_id, dumpfilename, proc_id_length);
293 proc_id[proc_id_length] = '\0';
295 proc_id);
304 if (!proc_id) {
309 if (!(anon_dir = find_anon_dir_match(anon_sample_dirs, proc_id))) {
330 strlen(proc_id) + strlen(".jo") + 1);
333 strcat(elf_file, proc_id);
337 strlen(proc_id) + strlen(".jo") + 1);
341 strcat(tmp_elffile, proc_id);
407 free(proc_id);
418 char * proc_id;
425 proc_id = xmalloc(proc_id_length + 1);
426 memcpy(proc_id, fname, proc_id_length);
427 proc_id[proc_id_length] = '\0';
428 ret = proc_id;
445 char * proc_id = get_procid_from_dirname(pname->name);
446 if (proc_id) {
449 if (!strcmp(id->pid, proc_id)) {
463 this_proc->pid = proc_id;