Searched refs:libc_open (Results 1 – 2 of 2) sorted by relevance
/third_party/python/Lib/ctypes/test/ |
D | test_errno.py | 14 libc_open = libc._open 16 libc_open = libc.open 18 libc_open.argtypes = c_char_p, c_int 20 self.assertEqual(libc_open(b"", 0), -1) 31 libc_open = libc._open 33 libc_open = libc.open 34 libc_open.argtypes = c_char_p, c_int 35 self.assertEqual(libc_open(b"", 0), -1)
|
/third_party/mesa3d/src/intel/tools/ |
D | intel_sanitize_gpu.c | 48 static int (*libc_open)(const char *pathname, int flags, mode_t mode); variable 330 int fd = libc_open(path, flags, mode); in open() 429 libc_open = dlsym(RTLD_NEXT, "open"); in init()
|