Home
last modified time | relevance | path

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

/external/autotest/client/deps/fakegudev/src/
Dfakegudev.c366 static GList* (*realfunc)(); in g_udev_client_query_by_subsystem() local
386 if (realfunc == NULL) in g_udev_client_query_by_subsystem()
387 realfunc = (GList *(*)()) dlsym (RTLD_NEXT, k_func_q_by_subsystem); in g_udev_client_query_by_subsystem()
388 reallist = realfunc (client, subsystem); in g_udev_client_query_by_subsystem()
403 static GUdevDevice* (*realfunc)(); in g_udev_client_query_by_device_file() local
418 if (realfunc == NULL) in g_udev_client_query_by_device_file()
419 realfunc = (GUdevDevice *(*)()) dlsym (RTLD_NEXT, k_func_q_device_file); in g_udev_client_query_by_device_file()
420 return realfunc (client, device_file); in g_udev_client_query_by_device_file()
427 static GUdevDevice* (*realfunc)(); in g_udev_client_query_by_sysfs_path() local
440 if (realfunc == NULL) in g_udev_client_query_by_sysfs_path()
[all …]
Dfakesyscalls.c192 static int(*realfunc)(const char *, int, ...); in open() local
205 if (realfunc == NULL) in open()
206 realfunc = (int(*)(const char *, int, ...))dlsym (RTLD_NEXT, k_func_open); in open()
217 return realfunc (redirection, flags, mode); in open()
222 return realfunc (redirection, flags); in open()
229 static int(*realfunc)(const char *, mode_t); in creat() local
242 if (realfunc == NULL) in creat()
243 realfunc = (int(*)(const char *, mode_t))dlsym (RTLD_NEXT, k_func_creat); in creat()
245 return realfunc (redirection, mode); in creat()