Home
last modified time | relevance | path

Searched refs:xxx (Results 1 – 2 of 2) sorted by relevance

/linux-tools/perf/uprobe/
H A Duprobe.cpp197 char xx[64], xxx[32]; in main() local
204 if (sscanf(p, "%s %s %s %s %lld %s", xx, mod, xxx, idx, &inode, fname)!=6) continue; in main()
222 offset=0; for (i=0; xxx[i]; i++) { in main()
223 if (xxx[i]>='0'&&xxx[i]<='9') offset=offset*16+xxx[i]-'0'; in main()
224 else if (xxx[i]>='A'&&xxx[i]<='F') offset=offset*16+xxx[i]-'A'+10; in main()
225 else if (xxx[i]>='a'&&xxx[i]<='f') offset=offset*16+xxx[i]-'a'+10; in main()
/linux-tools/perf/profiler/
H A Dprofiler.cpp204 char fname[128], xx[64], xxx[32], mod[16], idx[16]; in load_symbol_pid() local
207 if (sscanf(p, "%s %s %s %s %lld %s", xx, mod, xxx, idx, &inode, fname)!=6) continue; in load_symbol_pid()
214 offset = parse_hex(xxx, &c); if (c==0) continue; in load_symbol_pid()