Lines Matching defs:POINTER
19 from ctypes import (c_int, c_char_p, c_ulong, POINTER,
62 func.argtypes = [c_char_p, POINTER(Passwd),
63 c_char_p, c_ulong, POINTER(c_int)]
65 errno = POINTER(c_int)(c_int(0))
84 func.argtypes = [c_ulong, POINTER(Passwd),
85 c_char_p, c_ulong, POINTER(c_int)]
87 errno = POINTER(c_int)(c_int(0))
135 func.argtypes = [POINTER(Passwd), c_char_p, c_ulong, POINTER(c_int)]
137 errno = POINTER(c_int)(c_int(0))
145 result_p = POINTER(Passwd)(result)
165 result_p = POINTER(Passwd)(result)
185 result_p = POINTER(Passwd)(result)