Home
last modified time | relevance | path

Searched refs:realfunc (Results 1 – 5 of 5) 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()
/external/llvm-project/flang/test/Semantics/
Dcall09.f9011 real function realfunc(x) function
13 realfunc = x
17 procedure(realfunc), pointer, intent(in) :: p
20 procedure(realfunc), pointer :: p
37 procedure(realfunc), pointer :: procptr
38 procptr => realfunc
47 procedure(realfunc), pointer :: p
50 p => realfunc
52 call s01(realfunc) ! ok
69 call s02(realfunc)
[all …]
Dexpr-errors02.f9012 pure real function realfunc(x)
16 import realfunc
17 procedure(realfunc) :: p
41 type(t(hasProcArg(realfunc))) :: x6
Dstructconst02.f907 real function realfunc(x)
9 end function realfunc
21 procedure(realfunc), pointer, nopass :: rfp1 => NULL()