Home
last modified time | relevance | path

Searched refs:bcc_usdt_new_frompid (Results 1 – 7 of 7) sorted by relevance

/external/bcc/src/cc/
Dlink_all.cc16 (void)bcc_usdt_new_frompid(-1, nullptr); in LinkAll()
Dbcc_usdt.h25 void *bcc_usdt_new_frompid(int pid, const char *path);
/external/bcc/src/cc/includes/
Dbcc_usdt.h25 void *bcc_usdt_new_frompid(int pid, const char *path);
/external/bcc/src/python/bcc/
Dusdt.py131 self.context = lib.bcc_usdt_new_frompid(pid, path.encode('ascii'))
133 self.context = lib.bcc_usdt_new_frompid(pid, ct.c_char_p(0))
Dlibbcc.py183 lib.bcc_usdt_new_frompid.restype = ct.c_void_p
184 lib.bcc_usdt_new_frompid.argtypes = [ct.c_int, ct.c_char_p]
/external/bcc/src/lua/bcc/
Dusdt.lua33 self.context = libbcc.bcc_usdt_new_frompid(args.pid)
/external/bcc/src/cc/usdt/
Dusdt.cc396 void *bcc_usdt_new_frompid(int pid, const char *path) { in bcc_usdt_new_frompid() function