Searched refs:realfunc (Results 1 – 5 of 5) sorted by relevance
/external/autotest/client/deps/fakegudev/src/ |
D | fakegudev.c | 366 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 …]
|
D | fakesyscalls.c | 192 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/ |
D | call09.f90 | 11 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 …]
|
D | expr-errors02.f90 | 12 pure real function realfunc(x) 16 import realfunc 17 procedure(realfunc) :: p 41 type(t(hasProcArg(realfunc))) :: x6
|
D | structconst02.f90 | 7 real function realfunc(x) 9 end function realfunc 21 procedure(realfunc), pointer, nopass :: rfp1 => NULL()
|