Searched defs:POINTER (Results 1 - 2 of 2) sorted by relevance
/sssd-io/src/tests/intg/ |
H A D | sssd_group.py | 19 from ctypes import (c_int, c_char_p, c_ulong, POINTER, Structure, namespace 30 ("gr_mem", POINTER(c_char_p))] 44 func.argtypes = [c_char_p, POINTER(Group), 45 c_char_p, c_ulong, POINTER(c_int)] 47 errno = POINTER(c_int)(c_int(0)) 66 func.argtypes = [c_ulong, POINTER(Group), 67 c_char_p, c_ulong, POINTER(c_int)] 69 errno = POINTER(c_int)(c_int(0)) 103 result_p = POINTER(Group)(result) 123 result_p = POINTER(Grou [all...] |
H A D | sssd_passwd.py | 19 from ctypes import (c_int, c_char_p, c_ulong, POINTER, namespace 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_in [all...] |
Completed in 6 milliseconds