Searched defs:BUFSIZE (Results 1 - 5 of 5) sorted by relevance
/sssd-io/src/util/ |
H A D | find_uid.c | 50 #define BUFSIZE 4096 macro 68 char buf[BUFSIZE]; 120 ret = sss_atomic_read_s(fd, buf, BUFSIZE); 128 /* Guarantee NULL-termination in case we read the full BUFSIZE somehow */ 129 buf[BUFSIZE-1] = '\0';
|
/sssd-io/src/krb5_plugin/ |
H A D | sssd_krb5_locator_plugin.c | 45 #define BUFSIZE 512 macro 91 uint8_t buf[BUFSIZE + 1]; 135 memset(buf, 0, BUFSIZE+1); 138 len = sss_atomic_read_s(fd, buf, BUFSIZE); 147 if (len == BUFSIZE) { 149 krb5info_name, BUFSIZE));
|
/sssd-io/src/tools/ |
H A D | sss_seed.c | 22 #ifndef BUFSIZE 23 #define BUFSIZE 1024 macro 96 char buf[BUFSIZE+1]; 114 if (buf[len] == '\n' || len == BUFSIZE) { 133 char buf[BUFSIZE+1]; 152 if (buf[len] == '\n' || len == BUFSIZE) {
|
/sssd-io/src/monitor/ |
H A D | monitor_netlink.c | 70 #define BUFSIZE 8 macro 178 char buf[BUFSIZE]; 199 memset(buf, 0, BUFSIZE); 201 ret = sss_atomic_read_s(fd, buf, BUFSIZE); 210 buf[BUFSIZE-1] = '\0'; 212 return strncmp(buf, "1\n", BUFSIZE) == 0;
|
/sssd-io/src/providers/ad/ |
H A D | ad_gpo.c | 77 #define BUFSIZE 65536 macro
|
Completed in 29 milliseconds