count             246 examples/VFS/skel_opaque.c static bool skel_lock(vfs_handle_struct *handle, files_struct *fsp, int op, SMB_OFF_T offset, SMB_OFF_T count, int type)
count             248 examples/VFS/skel_opaque.c 	return vfswrap_lock(NULL, fsp, op, offset, count, type);
count             392 examples/VFS/skel_opaque.c static SMB_ACL_T skel_sys_acl_init(vfs_handle_struct *handle,  int count)
count             239 examples/VFS/skel_transparent.c static bool skel_lock(vfs_handle_struct *handle, files_struct *fsp, int op, SMB_OFF_T offset, SMB_OFF_T count, int type)
count             241 examples/VFS/skel_transparent.c 	return SMB_VFS_NEXT_LOCK(handle, fsp, op, offset, count, type);
count             377 examples/VFS/skel_transparent.c static SMB_ACL_T skel_sys_acl_init(vfs_handle_struct *handle,  int count)
count             379 examples/VFS/skel_transparent.c 	return SMB_VFS_NEXT_SYS_ACL_INIT(handle, count);
count             413 examples/libsmbclient/smbwrapper/smbw.c ssize_t smbw_pread(int smbw_fd, void *buf, size_t count, SMBW_OFF_T ofs)
count             420 examples/libsmbclient/smbwrapper/smbw.c         if (count == 0) {
count             431 examples/libsmbclient/smbwrapper/smbw.c         if ((ret = smbc_read(client_fd, buf, count)) < 0) {
count             444 examples/libsmbclient/smbwrapper/smbw.c ssize_t smbw_read(int smbw_fd, void *buf, size_t count)
count             450 examples/libsmbclient/smbwrapper/smbw.c         return smbc_read(client_fd, buf, count);
count             458 examples/libsmbclient/smbwrapper/smbw.c ssize_t smbw_write(int smbw_fd, void *buf, size_t count)
count             464 examples/libsmbclient/smbwrapper/smbw.c         return smbc_write(client_fd, buf, count);
count             470 examples/libsmbclient/smbwrapper/smbw.c ssize_t smbw_pwrite(int smbw_fd, void *buf, size_t count, SMBW_OFF_T ofs)
count             477 examples/libsmbclient/smbwrapper/smbw.c         if (count == 0) {
count             488 examples/libsmbclient/smbwrapper/smbw.c         if ((ret = smbc_write(client_fd, buf, count)) < 0) {
count              74 examples/libsmbclient/smbwrapper/smbw.h ssize_t smbw_pread(int fd, void *buf, size_t count, SMBW_OFF_T ofs);
count              75 examples/libsmbclient/smbwrapper/smbw.h ssize_t smbw_read(int fd, void *buf, size_t count);
count              76 examples/libsmbclient/smbwrapper/smbw.h ssize_t smbw_write(int fd, void *buf, size_t count);
count              77 examples/libsmbclient/smbwrapper/smbw.h ssize_t smbw_pwrite(int fd, void *buf, size_t count, SMBW_OFF_T ofs);
count              99 examples/libsmbclient/smbwrapper/smbw.h int smbw_getdents(unsigned int fd, SMBW_dirent *dirp, int count);
count              41 examples/libsmbclient/smbwrapper/smbw_dir.c                   int count)
count              48 examples/libsmbclient/smbwrapper/smbw_dir.c         for (remaining = count;
count              81 examples/libsmbclient/smbwrapper/smbw_dir.c 	return(count - remaining);
count             441 examples/libsmbclient/smbwrapper/wrapper.c static int getdentsx(int fd, struct dirent *external, unsigned int count, int (* f)(int, struct dirent *, unsigned int))
count             455 examples/libsmbclient/smbwrapper/wrapper.c                 n = (count / sizeof(struct dirent));
count             475 examples/libsmbclient/smbwrapper/wrapper.c         return (* f)(fd, external, count);
count             537 examples/libsmbclient/smbwrapper/wrapper.c static ssize_t readx(int fd, void *buf, size_t count, ssize_t (* f)(int, void *, size_t))
count             540 examples/libsmbclient/smbwrapper/wrapper.c 		return smbw_read(fd, buf, count);
count             543 examples/libsmbclient/smbwrapper/wrapper.c         return (* f)(fd, buf, count);
count             546 examples/libsmbclient/smbwrapper/wrapper.c static ssize_t writex(int fd, void *buf, size_t count, ssize_t (* f)(int, void *, size_t))
count             549 examples/libsmbclient/smbwrapper/wrapper.c 		return smbw_write(fd, buf, count);
count             552 examples/libsmbclient/smbwrapper/wrapper.c         return (* f)(fd, buf, count);
count             750 examples/libsmbclient/smbwrapper/wrapper.c int getdents(int fd, struct dirent *dirp, unsigned int count)
count             753 examples/libsmbclient/smbwrapper/wrapper.c         return getdentsx(fd, dirp, count, smbw_libc.getdents);
count             756 examples/libsmbclient/smbwrapper/wrapper.c int __getdents(int fd, struct dirent *dirp, unsigned int count)
count             759 examples/libsmbclient/smbwrapper/wrapper.c         return getdentsx(fd, dirp, count, smbw_libc.__getdents);
count             762 examples/libsmbclient/smbwrapper/wrapper.c int _getdents(int fd, struct dirent *dirp, unsigned int count)
count             765 examples/libsmbclient/smbwrapper/wrapper.c         return getdentsx(fd, dirp, count, smbw_libc._getdents);
count             768 examples/libsmbclient/smbwrapper/wrapper.c int getdents64(int fd, struct dirent64 *external, unsigned int count)
count             782 examples/libsmbclient/smbwrapper/wrapper.c                 n = (count / sizeof(struct dirent64));
count             789 examples/libsmbclient/smbwrapper/wrapper.c 		ret = smbw_getdents(fd, internal, count);
count             793 examples/libsmbclient/smbwrapper/wrapper.c                 ret = sizeof(struct dirent) * count;
count             795 examples/libsmbclient/smbwrapper/wrapper.c                 for (i = 0; count; i++, count--)
count             801 examples/libsmbclient/smbwrapper/wrapper.c         return (* smbw_libc.getdents64)(fd, external, count);
count             885 examples/libsmbclient/smbwrapper/wrapper.c ssize_t read(int fd, void *buf, size_t count)
count             888 examples/libsmbclient/smbwrapper/wrapper.c         return readx(fd, buf, count, smbw_libc.read);
count             891 examples/libsmbclient/smbwrapper/wrapper.c ssize_t __read(int fd, void *buf, size_t count)
count             894 examples/libsmbclient/smbwrapper/wrapper.c         return readx(fd, buf, count, smbw_libc.__read);
count             897 examples/libsmbclient/smbwrapper/wrapper.c ssize_t _read(int fd, void *buf, size_t count)
count             900 examples/libsmbclient/smbwrapper/wrapper.c         return readx(fd, buf, count, smbw_libc._read);
count             903 examples/libsmbclient/smbwrapper/wrapper.c ssize_t write(int fd, const void *buf, size_t count)
count             906 examples/libsmbclient/smbwrapper/wrapper.c         return writex(fd, (void *) buf, count, smbw_libc.write);
count             909 examples/libsmbclient/smbwrapper/wrapper.c ssize_t __write(int fd, const void *buf, size_t count)
count             912 examples/libsmbclient/smbwrapper/wrapper.c         return writex(fd, (void *) buf, count, smbw_libc.__write);
count             915 examples/libsmbclient/smbwrapper/wrapper.c ssize_t _write(int fd, const void *buf, size_t count)
count             918 examples/libsmbclient/smbwrapper/wrapper.c         return writex(fd, (void *) buf, count, smbw_libc._write);
count              77 examples/libsmbclient/smbwrapper/wrapper.h         ssize_t (* write)(int fd, void *buf, size_t count);
count              94 examples/libsmbclient/smbwrapper/wrapper.h         int (* getdents)(int fd, struct dirent *dirp, unsigned int count);
count              95 examples/libsmbclient/smbwrapper/wrapper.h         int (* __getdents)(int fd, struct dirent *dirp, unsigned int count);
count              96 examples/libsmbclient/smbwrapper/wrapper.h         int (* _getdents)(int fd, struct dirent *dirp, unsigned int count);
count              97 examples/libsmbclient/smbwrapper/wrapper.h         int (* getdents64)(int fd, struct dirent64 *dirp, unsigned int count);
count             104 examples/libsmbclient/smbwrapper/wrapper.h         ssize_t (* read)(int fd, void *buf, size_t count);
count             105 examples/libsmbclient/smbwrapper/wrapper.h         ssize_t (* __read)(int fd, void *buf, size_t count);
count             106 examples/libsmbclient/smbwrapper/wrapper.h         ssize_t (* _read)(int fd, void *buf, size_t count);
count             107 examples/libsmbclient/smbwrapper/wrapper.h         ssize_t (* __write)(int fd, void *buf, size_t count);
count             108 examples/libsmbclient/smbwrapper/wrapper.h         ssize_t (* _write)(int fd, void *buf, size_t count);
count              31 examples/libsmbclient/testbrowse2.c     int count = 0;
count              35 examples/libsmbclient/testbrowse2.c 	count++;
count              37 examples/libsmbclient/testbrowse2.c     return count;
count              52 examples/libsmbclient/testbrowse2.c     int		count, i;
count              54 examples/libsmbclient/testbrowse2.c     if ((count = smbitem_list_count(list)) == 0) return NULL;
count              55 examples/libsmbclient/testbrowse2.c     if ((array = malloc(count * sizeof(smbitem*))) == NULL){
count              60 examples/libsmbclient/testbrowse2.c     for(i = 0; i < count; i++){
count              64 examples/libsmbclient/testbrowse2.c     qsort(array, count, sizeof(smbitem*), (qsort_cmp)smbitem_cmp);
count              66 examples/libsmbclient/testbrowse2.c     for(i = 0; i < count - 1; i++) array[i]->next = array[i + 1];
count              67 examples/libsmbclient/testbrowse2.c     array[count - 1]->next = NULL;
count             708 examples/pcap2nbench/main.cpp 	if (!drop_incomplete_sessions || current_fids.count(i->read_req.fid)) {
count             719 examples/pcap2nbench/main.cpp 	if (!drop_incomplete_sessions||current_fids.count(i->write_req.fid)) {
count             727 examples/pcap2nbench/main.cpp 	if (!drop_incomplete_sessions||current_fids.count(i->close_req.fid)) {
count             378 lib/async_req/async_sock.c 	int count;
count             388 lib/async_req/async_sock.c 			       struct iovec *iov, int count)
count             400 lib/async_req/async_sock.c 	state->count = count;
count             402 lib/async_req/async_sock.c 		state, iov, sizeof(struct iovec) * count);
count             440 lib/async_req/async_sock.c 	for (i=0; i<state->count; i++) {
count             444 lib/async_req/async_sock.c 	written = sys_writev(state->fd, state->iov, state->count);
count             474 lib/async_req/async_sock.c 		state->count -= 1;
count              47 lib/async_req/async_sock.h 			       struct iovec *iov, int count);
count             111 lib/crypto/md5.c     uint_t count;
count             115 lib/crypto/md5.c     count = (ctx->bits[0] >> 3) & 0x3F;
count             119 lib/crypto/md5.c     p = ctx->in + count;
count             123 lib/crypto/md5.c     count = 64 - 1 - count;
count             126 lib/crypto/md5.c     if (count < 8) {
count             128 lib/crypto/md5.c 	memset(p, 0, count);
count             136 lib/crypto/md5.c 	memset(p, 0, count - 8);
count             567 lib/replace/replace.c 	size_t i, count;
count             575 lib/replace/replace.c 	count=i;
count             577 lib/replace/replace.c 	for (i=0;i<count;) {
count             581 lib/replace/replace.c 			memmove(&environ[i], &environ[i+1], (count-i)*sizeof(char *));
count             582 lib/replace/replace.c 			count--;
count            1189 lib/replace/snprintf.c  int vsnprintf (char *str, size_t count, const char *fmt, va_list args)
count            1191 lib/replace/snprintf.c 	return dopr(str, count, fmt, args);
count            1202 lib/replace/snprintf.c  int snprintf(char *str,size_t count,const char *fmt,...)
count            1208 lib/replace/snprintf.c 	ret = vsnprintf(str, count, fmt, ap);
count              23 lib/replace/test/shared_mmap.c 	int count=7;
count              42 lib/replace/test/shared_mmap.c 		while (count-- && buf[9124] != 55732) sleep(1);
count              44 lib/replace/test/shared_mmap.c 		if (count <= 0) exit(1);
count              62 lib/replace/test/shared_mmap.c 	while (count-- && buf[1763] != 7268) sleep(1);
count              66 lib/replace/test/shared_mmap.c 	if (count > 0) exit(0);
count             118 lib/smbconf/smbconf.c 	uint32_t count;
count             141 lib/smbconf/smbconf.c 	for (count = 0; count < tmp_num_shares; count++) {
count             143 lib/smbconf/smbconf.c 					 tmp_share_names[count],
count             144 lib/smbconf/smbconf.c 					 &tmp_services[count]);
count              87 lib/smbconf/smbconf_private.h 				   uint32_t count,
count             300 lib/smbconf/smbconf_txt.c 	uint32_t count;
count             339 lib/smbconf/smbconf_txt.c 	for (count = 0; count < pd(ctx)->cache->num_shares; count++) {
count             340 lib/smbconf/smbconf_txt.c 		if (strequal(pd(ctx)->cache->share_names[count], GLOBAL_NAME) ||
count             341 lib/smbconf/smbconf_txt.c 		    (pd(ctx)->cache->share_names[count] == NULL))
count             348 lib/smbconf/smbconf_txt.c 					pd(ctx)->cache->share_names[count]);
count             403 lib/smbconf/smbconf_txt.c 	uint32_t sidx, count;
count             437 lib/smbconf/smbconf_txt.c 	for (count = 0; count < pd(ctx)->cache->num_params[sidx]; count++) {
count             440 lib/smbconf/smbconf_txt.c 				count,
count             441 lib/smbconf/smbconf_txt.c 				pd(ctx)->cache->param_names[sidx][count]);
count             447 lib/smbconf/smbconf_txt.c 				count,
count             448 lib/smbconf/smbconf_txt.c 				pd(ctx)->cache->param_values[sidx][count]);
count             454 lib/smbconf/smbconf_txt.c 	tmp_service->num_params = count;
count             455 lib/smbconf/smbconf_txt.c 	if (count > 0) {
count             548 lib/smbconf/smbconf_txt.c 	uint32_t sidx, count;
count             568 lib/smbconf/smbconf_txt.c 	for (count = 0; count < pd(ctx)->cache->num_params[sidx]; count++) {
count             569 lib/smbconf/smbconf_txt.c 		if (strequal(pd(ctx)->cache->param_names[sidx][count],
count             575 lib/smbconf/smbconf_txt.c 				pd(ctx)->cache->param_values[sidx][count]);
count              80 lib/smbconf/smbconf_util.c 				   uint32_t count,
count              89 lib/smbconf/smbconf_util.c 	new_array = talloc_realloc(mem_ctx, *array, char *, count + 1);
count              95 lib/smbconf/smbconf_util.c 		new_array[count] = NULL;
count              97 lib/smbconf/smbconf_util.c 		new_array[count] = talloc_strdup(new_array, string);
count              98 lib/smbconf/smbconf_util.c 		if (new_array[count] == NULL) {
count            2019 lib/socket_wrapper/socket_wrapper.c int swrap_readv(int s, const struct iovec *vector, size_t count)
count            2026 lib/socket_wrapper/socket_wrapper.c 		return real_readv(s, vector, count);
count            2030 lib/socket_wrapper/socket_wrapper.c 	if (count > 0) {
count            2033 lib/socket_wrapper/socket_wrapper.c 		for (i=0; i < count; i++) {
count            2040 lib/socket_wrapper/socket_wrapper.c 		count = i;
count            2041 lib/socket_wrapper/socket_wrapper.c 		if (count == 0) {
count            2045 lib/socket_wrapper/socket_wrapper.c 			count = 1;
count            2049 lib/socket_wrapper/socket_wrapper.c 	ret = real_readv(s, vector, count);
count            2068 lib/socket_wrapper/socket_wrapper.c 		for (i=0; i < count; i++) {
count            2084 lib/socket_wrapper/socket_wrapper.c int swrap_writev(int s, const struct iovec *vector, size_t count)
count            2091 lib/socket_wrapper/socket_wrapper.c 		return real_writev(s, vector, count);
count            2095 lib/socket_wrapper/socket_wrapper.c 	if (count > 0) {
count            2098 lib/socket_wrapper/socket_wrapper.c 		for (i=0; i < count; i++) {
count            2105 lib/socket_wrapper/socket_wrapper.c 		count = i;
count            2106 lib/socket_wrapper/socket_wrapper.c 		if (count == 0) {
count            2110 lib/socket_wrapper/socket_wrapper.c 			count = 1;
count            2114 lib/socket_wrapper/socket_wrapper.c 	ret = real_writev(s, vector, count);
count            2131 lib/socket_wrapper/socket_wrapper.c 		for (i=0; i < count; i++) {
count              55 lib/socket_wrapper/socket_wrapper.h int swrap_readv(int s, const struct iovec *vector, size_t count);
count              56 lib/socket_wrapper/socket_wrapper.h int swrap_writev(int s, const struct iovec *vector, size_t count);
count             129 lib/socket_wrapper/socket_wrapper.h #define readv(s, vector, count)		swrap_readv(s,vector, count)
count             134 lib/socket_wrapper/socket_wrapper.h #define writev(s, vector, count)	swrap_writev(s,vector, count)
count            1637 lib/talloc/talloc.c void *_talloc_array(const void *ctx, size_t el_size, unsigned count, const char *name)
count            1639 lib/talloc/talloc.c 	if (count >= MAX_TALLOC_SIZE/el_size) {
count            1642 lib/talloc/talloc.c 	return _talloc_named_const(ctx, el_size * count, name);
count            1648 lib/talloc/talloc.c void *_talloc_zero_array(const void *ctx, size_t el_size, unsigned count, const char *name)
count            1650 lib/talloc/talloc.c 	if (count >= MAX_TALLOC_SIZE/el_size) {
count            1653 lib/talloc/talloc.c 	return _talloc_zero(ctx, el_size * count, name);
count            1659 lib/talloc/talloc.c void *_talloc_realloc_array(const void *ctx, void *ptr, size_t el_size, unsigned count, const char *name)
count            1661 lib/talloc/talloc.c 	if (count >= MAX_TALLOC_SIZE/el_size) {
count            1664 lib/talloc/talloc.c 	return _talloc_realloc(ctx, ptr, el_size * count, name);
count              93 lib/talloc/talloc.h #define talloc_zero_array(ctx, type, count) (type *)_talloc_zero_array(ctx, sizeof(type), count, #type)
count              94 lib/talloc/talloc.h #define talloc_array(ctx, type, count) (type *)_talloc_array(ctx, sizeof(type), count, #type)
count              95 lib/talloc/talloc.h #define talloc_array_size(ctx, size, count) _talloc_array(ctx, size, count, __location__)
count              96 lib/talloc/talloc.h #define talloc_array_ptrtype(ctx, ptr, count) (_TALLOC_TYPEOF(ptr))talloc_array_size(ctx, sizeof(*(ptr)), count)
count              99 lib/talloc/talloc.h #define talloc_realloc(ctx, p, type, count) (type *)_talloc_realloc_array(ctx, p, sizeof(type), count, #type)
count             113 lib/talloc/talloc.h #define talloc_array_p(ctx, type, count) talloc_array(ctx, type, count)
count             114 lib/talloc/talloc.h #define talloc_realloc_p(ctx, p, type, count) talloc_realloc(ctx, p, type, count)
count             162 lib/talloc/talloc.h void *_talloc_array(const void *ctx, size_t el_size, unsigned count, const char *name);
count             163 lib/talloc/talloc.h void *_talloc_zero_array(const void *ctx, size_t el_size, unsigned count, const char *name);
count             164 lib/talloc/talloc.h void *_talloc_realloc_array(const void *ctx, void *ptr, size_t el_size, unsigned count, const char *name);
count             572 lib/talloc/testsuite.c 		int count;
count             614 lib/talloc/testsuite.c 		int count;
count             617 lib/talloc/testsuite.c 		int count;
count             627 lib/talloc/testsuite.c 	el1->count = 1;
count             793 lib/talloc/testsuite.c 	unsigned count;
count             801 lib/talloc/testsuite.c 	count = 0;
count             810 lib/talloc/testsuite.c 		count += 3 * loop;
count             813 lib/talloc/testsuite.c 	fprintf(stderr, "talloc: %.0f ops/sec\n", count/timeval_elapsed(&tv));
count             820 lib/talloc/testsuite.c 	count = 0;
count             829 lib/talloc/testsuite.c 		count += 3 * loop;
count             834 lib/talloc/testsuite.c 	fprintf(stderr, "talloc_pool: %.0f ops/sec\n", count/timeval_elapsed(&tv));
count             837 lib/talloc/testsuite.c 	count = 0;
count             848 lib/talloc/testsuite.c 		count += 3 * loop;
count             850 lib/talloc/testsuite.c 	fprintf(stderr, "malloc: %.0f ops/sec\n", count/timeval_elapsed(&tv));
count             369 lib/tdb/common/freelist.c 	int count=0;
count             377 lib/tdb/common/freelist.c 		count++;
count             381 lib/tdb/common/freelist.c 	return count;
count             101 lib/tdb/common/lock.c 	int count = 1000;
count             102 lib/tdb/common/lock.c 	while (count--) {
count             130 lib/tdb/common/lock.c 	if (tdb->global_lock.count && 
count             135 lib/tdb/common/lock.c 	if (tdb->global_lock.count) {
count             149 lib/tdb/common/lock.c 			if (tdb->lockrecs[i].count == 0) {
count             161 lib/tdb/common/lock.c 			tdb->lockrecs[i].count++;
count             186 lib/tdb/common/lock.c 	tdb->lockrecs[tdb->num_lockrecs].count = 1;
count             225 lib/tdb/common/lock.c 	if (tdb->global_lock.count && 
count             230 lib/tdb/common/lock.c 	if (tdb->global_lock.count) {
count             250 lib/tdb/common/lock.c 	if ((lck == NULL) || (lck->count == 0)) {
count             255 lib/tdb/common/lock.c 	if (lck->count > 1) {
count             256 lib/tdb/common/lock.c 		lck->count--;
count             304 lib/tdb/common/lock.c 	if (tdb->have_transaction_lock || tdb->global_lock.count) {
count             347 lib/tdb/common/lock.c 	if (tdb->global_lock.count && tdb->global_lock.ltype == ltype) {
count             348 lib/tdb/common/lock.c 		tdb->global_lock.count++;
count             352 lib/tdb/common/lock.c 	if (tdb->global_lock.count) {
count             371 lib/tdb/common/lock.c 	tdb->global_lock.count = 1;
count             391 lib/tdb/common/lock.c 	if (tdb->global_lock.ltype != ltype || tdb->global_lock.count == 0) {
count             395 lib/tdb/common/lock.c 	if (tdb->global_lock.count > 1) {
count             396 lib/tdb/common/lock.c 		tdb->global_lock.count--;
count             407 lib/tdb/common/lock.c 	tdb->global_lock.count = 0;
count             508 lib/tdb/common/lock.c 	if (tdb->global_lock.count) {
count             541 lib/tdb/common/lock.c 	uint32_t count = 0;
count             543 lib/tdb/common/lock.c 	if (tdb->global_lock.count) {
count             551 lib/tdb/common/lock.c 			count++;
count             552 lib/tdb/common/lock.c 	return (count == 1 ? tdb->methods->tdb_brlock(tdb, off, F_UNLCK, F_SETLKW, 0, 1) : 0);
count             418 lib/tdb/common/open.c 	if (tdb->num_locks != 0 || tdb->global_lock.count) {
count             122 lib/tdb/common/tdb_private.h 	uint32_t count;
count             418 lib/tdb/common/transaction.c 	if (tdb->num_locks != 0 || tdb->global_lock.count) {
count             529 lib/tdb/common/transaction.c 	if (tdb->global_lock.count != 0) {
count             531 lib/tdb/common/transaction.c 		tdb->global_lock.count = 0;
count             866 lib/tdb/common/transaction.c 	if (tdb->num_locks || tdb->global_lock.count) {
count             144 lib/tdb/common/traverse.c 	int ret, count = 0;
count             156 lib/tdb/common/traverse.c 		count++;
count             180 lib/tdb/common/traverse.c 			ret = count;
count             195 lib/tdb/common/traverse.c 		return count;
count             211 lib/tdb/tools/tdbbackup.c 	int count = -1;
count             218 lib/tdb/tools/tdbbackup.c 		count = tdb_traverse(tdb, test_fn, NULL);
count             223 lib/tdb/tools/tdbbackup.c 	if (count < 0) {
count             228 lib/tdb/tools/tdbbackup.c 	printf("%s : %d records\n", fname, count);
count             383 lib/tdb/tools/tdbtool.c 	int count;
count             385 lib/tdb/tools/tdbtool.c 	if ((count = tdb_traverse(tdb, traverse_fn, NULL)) == -1)
count             388 lib/tdb/tools/tdbtool.c 		printf("%d records totalling %d bytes\n", count, total_bytes);
count              55 lib/tevent/testsuite.c 			  int signum, int count, void *info, void *private_data)
count              58 lib/tevent/testsuite.c 	(*countp) += count;
count              62 lib/tevent/tevent.h 					int count,
count              43 lib/tevent/tevent_signal.c 	uint32_t count;
count              47 lib/tevent/tevent_signal.c #define SIG_INCREMENT(s) (s).count++
count              49 lib/tevent/tevent_signal.c #define SIG_PENDING(s) ((s).seen != (s).count)
count              76 lib/tevent/tevent_signal.c 	return s.count - s.seen;
count             112 lib/tevent/tevent_signal.c 	uint32_t count = sig_count(sig_state->signal_count[signum]);
count             115 lib/tevent/tevent_signal.c 	uint32_t ofs = (sig_state->signal_count[signum].seen + count) %
count             122 lib/tevent/tevent_signal.c 	if (count+1 == SA_INFO_QUEUE_COUNT) {
count             326 lib/tevent/tevent_signal.c 		uint32_t count = sig_count(counter);
count             333 lib/tevent/tevent_signal.c 		if (count == 0) {
count             345 lib/tevent/tevent_signal.c 				for (j=0;j<count;j++) {
count             362 lib/tevent/tevent_signal.c 			se->handler(ev, se, i, count, NULL, se->private_data);
count             371 lib/tevent/tevent_signal.c 			for (j=0;j<count;j++) {
count             381 lib/tevent/tevent_signal.c 		SIG_SEEN(sig_state->signal_count[i], count);
count             382 lib/tevent/tevent_signal.c 		SIG_SEEN(sig_state->got_signal, count);
count             257 lib/util/charset/util_unistr.c 	size_t count = 0;
count             266 lib/util/charset/util_unistr.c 		count++;
count             270 lib/util/charset/util_unistr.c 		return count;
count             277 lib/util/charset/util_unistr.c 			count += 1;
count             279 lib/util/charset/util_unistr.c 			count += 2;
count             284 lib/util/charset/util_unistr.c 	return count;
count             612 lib/util/charset/util_unistr.c 	size_t count = 0;
count             617 lib/util/charset/util_unistr.c 		if (c2 == c) count++;
count             621 lib/util/charset/util_unistr.c 	return count;
count              57 lib/util/idtree.c 	int			 count;
count             161 lib/util/idtree.c 			p->count++;
count             172 lib/util/idtree.c 	p->count++;
count             211 lib/util/idtree.c 		if (!p->count)
count             221 lib/util/idtree.c 				pn->bitmap = pn->count = 0;
count             227 lib/util/idtree.c 		pn->count = 1;
count             261 lib/util/idtree.c 		while(*paa && ! --((**paa)->count)){
count             307 lib/util/idtree.c 	if ( idp->top && idp->top->count == 1 && 
count             312 lib/util/idtree.c 		idp->top->bitmap = idp->top->count = 0;
count              43 lib/util/memory.h #define malloc_array_p(type, count) (type *)realloc_array(NULL, sizeof(type), count, false)
count              48 lib/util/memory.h #define realloc_p(p, type, count) (type *)realloc_array(p, sizeof(type), count, false)
count             159 lib/util/ms_fnmatch.c 	int ret, count, i;
count             200 lib/util/ms_fnmatch.c 	for (count=i=0;pattern[i];i++) {
count             201 lib/util/ms_fnmatch.c 		if (pattern[i] == '*' || pattern[i] == '<') count++;
count             204 lib/util/ms_fnmatch.c 	max_n = talloc_zero_array(NULL, struct max_n, count);
count             238 lib/util/util.c _PUBLIC_ bool fcntl_lock(int fd, int op, off_t offset, off_t count, int type)
count             243 lib/util/util.c 	DEBUG(8,("fcntl_lock %d %d %.0f %.0f %d\n",fd,op,(double)offset,(double)count,type));
count             248 lib/util/util.c 	lock.l_len = count;
count             273 lib/util/util.c 			(double)offset,(double)count,op,type,strerror(errno)));
count             520 lib/util/util.c _PUBLIC_ void *realloc_array(void *ptr, size_t el_size, unsigned count, bool free_on_fail)
count             523 lib/util/util.c 	if (count == 0 ||
count             524 lib/util/util.c 	    count >= MAX_MALLOC_SIZE/el_size) {
count             530 lib/util/util.c 		return malloc(el_size * count);
count             532 lib/util/util.c 	return realloc(ptr, el_size * count);
count             539 lib/util/util.c void *malloc_array(size_t el_size, unsigned int count)
count             541 lib/util/util.c 	return realloc_array(NULL, el_size, count, false);
count             588 lib/util/util.c 	size_t count = 0;
count             591 lib/util/util.c 		if (*s == c) count++;
count             595 lib/util/util.c 	return count;
count             604 lib/util/util.h _PUBLIC_ bool fcntl_lock(int fd, int op, off_t offset, off_t count, int type);
count             660 lib/util/util.h _PUBLIC_ void *realloc_array(void *ptr, size_t el_size, unsigned count, bool free_on_fail);
count             662 lib/util/util.h void *malloc_array(size_t el_size, unsigned int count);
count              61 lib/util/util_ldb.c 			 expr?expr:"NULL", res->count));
count              63 lib/util/util_ldb.c 		ret = res->count;
count              91 lib/util/util_ldb.c 	int count;
count              94 lib/util/util_ldb.c 	count = gendb_search_v(ldb, mem_ctx, basedn, res, attrs, format, ap);
count              97 lib/util/util_ldb.c 	return count;
count             118 lib/util/util_str.c 	size_t count;
count             119 lib/util/util_str.c 	for(count = 0; *s++; count++)
count             121 lib/util/util_str.c 	return count;
count              98 lib/zlib/contrib/blast/blast.c     short *count;       /* number of symbols of each length */
count             128 lib/zlib/contrib/blast/blast.c     int count;          /* number of codes of length len */
count             138 lib/zlib/contrib/blast/blast.c     next = h->count + 1;
count             143 lib/zlib/contrib/blast/blast.c             count = *next++;
count             144 lib/zlib/contrib/blast/blast.c             if (code < first + count) { /* if length len, return symbol */
count             149 lib/zlib/contrib/blast/blast.c             index += count;             /* else update for next length */
count             150 lib/zlib/contrib/blast/blast.c             first += count;
count             207 lib/zlib/contrib/blast/blast.c         h->count[len] = 0;
count             209 lib/zlib/contrib/blast/blast.c         (h->count[length[symbol]])++;   /* assumes lengths are within bounds */
count             210 lib/zlib/contrib/blast/blast.c     if (h->count[0] == n)               /* no codes! */
count             217 lib/zlib/contrib/blast/blast.c         left -= h->count[len];          /* deduct count from possible codes */
count             224 lib/zlib/contrib/blast/blast.c         offs[len + 1] = offs[len] + h->count[len];
count              58 lib/zlib/contrib/infback9/inftree9.c     unsigned short count[MAXBITS+1];    /* number of codes of each length */
count             110 lib/zlib/contrib/infback9/inftree9.c         count[len] = 0;
count             112 lib/zlib/contrib/infback9/inftree9.c         count[lens[sym]]++;
count             117 lib/zlib/contrib/infback9/inftree9.c         if (count[max] != 0) break;
count             121 lib/zlib/contrib/infback9/inftree9.c         if (count[min] != 0) break;
count             128 lib/zlib/contrib/infback9/inftree9.c         left -= count[len];
count             137 lib/zlib/contrib/infback9/inftree9.c         offs[len + 1] = offs[len] + count[len];
count             247 lib/zlib/contrib/infback9/inftree9.c         if (--(count[len]) == 0) {
count             265 lib/zlib/contrib/infback9/inftree9.c                 left -= count[curr + drop];
count             189 lib/zlib/contrib/puff/puff.c     short *count;       /* number of symbols of each length */
count             222 lib/zlib/contrib/puff/puff.c     int count;          /* number of codes of length len */
count             228 lib/zlib/contrib/puff/puff.c         count = h->count[len];
count             229 lib/zlib/contrib/puff/puff.c         if (code < first + count)       /* if length len, return symbol */
count             231 lib/zlib/contrib/puff/puff.c         index += count;                 /* else update for next length */
count             232 lib/zlib/contrib/puff/puff.c         first += count;
count             250 lib/zlib/contrib/puff/puff.c     int count;          /* number of codes of length len */
count             260 lib/zlib/contrib/puff/puff.c     next = h->count + 1;
count             265 lib/zlib/contrib/puff/puff.c             count = *next++;
count             266 lib/zlib/contrib/puff/puff.c             if (code < first + count) { /* if length len, return symbol */
count             271 lib/zlib/contrib/puff/puff.c             index += count;             /* else update for next length */
count             272 lib/zlib/contrib/puff/puff.c             first += count;
count             328 lib/zlib/contrib/puff/puff.c         h->count[len] = 0;
count             330 lib/zlib/contrib/puff/puff.c         (h->count[length[symbol]])++;   /* assumes lengths are within bounds */
count             331 lib/zlib/contrib/puff/puff.c     if (h->count[0] == n)               /* no codes! */
count             338 lib/zlib/contrib/puff/puff.c         left -= h->count[len];          /* deduct count from possible codes */
count             345 lib/zlib/contrib/puff/puff.c         offs[len + 1] = offs[len] + h->count[len];
count             685 lib/zlib/contrib/puff/puff.c     if (err < 0 || (err > 0 && nlen - lencode.count[0] != 1))
count             690 lib/zlib/contrib/puff/puff.c     if (err < 0 || (err > 0 && ndist - distcode.count[0] != 1))
count              58 lib/zlib/inftrees.c     unsigned short count[MAXBITS+1];    /* number of codes of each length */
count             108 lib/zlib/inftrees.c         count[len] = 0;
count             110 lib/zlib/inftrees.c         count[lens[sym]]++;
count             115 lib/zlib/inftrees.c         if (count[max] != 0) break;
count             127 lib/zlib/inftrees.c         if (count[min] != 0) break;
count             134 lib/zlib/inftrees.c         left -= count[len];
count             143 lib/zlib/inftrees.c         offs[len + 1] = offs[len] + count[len];
count             254 lib/zlib/inftrees.c         if (--(count[len]) == 0) {
count             272 lib/zlib/inftrees.c                 left -= count[curr + drop];
count             716 lib/zlib/trees.c     int count = 0;             /* repeat count of the current code */
count             725 lib/zlib/trees.c         if (++count < max_count && curlen == nextlen) {
count             727 lib/zlib/trees.c         } else if (count < min_count) {
count             728 lib/zlib/trees.c             s->bl_tree[curlen].Freq += count;
count             732 lib/zlib/trees.c         } else if (count <= 10) {
count             737 lib/zlib/trees.c         count = 0; prevlen = curlen;
count             761 lib/zlib/trees.c     int count = 0;             /* repeat count of the current code */
count             770 lib/zlib/trees.c         if (++count < max_count && curlen == nextlen) {
count             772 lib/zlib/trees.c         } else if (count < min_count) {
count             773 lib/zlib/trees.c             do { send_code(s, curlen, s->bl_tree); } while (--count != 0);
count             777 lib/zlib/trees.c                 send_code(s, curlen, s->bl_tree); count--;
count             779 lib/zlib/trees.c             Assert(count >= 3 && count <= 6, " 3_6?");
count             780 lib/zlib/trees.c             send_code(s, REP_3_6, s->bl_tree); send_bits(s, count-3, 2);
count             782 lib/zlib/trees.c         } else if (count <= 10) {
count             783 lib/zlib/trees.c             send_code(s, REPZ_3_10, s->bl_tree); send_bits(s, count-3, 3);
count             786 lib/zlib/trees.c             send_code(s, REPZ_11_138, s->bl_tree); send_bits(s, count-11, 7);
count             788 lib/zlib/trees.c         count = 0; prevlen = curlen;
count             601 librpc/gen_ndr/cli_lsa.c 				uint32_t *count /* [in,out] [ref] */)
count             612 librpc/gen_ndr/cli_lsa.c 	r.in.count = count;
count             639 librpc/gen_ndr/cli_lsa.c 	*count = *r.out.count;
count             652 librpc/gen_ndr/cli_lsa.c 			       uint32_t *count /* [in,out] [ref] */)
count             662 librpc/gen_ndr/cli_lsa.c 	r.in.count = count;
count             689 librpc/gen_ndr/cli_lsa.c 	*count = *r.out.count;
count            2433 librpc/gen_ndr/cli_lsa.c 				uint32_t *count /* [in,out] [ref] */,
count            2445 librpc/gen_ndr/cli_lsa.c 	r.in.count = count;
count            2474 librpc/gen_ndr/cli_lsa.c 	*count = *r.out.count;
count            2488 librpc/gen_ndr/cli_lsa.c 				 uint32_t *count /* [in,out] [ref] */,
count            2501 librpc/gen_ndr/cli_lsa.c 	r.in.count = count;
count            2530 librpc/gen_ndr/cli_lsa.c 	*count = *r.out.count;
count            2878 librpc/gen_ndr/cli_lsa.c 				 uint32_t *count /* [in,out] [ref] */,
count            2891 librpc/gen_ndr/cli_lsa.c 	r.in.count = count;
count            2920 librpc/gen_ndr/cli_lsa.c 	*count = *r.out.count;
count            3192 librpc/gen_ndr/cli_lsa.c 				uint32_t *count /* [in,out] [ref] */,
count            3203 librpc/gen_ndr/cli_lsa.c 	r.in.count = count;
count            3232 librpc/gen_ndr/cli_lsa.c 	*count = *r.out.count;
count            3245 librpc/gen_ndr/cli_lsa.c 				 uint32_t *count /* [in,out] [ref] */,
count            3257 librpc/gen_ndr/cli_lsa.c 	r.in.count = count;
count            3286 librpc/gen_ndr/cli_lsa.c 	*count = *r.out.count;
count              78 librpc/gen_ndr/cli_lsa.h 				uint32_t *count /* [in,out] [ref] */);
count              86 librpc/gen_ndr/cli_lsa.h 			       uint32_t *count /* [in,out] [ref] */);
count             294 librpc/gen_ndr/cli_lsa.h 				uint32_t *count /* [in,out] [ref] */,
count             305 librpc/gen_ndr/cli_lsa.h 				 uint32_t *count /* [in,out] [ref] */,
count             339 librpc/gen_ndr/cli_lsa.h 				 uint32_t *count /* [in,out] [ref] */,
count             366 librpc/gen_ndr/cli_lsa.h 				uint32_t *count /* [in,out] [ref] */,
count             376 librpc/gen_ndr/cli_lsa.h 				 uint32_t *count /* [in,out] [ref] */,
count             472 librpc/gen_ndr/cli_netlogon.c 				   uint32_t count /* [in]  */,
count             489 librpc/gen_ndr/cli_netlogon.c 	r.in.count = count;
count            1659 librpc/gen_ndr/cli_netlogon.c 					    uint32_t count /* [in] [range(0,32000)] */,
count            1669 librpc/gen_ndr/cli_netlogon.c 	r.in.count = count;
count            1851 librpc/gen_ndr/cli_netlogon.c 					      uint32_t count /* [in] [range(0,32000)] */,
count            1861 librpc/gen_ndr/cli_netlogon.c 	r.in.count = count;
count              87 librpc/gen_ndr/cli_netlogon.h 				   uint32_t count /* [in]  */,
count             267 librpc/gen_ndr/cli_netlogon.h 					    uint32_t count /* [in] [range(0,32000)] */,
count             293 librpc/gen_ndr/cli_netlogon.h 					      uint32_t count /* [in] [range(0,32000)] */,
count              16 librpc/gen_ndr/cli_spoolss.c 				     uint32_t *count /* [out] [ref] */,
count              54 librpc/gen_ndr/cli_spoolss.c 	*count = *r.out.count;
count             231 librpc/gen_ndr/cli_spoolss.c 				 uint32_t *count /* [out] [ref] */,
count             270 librpc/gen_ndr/cli_spoolss.c 	*count = *r.out.count;
count             524 librpc/gen_ndr/cli_spoolss.c 					   uint32_t *count /* [out] [ref] */,
count             562 librpc/gen_ndr/cli_spoolss.c 	*count = *r.out.count;
count             775 librpc/gen_ndr/cli_spoolss.c 					    uint32_t *count /* [out] [ref] */,
count             813 librpc/gen_ndr/cli_spoolss.c 	*count = *r.out.count;
count            1693 librpc/gen_ndr/cli_spoolss.c 				  uint32_t *count /* [out] [ref] */,
count            1730 librpc/gen_ndr/cli_spoolss.c 	*count = *r.out.count;
count            1748 librpc/gen_ndr/cli_spoolss.c 				  uint32_t *count /* [out] [ref] */,
count            1785 librpc/gen_ndr/cli_spoolss.c 	*count = *r.out.count;
count            1803 librpc/gen_ndr/cli_spoolss.c 				     uint32_t *count /* [out] [ref] */,
count            1840 librpc/gen_ndr/cli_spoolss.c 	*count = *r.out.count;
count            2439 librpc/gen_ndr/cli_spoolss.c 					       uint32_t *count /* [out] [ref] */,
count            2477 librpc/gen_ndr/cli_spoolss.c 	*count = *r.out.count;
count            3762 librpc/gen_ndr/cli_spoolss.c 					  uint32_t *count /* [out] [ref] */,
count            3798 librpc/gen_ndr/cli_spoolss.c 	*count = *r.out.count;
count              11 librpc/gen_ndr/cli_spoolss.h 				     uint32_t *count /* [out] [ref] */,
count              48 librpc/gen_ndr/cli_spoolss.h 				 uint32_t *count /* [out] [ref] */,
count              88 librpc/gen_ndr/cli_spoolss.h 					   uint32_t *count /* [out] [ref] */,
count             125 librpc/gen_ndr/cli_spoolss.h 					    uint32_t *count /* [out] [ref] */,
count             247 librpc/gen_ndr/cli_spoolss.h 				  uint32_t *count /* [out] [ref] */,
count             257 librpc/gen_ndr/cli_spoolss.h 				  uint32_t *count /* [out] [ref] */,
count             267 librpc/gen_ndr/cli_spoolss.h 				     uint32_t *count /* [out] [ref] */,
count             323 librpc/gen_ndr/cli_spoolss.h 					       uint32_t *count /* [out] [ref] */,
count             492 librpc/gen_ndr/cli_spoolss.h 					  uint32_t *count /* [out] [ref] */,
count             221 librpc/gen_ndr/dfs.h 	uint32_t count;
count             226 librpc/gen_ndr/dfs.h 	uint32_t count;
count             231 librpc/gen_ndr/dfs.h 	uint32_t count;
count             236 librpc/gen_ndr/dfs.h 	uint32_t count;
count             241 librpc/gen_ndr/dfs.h 	uint32_t count;
count             246 librpc/gen_ndr/dfs.h 	uint32_t count;
count             251 librpc/gen_ndr/dfs.h 	uint32_t count;
count             256 librpc/gen_ndr/dfs.h 	uint32_t count;
count              25 librpc/gen_ndr/drsblobs.h 	uint32_t count;
count              41 librpc/gen_ndr/drsblobs.h 	uint32_t count;
count              47 librpc/gen_ndr/drsblobs.h 	uint32_t count;
count              96 librpc/gen_ndr/drsblobs.h 	uint32_t count;
count             306 librpc/gen_ndr/drsblobs.h 	uint32_t count;
count             312 librpc/gen_ndr/drsblobs.h 	uint32_t count;
count             156 librpc/gen_ndr/drsuapi.h 	uint32_t count;/* [range(0,0x100000)] */
count             457 librpc/gen_ndr/drsuapi.h 	uint32_t count;/* [range(0,0x100000)] */
count             521 librpc/gen_ndr/drsuapi.h 	uint32_t count;/* [range(0,1048576)] */
count             716 librpc/gen_ndr/drsuapi.h 	uint32_t count;/* [range(1,10000)] */
count             841 librpc/gen_ndr/drsuapi.h 	uint32_t count;/* [range(1,10000)] */
count             856 librpc/gen_ndr/drsuapi.h 	uint32_t count;
count             883 librpc/gen_ndr/drsuapi.h 	uint32_t count;/* [range(0,10000)] */
count             937 librpc/gen_ndr/drsuapi.h 	uint32_t count;/* [range(0,10000)] */
count             959 librpc/gen_ndr/drsuapi.h 	uint32_t count;/* [range(0,10000)] */
count             982 librpc/gen_ndr/drsuapi.h 	uint32_t count;/* [range(0,10000)] */
count             997 librpc/gen_ndr/drsuapi.h 	uint32_t count;/* [range(0,10000)] */
count            1092 librpc/gen_ndr/drsuapi.h 	uint32_t count;/* [range(0,10000)] */
count            1100 librpc/gen_ndr/drsuapi.h 	uint32_t count;/* [range(0,10000)] */
count            1202 librpc/gen_ndr/drsuapi.h 	uint32_t count;
count            1208 librpc/gen_ndr/drsuapi.h 	uint32_t count;
count            1223 librpc/gen_ndr/drsuapi.h 	uint32_t count;
count            1237 librpc/gen_ndr/drsuapi.h 	uint32_t count;
count            1285 librpc/gen_ndr/drsuapi.h 	uint32_t count;
count            1304 librpc/gen_ndr/drsuapi.h 	uint32_t count;
count            1310 librpc/gen_ndr/drsuapi.h 	uint32_t count;
count            1323 librpc/gen_ndr/drsuapi.h 	uint32_t count;
count            1339 librpc/gen_ndr/drsuapi.h 	uint32_t count;
count            1360 librpc/gen_ndr/drsuapi.h 	uint32_t count;
count            1376 librpc/gen_ndr/drsuapi.h 	uint32_t count;/* [range(0,10000)] */
count            1393 librpc/gen_ndr/drsuapi.h 	uint32_t count;/* [range(0,256)] */
count              39 librpc/gen_ndr/lsa.h 	uint32_t count;
count              72 librpc/gen_ndr/lsa.h 	uint32_t count;
count             184 librpc/gen_ndr/lsa.h 	uint32_t count;
count             312 librpc/gen_ndr/lsa.h 	uint32_t count;
count             352 librpc/gen_ndr/lsa.h 	uint32_t count;/* [range(0,1000)] */
count             357 librpc/gen_ndr/lsa.h 	uint32_t count;/* [range(0,1000)] */
count             392 librpc/gen_ndr/lsa.h 	uint32_t count;/* [range(0,1000)] */
count             402 librpc/gen_ndr/lsa.h 	uint32_t count;/* [range(0,1000)] */
count             618 librpc/gen_ndr/lsa.h 	uint32_t count;/* [range(0,256)] */
count             623 librpc/gen_ndr/lsa.h 	uint32_t count;
count             667 librpc/gen_ndr/lsa.h 	uint32_t count;/* [range(0,1000)] */
count             679 librpc/gen_ndr/lsa.h 	uint32_t count;/* [range(0,1000)] */
count             691 librpc/gen_ndr/lsa.h 	uint32_t count;/* [range(0,1000)] */
count             738 librpc/gen_ndr/lsa.h 	uint32_t count;/* [range(0,4000)] */
count             940 librpc/gen_ndr/lsa.h 		uint32_t *count;/* [ref] */
count             946 librpc/gen_ndr/lsa.h 		uint32_t *count;/* [ref] */
count             959 librpc/gen_ndr/lsa.h 		uint32_t *count;/* [ref] */
count             965 librpc/gen_ndr/lsa.h 		uint32_t *count;/* [ref] */
count            1543 librpc/gen_ndr/lsa.h 		uint32_t *count;/* [ref] */
count            1549 librpc/gen_ndr/lsa.h 		uint32_t *count;/* [ref] */
count            1565 librpc/gen_ndr/lsa.h 		uint32_t *count;/* [ref] */
count            1571 librpc/gen_ndr/lsa.h 		uint32_t *count;/* [ref] */
count            1667 librpc/gen_ndr/lsa.h 		uint32_t *count;/* [ref] */
count            1673 librpc/gen_ndr/lsa.h 		uint32_t *count;/* [ref] */
count            1750 librpc/gen_ndr/lsa.h 		uint32_t *count;/* [ref] */
count            1756 librpc/gen_ndr/lsa.h 		uint32_t *count;/* [ref] */
count            1771 librpc/gen_ndr/lsa.h 		uint32_t *count;/* [ref] */
count            1777 librpc/gen_ndr/lsa.h 		uint32_t *count;/* [ref] */
count            2195 librpc/gen_ndr/ndr_dfs.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            2200 librpc/gen_ndr/ndr_dfs.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            2201 librpc/gen_ndr/ndr_dfs.c 			for (cntr_s_1 = 0; cntr_s_1 < r->count; cntr_s_1++) {
count            2204 librpc/gen_ndr/ndr_dfs.c 			for (cntr_s_1 = 0; cntr_s_1 < r->count; cntr_s_1++) {
count            2220 librpc/gen_ndr/ndr_dfs.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            2236 librpc/gen_ndr/ndr_dfs.c 			for (cntr_s_1 = 0; cntr_s_1 < r->count; cntr_s_1++) {
count            2239 librpc/gen_ndr/ndr_dfs.c 			for (cntr_s_1 = 0; cntr_s_1 < r->count; cntr_s_1++) {
count            2246 librpc/gen_ndr/ndr_dfs.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->s, r->count));
count            2257 librpc/gen_ndr/ndr_dfs.c 	ndr_print_uint32(ndr, "count", r->count);
count            2261 librpc/gen_ndr/ndr_dfs.c 		ndr->print(ndr, "%s: ARRAY(%d)", "s", (int)r->count);
count            2263 librpc/gen_ndr/ndr_dfs.c 		for (cntr_s_1=0;cntr_s_1<r->count;cntr_s_1++) {
count            2281 librpc/gen_ndr/ndr_dfs.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            2286 librpc/gen_ndr/ndr_dfs.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            2287 librpc/gen_ndr/ndr_dfs.c 			for (cntr_s_1 = 0; cntr_s_1 < r->count; cntr_s_1++) {
count            2290 librpc/gen_ndr/ndr_dfs.c 			for (cntr_s_1 = 0; cntr_s_1 < r->count; cntr_s_1++) {
count            2306 librpc/gen_ndr/ndr_dfs.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            2322 librpc/gen_ndr/ndr_dfs.c 			for (cntr_s_1 = 0; cntr_s_1 < r->count; cntr_s_1++) {
count            2325 librpc/gen_ndr/ndr_dfs.c 			for (cntr_s_1 = 0; cntr_s_1 < r->count; cntr_s_1++) {
count            2332 librpc/gen_ndr/ndr_dfs.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->s, r->count));
count            2343 librpc/gen_ndr/ndr_dfs.c 	ndr_print_uint32(ndr, "count", r->count);
count            2347 librpc/gen_ndr/ndr_dfs.c 		ndr->print(ndr, "%s: ARRAY(%d)", "s", (int)r->count);
count            2349 librpc/gen_ndr/ndr_dfs.c 		for (cntr_s_1=0;cntr_s_1<r->count;cntr_s_1++) {
count            2367 librpc/gen_ndr/ndr_dfs.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            2372 librpc/gen_ndr/ndr_dfs.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            2373 librpc/gen_ndr/ndr_dfs.c 			for (cntr_s_1 = 0; cntr_s_1 < r->count; cntr_s_1++) {
count            2376 librpc/gen_ndr/ndr_dfs.c 			for (cntr_s_1 = 0; cntr_s_1 < r->count; cntr_s_1++) {
count            2392 librpc/gen_ndr/ndr_dfs.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            2408 librpc/gen_ndr/ndr_dfs.c 			for (cntr_s_1 = 0; cntr_s_1 < r->count; cntr_s_1++) {
count            2411 librpc/gen_ndr/ndr_dfs.c 			for (cntr_s_1 = 0; cntr_s_1 < r->count; cntr_s_1++) {
count            2418 librpc/gen_ndr/ndr_dfs.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->s, r->count));
count            2429 librpc/gen_ndr/ndr_dfs.c 	ndr_print_uint32(ndr, "count", r->count);
count            2433 librpc/gen_ndr/ndr_dfs.c 		ndr->print(ndr, "%s: ARRAY(%d)", "s", (int)r->count);
count            2435 librpc/gen_ndr/ndr_dfs.c 		for (cntr_s_1=0;cntr_s_1<r->count;cntr_s_1++) {
count            2453 librpc/gen_ndr/ndr_dfs.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            2458 librpc/gen_ndr/ndr_dfs.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            2459 librpc/gen_ndr/ndr_dfs.c 			for (cntr_s_1 = 0; cntr_s_1 < r->count; cntr_s_1++) {
count            2462 librpc/gen_ndr/ndr_dfs.c 			for (cntr_s_1 = 0; cntr_s_1 < r->count; cntr_s_1++) {
count            2478 librpc/gen_ndr/ndr_dfs.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            2494 librpc/gen_ndr/ndr_dfs.c 			for (cntr_s_1 = 0; cntr_s_1 < r->count; cntr_s_1++) {
count            2497 librpc/gen_ndr/ndr_dfs.c 			for (cntr_s_1 = 0; cntr_s_1 < r->count; cntr_s_1++) {
count            2504 librpc/gen_ndr/ndr_dfs.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->s, r->count));
count            2515 librpc/gen_ndr/ndr_dfs.c 	ndr_print_uint32(ndr, "count", r->count);
count            2519 librpc/gen_ndr/ndr_dfs.c 		ndr->print(ndr, "%s: ARRAY(%d)", "s", (int)r->count);
count            2521 librpc/gen_ndr/ndr_dfs.c 		for (cntr_s_1=0;cntr_s_1<r->count;cntr_s_1++) {
count            2539 librpc/gen_ndr/ndr_dfs.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            2544 librpc/gen_ndr/ndr_dfs.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            2545 librpc/gen_ndr/ndr_dfs.c 			for (cntr_s_1 = 0; cntr_s_1 < r->count; cntr_s_1++) {
count            2548 librpc/gen_ndr/ndr_dfs.c 			for (cntr_s_1 = 0; cntr_s_1 < r->count; cntr_s_1++) {
count            2564 librpc/gen_ndr/ndr_dfs.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            2580 librpc/gen_ndr/ndr_dfs.c 			for (cntr_s_1 = 0; cntr_s_1 < r->count; cntr_s_1++) {
count            2583 librpc/gen_ndr/ndr_dfs.c 			for (cntr_s_1 = 0; cntr_s_1 < r->count; cntr_s_1++) {
count            2590 librpc/gen_ndr/ndr_dfs.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->s, r->count));
count            2601 librpc/gen_ndr/ndr_dfs.c 	ndr_print_uint32(ndr, "count", r->count);
count            2605 librpc/gen_ndr/ndr_dfs.c 		ndr->print(ndr, "%s: ARRAY(%d)", "s", (int)r->count);
count            2607 librpc/gen_ndr/ndr_dfs.c 		for (cntr_s_1=0;cntr_s_1<r->count;cntr_s_1++) {
count            2625 librpc/gen_ndr/ndr_dfs.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            2630 librpc/gen_ndr/ndr_dfs.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            2631 librpc/gen_ndr/ndr_dfs.c 			for (cntr_s_1 = 0; cntr_s_1 < r->count; cntr_s_1++) {
count            2634 librpc/gen_ndr/ndr_dfs.c 			for (cntr_s_1 = 0; cntr_s_1 < r->count; cntr_s_1++) {
count            2650 librpc/gen_ndr/ndr_dfs.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            2666 librpc/gen_ndr/ndr_dfs.c 			for (cntr_s_1 = 0; cntr_s_1 < r->count; cntr_s_1++) {
count            2669 librpc/gen_ndr/ndr_dfs.c 			for (cntr_s_1 = 0; cntr_s_1 < r->count; cntr_s_1++) {
count            2676 librpc/gen_ndr/ndr_dfs.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->s, r->count));
count            2687 librpc/gen_ndr/ndr_dfs.c 	ndr_print_uint32(ndr, "count", r->count);
count            2691 librpc/gen_ndr/ndr_dfs.c 		ndr->print(ndr, "%s: ARRAY(%d)", "s", (int)r->count);
count            2693 librpc/gen_ndr/ndr_dfs.c 		for (cntr_s_1=0;cntr_s_1<r->count;cntr_s_1++) {
count            2711 librpc/gen_ndr/ndr_dfs.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            2716 librpc/gen_ndr/ndr_dfs.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            2717 librpc/gen_ndr/ndr_dfs.c 			for (cntr_s_1 = 0; cntr_s_1 < r->count; cntr_s_1++) {
count            2720 librpc/gen_ndr/ndr_dfs.c 			for (cntr_s_1 = 0; cntr_s_1 < r->count; cntr_s_1++) {
count            2736 librpc/gen_ndr/ndr_dfs.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            2752 librpc/gen_ndr/ndr_dfs.c 			for (cntr_s_1 = 0; cntr_s_1 < r->count; cntr_s_1++) {
count            2755 librpc/gen_ndr/ndr_dfs.c 			for (cntr_s_1 = 0; cntr_s_1 < r->count; cntr_s_1++) {
count            2762 librpc/gen_ndr/ndr_dfs.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->s, r->count));
count            2773 librpc/gen_ndr/ndr_dfs.c 	ndr_print_uint32(ndr, "count", r->count);
count            2777 librpc/gen_ndr/ndr_dfs.c 		ndr->print(ndr, "%s: ARRAY(%d)", "s", (int)r->count);
count            2779 librpc/gen_ndr/ndr_dfs.c 		for (cntr_s_1=0;cntr_s_1<r->count;cntr_s_1++) {
count            2797 librpc/gen_ndr/ndr_dfs.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            2802 librpc/gen_ndr/ndr_dfs.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            2803 librpc/gen_ndr/ndr_dfs.c 			for (cntr_s_1 = 0; cntr_s_1 < r->count; cntr_s_1++) {
count            2806 librpc/gen_ndr/ndr_dfs.c 			for (cntr_s_1 = 0; cntr_s_1 < r->count; cntr_s_1++) {
count            2822 librpc/gen_ndr/ndr_dfs.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            2838 librpc/gen_ndr/ndr_dfs.c 			for (cntr_s_1 = 0; cntr_s_1 < r->count; cntr_s_1++) {
count            2841 librpc/gen_ndr/ndr_dfs.c 			for (cntr_s_1 = 0; cntr_s_1 < r->count; cntr_s_1++) {
count            2848 librpc/gen_ndr/ndr_dfs.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->s, r->count));
count            2859 librpc/gen_ndr/ndr_dfs.c 	ndr_print_uint32(ndr, "count", r->count);
count            2863 librpc/gen_ndr/ndr_dfs.c 		ndr->print(ndr, "%s: ARRAY(%d)", "s", (int)r->count);
count            2865 librpc/gen_ndr/ndr_dfs.c 		for (cntr_s_1=0;cntr_s_1<r->count;cntr_s_1++) {
count            5769 librpc/gen_ndr/ndr_dfs.c 	.count	= 3,
count            5778 librpc/gen_ndr/ndr_dfs.c 	.count	= 1,
count              60 librpc/gen_ndr/ndr_drsblobs.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count              62 librpc/gen_ndr/ndr_drsblobs.c 		for (cntr_array_0 = 0; cntr_array_0 < r->count; cntr_array_0++) {
count              77 librpc/gen_ndr/ndr_drsblobs.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count              79 librpc/gen_ndr/ndr_drsblobs.c 		NDR_PULL_ALLOC_N(ndr, r->array, r->count);
count              82 librpc/gen_ndr/ndr_drsblobs.c 		for (cntr_array_0 = 0; cntr_array_0 < r->count; cntr_array_0++) {
count              97 librpc/gen_ndr/ndr_drsblobs.c 	ndr_print_uint32(ndr, "count", r->count);
count              99 librpc/gen_ndr/ndr_drsblobs.c 	ndr->print(ndr, "%s: ARRAY(%d)", "array", (int)r->count);
count             101 librpc/gen_ndr/ndr_drsblobs.c 	for (cntr_array_0=0;cntr_array_0<r->count;cntr_array_0++) {
count             223 librpc/gen_ndr/ndr_drsblobs.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count             225 librpc/gen_ndr/ndr_drsblobs.c 		for (cntr_cursors_0 = 0; cntr_cursors_0 < r->count; cntr_cursors_0++) {
count             240 librpc/gen_ndr/ndr_drsblobs.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count             242 librpc/gen_ndr/ndr_drsblobs.c 		NDR_PULL_ALLOC_N(ndr, r->cursors, r->count);
count             245 librpc/gen_ndr/ndr_drsblobs.c 		for (cntr_cursors_0 = 0; cntr_cursors_0 < r->count; cntr_cursors_0++) {
count             260 librpc/gen_ndr/ndr_drsblobs.c 	ndr_print_uint32(ndr, "count", r->count);
count             262 librpc/gen_ndr/ndr_drsblobs.c 	ndr->print(ndr, "%s: ARRAY(%d)", "cursors", (int)r->count);
count             264 librpc/gen_ndr/ndr_drsblobs.c 	for (cntr_cursors_0=0;cntr_cursors_0<r->count;cntr_cursors_0++) {
count             280 librpc/gen_ndr/ndr_drsblobs.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count             282 librpc/gen_ndr/ndr_drsblobs.c 		for (cntr_cursors_0 = 0; cntr_cursors_0 < r->count; cntr_cursors_0++) {
count             297 librpc/gen_ndr/ndr_drsblobs.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count             299 librpc/gen_ndr/ndr_drsblobs.c 		NDR_PULL_ALLOC_N(ndr, r->cursors, r->count);
count             302 librpc/gen_ndr/ndr_drsblobs.c 		for (cntr_cursors_0 = 0; cntr_cursors_0 < r->count; cntr_cursors_0++) {
count             317 librpc/gen_ndr/ndr_drsblobs.c 	ndr_print_uint32(ndr, "count", r->count);
count             319 librpc/gen_ndr/ndr_drsblobs.c 	ndr->print(ndr, "%s: ARRAY(%d)", "cursors", (int)r->count);
count             321 librpc/gen_ndr/ndr_drsblobs.c 	for (cntr_cursors_0=0;cntr_cursors_0<r->count;cntr_cursors_0++) {
count             726 librpc/gen_ndr/ndr_drsblobs.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count             727 librpc/gen_ndr/ndr_drsblobs.c 		for (cntr_array_0 = 0; cntr_array_0 < r->count; cntr_array_0++) {
count             742 librpc/gen_ndr/ndr_drsblobs.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count             743 librpc/gen_ndr/ndr_drsblobs.c 		NDR_PULL_ALLOC_N(ndr, r->array, r->count);
count             746 librpc/gen_ndr/ndr_drsblobs.c 		for (cntr_array_0 = 0; cntr_array_0 < r->count; cntr_array_0++) {
count             761 librpc/gen_ndr/ndr_drsblobs.c 	ndr_print_uint32(ndr, "count", r->count);
count             762 librpc/gen_ndr/ndr_drsblobs.c 	ndr->print(ndr, "%s: ARRAY(%d)", "array", (int)r->count);
count             764 librpc/gen_ndr/ndr_drsblobs.c 	for (cntr_array_0=0;cntr_array_0<r->count;cntr_array_0++) {
count            2622 librpc/gen_ndr/ndr_drsblobs.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            2623 librpc/gen_ndr/ndr_drsblobs.c 		for (cntr_current_0 = 0; cntr_current_0 < r->count; cntr_current_0++) {
count            2628 librpc/gen_ndr/ndr_drsblobs.c 		for (cntr_current_0 = 0; cntr_current_0 < r->count; cntr_current_0++) {
count            2646 librpc/gen_ndr/ndr_drsblobs.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            2647 librpc/gen_ndr/ndr_drsblobs.c 		NDR_PULL_ALLOC_N(ndr, r->current, r->count);
count            2650 librpc/gen_ndr/ndr_drsblobs.c 		for (cntr_current_0 = 0; cntr_current_0 < r->count; cntr_current_0++) {
count            2664 librpc/gen_ndr/ndr_drsblobs.c 		for (cntr_current_0 = 0; cntr_current_0 < r->count; cntr_current_0++) {
count            2686 librpc/gen_ndr/ndr_drsblobs.c 	ndr_print_uint32(ndr, "count", r->count);
count            2687 librpc/gen_ndr/ndr_drsblobs.c 	ndr->print(ndr, "%s: ARRAY(%d)", "current", (int)r->count);
count            2689 librpc/gen_ndr/ndr_drsblobs.c 	for (cntr_current_0=0;cntr_current_0<r->count;cntr_current_0++) {
count            4234 librpc/gen_ndr/ndr_drsblobs.c 	.count	= 1,
count            4243 librpc/gen_ndr/ndr_drsblobs.c 	.count	= 1,
count             789 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count             793 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count             795 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_cursors_0 = 0; cntr_cursors_0 < r->count; cntr_cursors_0++) {
count             813 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count             814 librpc/gen_ndr/ndr_drsuapi.c 		if (r->count > 0x100000) {
count             821 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_cursors_0 = 0; cntr_cursors_0 < r->count; cntr_cursors_0++) {
count             826 librpc/gen_ndr/ndr_drsuapi.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->cursors, r->count));
count             841 librpc/gen_ndr/ndr_drsuapi.c 	ndr_print_uint32(ndr, "count", r->count);
count             843 librpc/gen_ndr/ndr_drsuapi.c 	ndr->print(ndr, "%s: ARRAY(%d)", "cursors", (int)r->count);
count             845 librpc/gen_ndr/ndr_drsuapi.c 	for (cntr_cursors_0=0;cntr_cursors_0<r->count;cntr_cursors_0++) {
count            1678 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            1682 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            1684 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_cursors_0 = 0; cntr_cursors_0 < r->count; cntr_cursors_0++) {
count            1702 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            1703 librpc/gen_ndr/ndr_drsuapi.c 		if (r->count > 0x100000) {
count            1710 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_cursors_0 = 0; cntr_cursors_0 < r->count; cntr_cursors_0++) {
count            1715 librpc/gen_ndr/ndr_drsuapi.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->cursors, r->count));
count            1730 librpc/gen_ndr/ndr_drsuapi.c 	ndr_print_uint32(ndr, "count", r->count);
count            1732 librpc/gen_ndr/ndr_drsuapi.c 	ndr->print(ndr, "%s: ARRAY(%d)", "cursors", (int)r->count);
count            1734 librpc/gen_ndr/ndr_drsuapi.c 	for (cntr_cursors_0=0;cntr_cursors_0<r->count;cntr_cursors_0++) {
count            2261 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            2263 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            2264 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_meta_data_0 = 0; cntr_meta_data_0 < r->count; cntr_meta_data_0++) {
count            2280 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            2281 librpc/gen_ndr/ndr_drsuapi.c 		if (r->count > 1048576) {
count            2287 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_meta_data_0 = 0; cntr_meta_data_0 < r->count; cntr_meta_data_0++) {
count            2292 librpc/gen_ndr/ndr_drsuapi.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->meta_data, r->count));
count            2305 librpc/gen_ndr/ndr_drsuapi.c 	ndr_print_uint32(ndr, "count", r->count);
count            2306 librpc/gen_ndr/ndr_drsuapi.c 	ndr->print(ndr, "%s: ARRAY(%d)", "meta_data", (int)r->count);
count            2308 librpc/gen_ndr/ndr_drsuapi.c 	for (cntr_meta_data_0=0;cntr_meta_data_0<r->count;cntr_meta_data_0++) {
count            4093 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            4101 librpc/gen_ndr/ndr_drsuapi.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            4102 librpc/gen_ndr/ndr_drsuapi.c 			for (cntr_info_array_1 = 0; cntr_info_array_1 < r->count; cntr_info_array_1++) {
count            4105 librpc/gen_ndr/ndr_drsuapi.c 			for (cntr_info_array_1 = 0; cntr_info_array_1 < r->count; cntr_info_array_1++) {
count            4129 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            4130 librpc/gen_ndr/ndr_drsuapi.c 		if (r->count < 1 || r->count > 10000) {
count            4156 librpc/gen_ndr/ndr_drsuapi.c 			for (cntr_info_array_1 = 0; cntr_info_array_1 < r->count; cntr_info_array_1++) {
count            4164 librpc/gen_ndr/ndr_drsuapi.c 			for (cntr_info_array_1 = 0; cntr_info_array_1 < r->count; cntr_info_array_1++) {
count            4182 librpc/gen_ndr/ndr_drsuapi.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->info_array, r->count));
count            4193 librpc/gen_ndr/ndr_drsuapi.c 	ndr_print_uint32(ndr, "count", r->count);
count            4197 librpc/gen_ndr/ndr_drsuapi.c 		ndr->print(ndr, "%s: ARRAY(%d)", "info_array", (int)r->count);
count            4199 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_info_array_1=0;cntr_info_array_1<r->count;cntr_info_array_1++) {
count            4802 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            4807 librpc/gen_ndr/ndr_drsuapi.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            4808 librpc/gen_ndr/ndr_drsuapi.c 			for (cntr_names_1 = 0; cntr_names_1 < r->count; cntr_names_1++) {
count            4811 librpc/gen_ndr/ndr_drsuapi.c 			for (cntr_names_1 = 0; cntr_names_1 < r->count; cntr_names_1++) {
count            4832 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            4833 librpc/gen_ndr/ndr_drsuapi.c 		if (r->count < 1 || r->count > 10000) {
count            4851 librpc/gen_ndr/ndr_drsuapi.c 			for (cntr_names_1 = 0; cntr_names_1 < r->count; cntr_names_1++) {
count            4854 librpc/gen_ndr/ndr_drsuapi.c 			for (cntr_names_1 = 0; cntr_names_1 < r->count; cntr_names_1++) {
count            4861 librpc/gen_ndr/ndr_drsuapi.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->names, r->count));
count            4877 librpc/gen_ndr/ndr_drsuapi.c 	ndr_print_uint32(ndr, "count", r->count);
count            4881 librpc/gen_ndr/ndr_drsuapi.c 		ndr->print(ndr, "%s: ARRAY(%d)", "names", (int)r->count);
count            4883 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_names_1=0;cntr_names_1<r->count;cntr_names_1++) {
count            5072 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            5077 librpc/gen_ndr/ndr_drsuapi.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            5078 librpc/gen_ndr/ndr_drsuapi.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            5081 librpc/gen_ndr/ndr_drsuapi.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            5097 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            5113 librpc/gen_ndr/ndr_drsuapi.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            5116 librpc/gen_ndr/ndr_drsuapi.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            5123 librpc/gen_ndr/ndr_drsuapi.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->array, r->count));
count            5134 librpc/gen_ndr/ndr_drsuapi.c 	ndr_print_uint32(ndr, "count", r->count);
count            5138 librpc/gen_ndr/ndr_drsuapi.c 		ndr->print(ndr, "%s: ARRAY(%d)", "array", (int)r->count);
count            5140 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_array_1=0;cntr_array_1<r->count;cntr_array_1++) {
count            5281 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            5292 librpc/gen_ndr/ndr_drsuapi.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            5293 librpc/gen_ndr/ndr_drsuapi.c 			for (cntr_spn_names_1 = 0; cntr_spn_names_1 < r->count; cntr_spn_names_1++) {
count            5296 librpc/gen_ndr/ndr_drsuapi.c 			for (cntr_spn_names_1 = 0; cntr_spn_names_1 < r->count; cntr_spn_names_1++) {
count            5322 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            5323 librpc/gen_ndr/ndr_drsuapi.c 		if (r->count > 10000) {
count            5353 librpc/gen_ndr/ndr_drsuapi.c 			for (cntr_spn_names_1 = 0; cntr_spn_names_1 < r->count; cntr_spn_names_1++) {
count            5356 librpc/gen_ndr/ndr_drsuapi.c 			for (cntr_spn_names_1 = 0; cntr_spn_names_1 < r->count; cntr_spn_names_1++) {
count            5363 librpc/gen_ndr/ndr_drsuapi.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->spn_names, r->count));
count            5382 librpc/gen_ndr/ndr_drsuapi.c 	ndr_print_uint32(ndr, "count", r->count);
count            5386 librpc/gen_ndr/ndr_drsuapi.c 		ndr->print(ndr, "%s: ARRAY(%d)", "spn_names", (int)r->count);
count            5388 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_spn_names_1=0;cntr_spn_names_1<r->count;cntr_spn_names_1++) {
count            6194 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            6199 librpc/gen_ndr/ndr_drsuapi.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            6200 librpc/gen_ndr/ndr_drsuapi.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            6203 librpc/gen_ndr/ndr_drsuapi.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            6219 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            6220 librpc/gen_ndr/ndr_drsuapi.c 		if (r->count > 10000) {
count            6238 librpc/gen_ndr/ndr_drsuapi.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            6241 librpc/gen_ndr/ndr_drsuapi.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            6248 librpc/gen_ndr/ndr_drsuapi.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->array, r->count));
count            6259 librpc/gen_ndr/ndr_drsuapi.c 	ndr_print_uint32(ndr, "count", r->count);
count            6263 librpc/gen_ndr/ndr_drsuapi.c 		ndr->print(ndr, "%s: ARRAY(%d)", "array", (int)r->count);
count            6265 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_array_1=0;cntr_array_1<r->count;cntr_array_1++) {
count            6562 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            6567 librpc/gen_ndr/ndr_drsuapi.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            6568 librpc/gen_ndr/ndr_drsuapi.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            6571 librpc/gen_ndr/ndr_drsuapi.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            6587 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            6588 librpc/gen_ndr/ndr_drsuapi.c 		if (r->count > 10000) {
count            6606 librpc/gen_ndr/ndr_drsuapi.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            6609 librpc/gen_ndr/ndr_drsuapi.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            6616 librpc/gen_ndr/ndr_drsuapi.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->array, r->count));
count            6627 librpc/gen_ndr/ndr_drsuapi.c 	ndr_print_uint32(ndr, "count", r->count);
count            6631 librpc/gen_ndr/ndr_drsuapi.c 		ndr->print(ndr, "%s: ARRAY(%d)", "array", (int)r->count);
count            6633 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_array_1=0;cntr_array_1<r->count;cntr_array_1++) {
count            6933 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            6938 librpc/gen_ndr/ndr_drsuapi.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            6939 librpc/gen_ndr/ndr_drsuapi.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            6942 librpc/gen_ndr/ndr_drsuapi.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            6958 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            6959 librpc/gen_ndr/ndr_drsuapi.c 		if (r->count > 10000) {
count            6977 librpc/gen_ndr/ndr_drsuapi.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            6980 librpc/gen_ndr/ndr_drsuapi.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            6987 librpc/gen_ndr/ndr_drsuapi.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->array, r->count));
count            6998 librpc/gen_ndr/ndr_drsuapi.c 	ndr_print_uint32(ndr, "count", r->count);
count            7002 librpc/gen_ndr/ndr_drsuapi.c 		ndr->print(ndr, "%s: ARRAY(%d)", "array", (int)r->count);
count            7004 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_array_1=0;cntr_array_1<r->count;cntr_array_1++) {
count            7110 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            7115 librpc/gen_ndr/ndr_drsuapi.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            7116 librpc/gen_ndr/ndr_drsuapi.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            7119 librpc/gen_ndr/ndr_drsuapi.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            7135 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            7136 librpc/gen_ndr/ndr_drsuapi.c 		if (r->count > 10000) {
count            7154 librpc/gen_ndr/ndr_drsuapi.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            7157 librpc/gen_ndr/ndr_drsuapi.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            7164 librpc/gen_ndr/ndr_drsuapi.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->array, r->count));
count            7175 librpc/gen_ndr/ndr_drsuapi.c 	ndr_print_uint32(ndr, "count", r->count);
count            7179 librpc/gen_ndr/ndr_drsuapi.c 		ndr->print(ndr, "%s: ARRAY(%d)", "array", (int)r->count);
count            7181 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_array_1=0;cntr_array_1<r->count;cntr_array_1++) {
count            8061 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            8069 librpc/gen_ndr/ndr_drsuapi.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            8070 librpc/gen_ndr/ndr_drsuapi.c 			for (cntr_objects_1 = 0; cntr_objects_1 < r->count; cntr_objects_1++) {
count            8073 librpc/gen_ndr/ndr_drsuapi.c 			for (cntr_objects_1 = 0; cntr_objects_1 < r->count; cntr_objects_1++) {
count            8099 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            8100 librpc/gen_ndr/ndr_drsuapi.c 		if (r->count > 10000) {
count            8124 librpc/gen_ndr/ndr_drsuapi.c 			for (cntr_objects_1 = 0; cntr_objects_1 < r->count; cntr_objects_1++) {
count            8127 librpc/gen_ndr/ndr_drsuapi.c 			for (cntr_objects_1 = 0; cntr_objects_1 < r->count; cntr_objects_1++) {
count            8134 librpc/gen_ndr/ndr_drsuapi.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->objects, r->count));
count            8153 librpc/gen_ndr/ndr_drsuapi.c 	ndr_print_uint32(ndr, "count", r->count);
count            8157 librpc/gen_ndr/ndr_drsuapi.c 		ndr->print(ndr, "%s: ARRAY(%d)", "objects", (int)r->count);
count            8159 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_objects_1=0;cntr_objects_1<r->count;cntr_objects_1++) {
count            8180 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            8192 librpc/gen_ndr/ndr_drsuapi.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            8193 librpc/gen_ndr/ndr_drsuapi.c 			for (cntr_objects_1 = 0; cntr_objects_1 < r->count; cntr_objects_1++) {
count            8196 librpc/gen_ndr/ndr_drsuapi.c 			for (cntr_objects_1 = 0; cntr_objects_1 < r->count; cntr_objects_1++) {
count            8229 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            8230 librpc/gen_ndr/ndr_drsuapi.c 		if (r->count > 10000) {
count            8261 librpc/gen_ndr/ndr_drsuapi.c 			for (cntr_objects_1 = 0; cntr_objects_1 < r->count; cntr_objects_1++) {
count            8264 librpc/gen_ndr/ndr_drsuapi.c 			for (cntr_objects_1 = 0; cntr_objects_1 < r->count; cntr_objects_1++) {
count            8271 librpc/gen_ndr/ndr_drsuapi.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->objects, r->count));
count            8296 librpc/gen_ndr/ndr_drsuapi.c 	ndr_print_uint32(ndr, "count", r->count);
count            8300 librpc/gen_ndr/ndr_drsuapi.c 		ndr->print(ndr, "%s: ARRAY(%d)", "objects", (int)r->count);
count            8302 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_objects_1=0;cntr_objects_1<r->count;cntr_objects_1++) {
count            8971 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            8973 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            8975 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_array_0 = 0; cntr_array_0 < r->count; cntr_array_0++) {
count            8980 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_array_0 = 0; cntr_array_0 < r->count; cntr_array_0++) {
count            8994 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            8999 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_array_0 = 0; cntr_array_0 < r->count; cntr_array_0++) {
count            9004 librpc/gen_ndr/ndr_drsuapi.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->array, r->count));
count            9010 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_array_0 = 0; cntr_array_0 < r->count; cntr_array_0++) {
count            9023 librpc/gen_ndr/ndr_drsuapi.c 	ndr_print_uint32(ndr, "count", r->count);
count            9025 librpc/gen_ndr/ndr_drsuapi.c 	ndr->print(ndr, "%s: ARRAY(%d)", "array", (int)r->count);
count            9027 librpc/gen_ndr/ndr_drsuapi.c 	for (cntr_array_0=0;cntr_array_0<r->count;cntr_array_0++) {
count            9042 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            9044 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            9046 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_array_0 = 0; cntr_array_0 < r->count; cntr_array_0++) {
count            9062 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            9067 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_array_0 = 0; cntr_array_0 < r->count; cntr_array_0++) {
count            9072 librpc/gen_ndr/ndr_drsuapi.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->array, r->count));
count            9085 librpc/gen_ndr/ndr_drsuapi.c 	ndr_print_uint32(ndr, "count", r->count);
count            9087 librpc/gen_ndr/ndr_drsuapi.c 	ndr->print(ndr, "%s: ARRAY(%d)", "array", (int)r->count);
count            9089 librpc/gen_ndr/ndr_drsuapi.c 	for (cntr_array_0=0;cntr_array_0<r->count;cntr_array_0++) {
count            9179 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            9181 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            9183 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_array_0 = 0; cntr_array_0 < r->count; cntr_array_0++) {
count            9188 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_array_0 = 0; cntr_array_0 < r->count; cntr_array_0++) {
count            9202 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            9207 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_array_0 = 0; cntr_array_0 < r->count; cntr_array_0++) {
count            9212 librpc/gen_ndr/ndr_drsuapi.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->array, r->count));
count            9218 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_array_0 = 0; cntr_array_0 < r->count; cntr_array_0++) {
count            9231 librpc/gen_ndr/ndr_drsuapi.c 	ndr_print_uint32(ndr, "count", r->count);
count            9233 librpc/gen_ndr/ndr_drsuapi.c 	ndr->print(ndr, "%s: ARRAY(%d)", "array", (int)r->count);
count            9235 librpc/gen_ndr/ndr_drsuapi.c 	for (cntr_array_0=0;cntr_array_0<r->count;cntr_array_0++) {
count            9322 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            9324 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            9326 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_array_0 = 0; cntr_array_0 < r->count; cntr_array_0++) {
count            9331 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_array_0 = 0; cntr_array_0 < r->count; cntr_array_0++) {
count            9345 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            9350 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_array_0 = 0; cntr_array_0 < r->count; cntr_array_0++) {
count            9355 librpc/gen_ndr/ndr_drsuapi.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->array, r->count));
count            9361 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_array_0 = 0; cntr_array_0 < r->count; cntr_array_0++) {
count            9374 librpc/gen_ndr/ndr_drsuapi.c 	ndr_print_uint32(ndr, "count", r->count);
count            9376 librpc/gen_ndr/ndr_drsuapi.c 	ndr->print(ndr, "%s: ARRAY(%d)", "array", (int)r->count);
count            9378 librpc/gen_ndr/ndr_drsuapi.c 	for (cntr_array_0=0;cntr_array_0<r->count;cntr_array_0++) {
count            9724 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            9727 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            9728 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_array_0 = 0; cntr_array_0 < r->count; cntr_array_0++) {
count            9733 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_array_0 = 0; cntr_array_0 < r->count; cntr_array_0++) {
count            9748 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            9752 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_array_0 = 0; cntr_array_0 < r->count; cntr_array_0++) {
count            9757 librpc/gen_ndr/ndr_drsuapi.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->array, r->count));
count            9763 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_array_0 = 0; cntr_array_0 < r->count; cntr_array_0++) {
count            9777 librpc/gen_ndr/ndr_drsuapi.c 	ndr_print_uint32(ndr, "count", r->count);
count            9778 librpc/gen_ndr/ndr_drsuapi.c 	ndr->print(ndr, "%s: ARRAY(%d)", "array", (int)r->count);
count            9780 librpc/gen_ndr/ndr_drsuapi.c 	for (cntr_array_0=0;cntr_array_0<r->count;cntr_array_0++) {
count            9936 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            9938 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            9940 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_array_0 = 0; cntr_array_0 < r->count; cntr_array_0++) {
count            9945 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_array_0 = 0; cntr_array_0 < r->count; cntr_array_0++) {
count            9959 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            9964 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_array_0 = 0; cntr_array_0 < r->count; cntr_array_0++) {
count            9969 librpc/gen_ndr/ndr_drsuapi.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->array, r->count));
count            9975 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_array_0 = 0; cntr_array_0 < r->count; cntr_array_0++) {
count            9988 librpc/gen_ndr/ndr_drsuapi.c 	ndr_print_uint32(ndr, "count", r->count);
count            9990 librpc/gen_ndr/ndr_drsuapi.c 	ndr->print(ndr, "%s: ARRAY(%d)", "array", (int)r->count);
count            9992 librpc/gen_ndr/ndr_drsuapi.c 	for (cntr_array_0=0;cntr_array_0<r->count;cntr_array_0++) {
count            10007 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            10009 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            10011 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_array_0 = 0; cntr_array_0 < r->count; cntr_array_0++) {
count            10027 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            10032 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_array_0 = 0; cntr_array_0 < r->count; cntr_array_0++) {
count            10037 librpc/gen_ndr/ndr_drsuapi.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->array, r->count));
count            10050 librpc/gen_ndr/ndr_drsuapi.c 	ndr_print_uint32(ndr, "count", r->count);
count            10052 librpc/gen_ndr/ndr_drsuapi.c 	ndr->print(ndr, "%s: ARRAY(%d)", "array", (int)r->count);
count            10054 librpc/gen_ndr/ndr_drsuapi.c 	for (cntr_array_0=0;cntr_array_0<r->count;cntr_array_0++) {
count            10138 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            10140 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            10142 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_array_0 = 0; cntr_array_0 < r->count; cntr_array_0++) {
count            10147 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_array_0 = 0; cntr_array_0 < r->count; cntr_array_0++) {
count            10161 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            10166 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_array_0 = 0; cntr_array_0 < r->count; cntr_array_0++) {
count            10171 librpc/gen_ndr/ndr_drsuapi.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->array, r->count));
count            10177 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_array_0 = 0; cntr_array_0 < r->count; cntr_array_0++) {
count            10190 librpc/gen_ndr/ndr_drsuapi.c 	ndr_print_uint32(ndr, "count", r->count);
count            10192 librpc/gen_ndr/ndr_drsuapi.c 	ndr->print(ndr, "%s: ARRAY(%d)", "array", (int)r->count);
count            10194 librpc/gen_ndr/ndr_drsuapi.c 	for (cntr_array_0=0;cntr_array_0<r->count;cntr_array_0++) {
count            10317 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            10319 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            10321 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_array_0 = 0; cntr_array_0 < r->count; cntr_array_0++) {
count            10326 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_array_0 = 0; cntr_array_0 < r->count; cntr_array_0++) {
count            10340 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            10345 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_array_0 = 0; cntr_array_0 < r->count; cntr_array_0++) {
count            10350 librpc/gen_ndr/ndr_drsuapi.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->array, r->count));
count            10356 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_array_0 = 0; cntr_array_0 < r->count; cntr_array_0++) {
count            10369 librpc/gen_ndr/ndr_drsuapi.c 	ndr_print_uint32(ndr, "count", r->count);
count            10371 librpc/gen_ndr/ndr_drsuapi.c 	ndr->print(ndr, "%s: ARRAY(%d)", "array", (int)r->count);
count            10373 librpc/gen_ndr/ndr_drsuapi.c 	for (cntr_array_0=0;cntr_array_0<r->count;cntr_array_0++) {
count            10562 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            10564 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            10566 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_array_0 = 0; cntr_array_0 < r->count; cntr_array_0++) {
count            10571 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_array_0 = 0; cntr_array_0 < r->count; cntr_array_0++) {
count            10585 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            10590 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_array_0 = 0; cntr_array_0 < r->count; cntr_array_0++) {
count            10595 librpc/gen_ndr/ndr_drsuapi.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->array, r->count));
count            10601 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_array_0 = 0; cntr_array_0 < r->count; cntr_array_0++) {
count            10614 librpc/gen_ndr/ndr_drsuapi.c 	ndr_print_uint32(ndr, "count", r->count);
count            10616 librpc/gen_ndr/ndr_drsuapi.c 	ndr->print(ndr, "%s: ARRAY(%d)", "array", (int)r->count);
count            10618 librpc/gen_ndr/ndr_drsuapi.c 	for (cntr_array_0=0;cntr_array_0<r->count;cntr_array_0++) {
count            10691 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            10693 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            10695 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_array_0 = 0; cntr_array_0 < r->count; cntr_array_0++) {
count            10711 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            10712 librpc/gen_ndr/ndr_drsuapi.c 		if (r->count > 10000) {
count            10719 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_array_0 = 0; cntr_array_0 < r->count; cntr_array_0++) {
count            10724 librpc/gen_ndr/ndr_drsuapi.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->array, r->count));
count            10737 librpc/gen_ndr/ndr_drsuapi.c 	ndr_print_uint32(ndr, "count", r->count);
count            10739 librpc/gen_ndr/ndr_drsuapi.c 	ndr->print(ndr, "%s: ARRAY(%d)", "array", (int)r->count);
count            10741 librpc/gen_ndr/ndr_drsuapi.c 	for (cntr_array_0=0;cntr_array_0<r->count;cntr_array_0++) {
count            10837 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            10839 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            10841 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_array_0 = 0; cntr_array_0 < r->count; cntr_array_0++) {
count            10846 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_array_0 = 0; cntr_array_0 < r->count; cntr_array_0++) {
count            10860 librpc/gen_ndr/ndr_drsuapi.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            10861 librpc/gen_ndr/ndr_drsuapi.c 		if (r->count > 256) {
count            10868 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_array_0 = 0; cntr_array_0 < r->count; cntr_array_0++) {
count            10873 librpc/gen_ndr/ndr_drsuapi.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->array, r->count));
count            10879 librpc/gen_ndr/ndr_drsuapi.c 		for (cntr_array_0 = 0; cntr_array_0 < r->count; cntr_array_0++) {
count            10892 librpc/gen_ndr/ndr_drsuapi.c 	ndr_print_uint32(ndr, "count", r->count);
count            10894 librpc/gen_ndr/ndr_drsuapi.c 	ndr->print(ndr, "%s: ARRAY(%d)", "array", (int)r->count);
count            10896 librpc/gen_ndr/ndr_drsuapi.c 	for (cntr_array_0=0;cntr_array_0<r->count;cntr_array_0++) {
count            14506 librpc/gen_ndr/ndr_drsuapi.c 	.count	= 4,
count            14515 librpc/gen_ndr/ndr_drsuapi.c 	.count	= 1,
count            1056 librpc/gen_ndr/ndr_dssetup.c 	.count	= 4,
count            1065 librpc/gen_ndr/ndr_dssetup.c 	.count	= 1,
count            1487 librpc/gen_ndr/ndr_echo.c 	.count	= 3,
count            1496 librpc/gen_ndr/ndr_echo.c 	.count	= 1,
count            2666 librpc/gen_ndr/ndr_epmapper.c 	.count	= 3,
count            2675 librpc/gen_ndr/ndr_epmapper.c 	.count	= 1,
count            3136 librpc/gen_ndr/ndr_eventlog.c 	.count	= 1,
count            3145 librpc/gen_ndr/ndr_eventlog.c 	.count	= 1,
count             304 librpc/gen_ndr/ndr_initshutdown.c 	.count	= 1,
count             313 librpc/gen_ndr/ndr_initshutdown.c 	.count	= 1,
count             958 librpc/gen_ndr/ndr_krb5pac.c 	.count	= 1,
count             967 librpc/gen_ndr/ndr_krb5pac.c 	.count	= 1,
count             155 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count             160 librpc/gen_ndr/ndr_lsa.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count             161 librpc/gen_ndr/ndr_lsa.c 			for (cntr_names_1 = 0; cntr_names_1 < r->count; cntr_names_1++) {
count             164 librpc/gen_ndr/ndr_lsa.c 			for (cntr_names_1 = 0; cntr_names_1 < r->count; cntr_names_1++) {
count             180 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count             196 librpc/gen_ndr/ndr_lsa.c 			for (cntr_names_1 = 0; cntr_names_1 < r->count; cntr_names_1++) {
count             199 librpc/gen_ndr/ndr_lsa.c 			for (cntr_names_1 = 0; cntr_names_1 < r->count; cntr_names_1++) {
count             206 librpc/gen_ndr/ndr_lsa.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->names, r->count));
count             217 librpc/gen_ndr/ndr_lsa.c 	ndr_print_uint32(ndr, "count", r->count);
count             221 librpc/gen_ndr/ndr_lsa.c 		ndr->print(ndr, "%s: ARRAY(%d)", "names", (int)r->count);
count             223 librpc/gen_ndr/ndr_lsa.c 		for (cntr_names_1=0;cntr_names_1<r->count;cntr_names_1++) {
count             543 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count             548 librpc/gen_ndr/ndr_lsa.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count             549 librpc/gen_ndr/ndr_lsa.c 			for (cntr_privs_1 = 0; cntr_privs_1 < r->count; cntr_privs_1++) {
count             552 librpc/gen_ndr/ndr_lsa.c 			for (cntr_privs_1 = 0; cntr_privs_1 < r->count; cntr_privs_1++) {
count             568 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count             584 librpc/gen_ndr/ndr_lsa.c 			for (cntr_privs_1 = 0; cntr_privs_1 < r->count; cntr_privs_1++) {
count             587 librpc/gen_ndr/ndr_lsa.c 			for (cntr_privs_1 = 0; cntr_privs_1 < r->count; cntr_privs_1++) {
count             594 librpc/gen_ndr/ndr_lsa.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->privs, r->count));
count             605 librpc/gen_ndr/ndr_lsa.c 	ndr_print_uint32(ndr, "count", r->count);
count             609 librpc/gen_ndr/ndr_lsa.c 		ndr->print(ndr, "%s: ARRAY(%d)", "privs", (int)r->count);
count             611 librpc/gen_ndr/ndr_lsa.c 		for (cntr_privs_1=0;cntr_privs_1<r->count;cntr_privs_1++) {
count             991 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count             995 librpc/gen_ndr/ndr_lsa.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count             996 librpc/gen_ndr/ndr_lsa.c 			for (cntr_settings_1 = 0; cntr_settings_1 < r->count; cntr_settings_1++) {
count            1019 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            1029 librpc/gen_ndr/ndr_lsa.c 			for (cntr_settings_1 = 0; cntr_settings_1 < r->count; cntr_settings_1++) {
count            1036 librpc/gen_ndr/ndr_lsa.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->settings, r->count));
count            1051 librpc/gen_ndr/ndr_lsa.c 		ndr->print(ndr, "%s: ARRAY(%d)", "settings", (int)r->count);
count            1053 librpc/gen_ndr/ndr_lsa.c 		for (cntr_settings_1=0;cntr_settings_1<r->count;cntr_settings_1++) {
count            1063 librpc/gen_ndr/ndr_lsa.c 	ndr_print_uint32(ndr, "count", r->count);
count            1962 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            1967 librpc/gen_ndr/ndr_lsa.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            1968 librpc/gen_ndr/ndr_lsa.c 			for (cntr_domains_1 = 0; cntr_domains_1 < r->count; cntr_domains_1++) {
count            1971 librpc/gen_ndr/ndr_lsa.c 			for (cntr_domains_1 = 0; cntr_domains_1 < r->count; cntr_domains_1++) {
count            1987 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            2003 librpc/gen_ndr/ndr_lsa.c 			for (cntr_domains_1 = 0; cntr_domains_1 < r->count; cntr_domains_1++) {
count            2006 librpc/gen_ndr/ndr_lsa.c 			for (cntr_domains_1 = 0; cntr_domains_1 < r->count; cntr_domains_1++) {
count            2013 librpc/gen_ndr/ndr_lsa.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->domains, r->count));
count            2024 librpc/gen_ndr/ndr_lsa.c 	ndr_print_uint32(ndr, "count", r->count);
count            2028 librpc/gen_ndr/ndr_lsa.c 		ndr->print(ndr, "%s: ARRAY(%d)", "domains", (int)r->count);
count            2030 librpc/gen_ndr/ndr_lsa.c 		for (cntr_domains_1=0;cntr_domains_1<r->count;cntr_domains_1++) {
count            2117 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            2122 librpc/gen_ndr/ndr_lsa.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            2123 librpc/gen_ndr/ndr_lsa.c 			for (cntr_sids_1 = 0; cntr_sids_1 < r->count; cntr_sids_1++) {
count            2139 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            2140 librpc/gen_ndr/ndr_lsa.c 		if (r->count > 1000) {
count            2158 librpc/gen_ndr/ndr_lsa.c 			for (cntr_sids_1 = 0; cntr_sids_1 < r->count; cntr_sids_1++) {
count            2165 librpc/gen_ndr/ndr_lsa.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->sids, r->count));
count            2176 librpc/gen_ndr/ndr_lsa.c 	ndr_print_uint32(ndr, "count", r->count);
count            2180 librpc/gen_ndr/ndr_lsa.c 		ndr->print(ndr, "%s: ARRAY(%d)", "sids", (int)r->count);
count            2182 librpc/gen_ndr/ndr_lsa.c 		for (cntr_sids_1=0;cntr_sids_1<r->count;cntr_sids_1++) {
count            2200 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            2206 librpc/gen_ndr/ndr_lsa.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            2207 librpc/gen_ndr/ndr_lsa.c 			for (cntr_domains_1 = 0; cntr_domains_1 < r->count; cntr_domains_1++) {
count            2210 librpc/gen_ndr/ndr_lsa.c 			for (cntr_domains_1 = 0; cntr_domains_1 < r->count; cntr_domains_1++) {
count            2226 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            2227 librpc/gen_ndr/ndr_lsa.c 		if (r->count > 1000) {
count            2246 librpc/gen_ndr/ndr_lsa.c 			for (cntr_domains_1 = 0; cntr_domains_1 < r->count; cntr_domains_1++) {
count            2249 librpc/gen_ndr/ndr_lsa.c 			for (cntr_domains_1 = 0; cntr_domains_1 < r->count; cntr_domains_1++) {
count            2256 librpc/gen_ndr/ndr_lsa.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->domains, r->count));
count            2267 librpc/gen_ndr/ndr_lsa.c 	ndr_print_uint32(ndr, "count", r->count);
count            2271 librpc/gen_ndr/ndr_lsa.c 		ndr->print(ndr, "%s: ARRAY(%d)", "domains", (int)r->count);
count            2273 librpc/gen_ndr/ndr_lsa.c 		for (cntr_domains_1=0;cntr_domains_1<r->count;cntr_domains_1++) {
count            2360 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            2365 librpc/gen_ndr/ndr_lsa.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            2366 librpc/gen_ndr/ndr_lsa.c 			for (cntr_names_1 = 0; cntr_names_1 < r->count; cntr_names_1++) {
count            2369 librpc/gen_ndr/ndr_lsa.c 			for (cntr_names_1 = 0; cntr_names_1 < r->count; cntr_names_1++) {
count            2385 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            2386 librpc/gen_ndr/ndr_lsa.c 		if (r->count > 1000) {
count            2404 librpc/gen_ndr/ndr_lsa.c 			for (cntr_names_1 = 0; cntr_names_1 < r->count; cntr_names_1++) {
count            2407 librpc/gen_ndr/ndr_lsa.c 			for (cntr_names_1 = 0; cntr_names_1 < r->count; cntr_names_1++) {
count            2414 librpc/gen_ndr/ndr_lsa.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->names, r->count));
count            2425 librpc/gen_ndr/ndr_lsa.c 	ndr_print_uint32(ndr, "count", r->count);
count            2429 librpc/gen_ndr/ndr_lsa.c 		ndr->print(ndr, "%s: ARRAY(%d)", "names", (int)r->count);
count            2431 librpc/gen_ndr/ndr_lsa.c 		for (cntr_names_1=0;cntr_names_1<r->count;cntr_names_1++) {
count            2481 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            2483 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            2485 librpc/gen_ndr/ndr_lsa.c 		for (cntr_set_0 = 0; cntr_set_0 < r->count; cntr_set_0++) {
count            2501 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            2502 librpc/gen_ndr/ndr_lsa.c 		if (r->count > 1000) {
count            2509 librpc/gen_ndr/ndr_lsa.c 		for (cntr_set_0 = 0; cntr_set_0 < r->count; cntr_set_0++) {
count            2514 librpc/gen_ndr/ndr_lsa.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->set, r->count));
count            2527 librpc/gen_ndr/ndr_lsa.c 	ndr_print_uint32(ndr, "count", r->count);
count            2529 librpc/gen_ndr/ndr_lsa.c 	ndr->print(ndr, "%s: ARRAY(%d)", "set", (int)r->count);
count            2531 librpc/gen_ndr/ndr_lsa.c 	for (cntr_set_0=0;cntr_set_0<r->count;cntr_set_0++) {
count            3978 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            3983 librpc/gen_ndr/ndr_lsa.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            3984 librpc/gen_ndr/ndr_lsa.c 			for (cntr_names_1 = 0; cntr_names_1 < r->count; cntr_names_1++) {
count            3987 librpc/gen_ndr/ndr_lsa.c 			for (cntr_names_1 = 0; cntr_names_1 < r->count; cntr_names_1++) {
count            4003 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            4004 librpc/gen_ndr/ndr_lsa.c 		if (r->count > 256) {
count            4022 librpc/gen_ndr/ndr_lsa.c 			for (cntr_names_1 = 0; cntr_names_1 < r->count; cntr_names_1++) {
count            4025 librpc/gen_ndr/ndr_lsa.c 			for (cntr_names_1 = 0; cntr_names_1 < r->count; cntr_names_1++) {
count            4032 librpc/gen_ndr/ndr_lsa.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->names, r->count));
count            4043 librpc/gen_ndr/ndr_lsa.c 	ndr_print_uint32(ndr, "count", r->count);
count            4047 librpc/gen_ndr/ndr_lsa.c 		ndr->print(ndr, "%s: ARRAY(%d)", "names", (int)r->count);
count            4049 librpc/gen_ndr/ndr_lsa.c 		for (cntr_names_1=0;cntr_names_1<r->count;cntr_names_1++) {
count            4067 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            4072 librpc/gen_ndr/ndr_lsa.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            4073 librpc/gen_ndr/ndr_lsa.c 			for (cntr_domains_1 = 0; cntr_domains_1 < r->count; cntr_domains_1++) {
count            4076 librpc/gen_ndr/ndr_lsa.c 			for (cntr_domains_1 = 0; cntr_domains_1 < r->count; cntr_domains_1++) {
count            4092 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            4108 librpc/gen_ndr/ndr_lsa.c 			for (cntr_domains_1 = 0; cntr_domains_1 < r->count; cntr_domains_1++) {
count            4111 librpc/gen_ndr/ndr_lsa.c 			for (cntr_domains_1 = 0; cntr_domains_1 < r->count; cntr_domains_1++) {
count            4118 librpc/gen_ndr/ndr_lsa.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->domains, r->count));
count            4129 librpc/gen_ndr/ndr_lsa.c 	ndr_print_uint32(ndr, "count", r->count);
count            4133 librpc/gen_ndr/ndr_lsa.c 		ndr->print(ndr, "%s: ARRAY(%d)", "domains", (int)r->count);
count            4135 librpc/gen_ndr/ndr_lsa.c 		for (cntr_domains_1=0;cntr_domains_1<r->count;cntr_domains_1++) {
count            4392 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            4397 librpc/gen_ndr/ndr_lsa.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            4398 librpc/gen_ndr/ndr_lsa.c 			for (cntr_names_1 = 0; cntr_names_1 < r->count; cntr_names_1++) {
count            4401 librpc/gen_ndr/ndr_lsa.c 			for (cntr_names_1 = 0; cntr_names_1 < r->count; cntr_names_1++) {
count            4417 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            4418 librpc/gen_ndr/ndr_lsa.c 		if (r->count > 1000) {
count            4436 librpc/gen_ndr/ndr_lsa.c 			for (cntr_names_1 = 0; cntr_names_1 < r->count; cntr_names_1++) {
count            4439 librpc/gen_ndr/ndr_lsa.c 			for (cntr_names_1 = 0; cntr_names_1 < r->count; cntr_names_1++) {
count            4446 librpc/gen_ndr/ndr_lsa.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->names, r->count));
count            4457 librpc/gen_ndr/ndr_lsa.c 	ndr_print_uint32(ndr, "count", r->count);
count            4461 librpc/gen_ndr/ndr_lsa.c 		ndr->print(ndr, "%s: ARRAY(%d)", "names", (int)r->count);
count            4463 librpc/gen_ndr/ndr_lsa.c 		for (cntr_names_1=0;cntr_names_1<r->count;cntr_names_1++) {
count            4520 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            4525 librpc/gen_ndr/ndr_lsa.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            4526 librpc/gen_ndr/ndr_lsa.c 			for (cntr_sids_1 = 0; cntr_sids_1 < r->count; cntr_sids_1++) {
count            4542 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            4543 librpc/gen_ndr/ndr_lsa.c 		if (r->count > 1000) {
count            4561 librpc/gen_ndr/ndr_lsa.c 			for (cntr_sids_1 = 0; cntr_sids_1 < r->count; cntr_sids_1++) {
count            4568 librpc/gen_ndr/ndr_lsa.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->sids, r->count));
count            4579 librpc/gen_ndr/ndr_lsa.c 	ndr_print_uint32(ndr, "count", r->count);
count            4583 librpc/gen_ndr/ndr_lsa.c 		ndr->print(ndr, "%s: ARRAY(%d)", "sids", (int)r->count);
count            4585 librpc/gen_ndr/ndr_lsa.c 		for (cntr_sids_1=0;cntr_sids_1<r->count;cntr_sids_1++) {
count            4663 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            4668 librpc/gen_ndr/ndr_lsa.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            4669 librpc/gen_ndr/ndr_lsa.c 			for (cntr_sids_1 = 0; cntr_sids_1 < r->count; cntr_sids_1++) {
count            4672 librpc/gen_ndr/ndr_lsa.c 			for (cntr_sids_1 = 0; cntr_sids_1 < r->count; cntr_sids_1++) {
count            4688 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            4689 librpc/gen_ndr/ndr_lsa.c 		if (r->count > 1000) {
count            4707 librpc/gen_ndr/ndr_lsa.c 			for (cntr_sids_1 = 0; cntr_sids_1 < r->count; cntr_sids_1++) {
count            4710 librpc/gen_ndr/ndr_lsa.c 			for (cntr_sids_1 = 0; cntr_sids_1 < r->count; cntr_sids_1++) {
count            4717 librpc/gen_ndr/ndr_lsa.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->sids, r->count));
count            4728 librpc/gen_ndr/ndr_lsa.c 	ndr_print_uint32(ndr, "count", r->count);
count            4732 librpc/gen_ndr/ndr_lsa.c 		ndr->print(ndr, "%s: ARRAY(%d)", "sids", (int)r->count);
count            4734 librpc/gen_ndr/ndr_lsa.c 		for (cntr_sids_1=0;cntr_sids_1<r->count;cntr_sids_1++) {
count            5072 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            5077 librpc/gen_ndr/ndr_lsa.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            5078 librpc/gen_ndr/ndr_lsa.c 			for (cntr_entries_1 = 0; cntr_entries_1 < r->count; cntr_entries_1++) {
count            5081 librpc/gen_ndr/ndr_lsa.c 			for (cntr_entries_1 = 0; cntr_entries_1 < r->count; cntr_entries_1++) {
count            5100 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            5101 librpc/gen_ndr/ndr_lsa.c 		if (r->count > 4000) {
count            5119 librpc/gen_ndr/ndr_lsa.c 			for (cntr_entries_1 = 0; cntr_entries_1 < r->count; cntr_entries_1++) {
count            5127 librpc/gen_ndr/ndr_lsa.c 			for (cntr_entries_1 = 0; cntr_entries_1 < r->count; cntr_entries_1++) {
count            5139 librpc/gen_ndr/ndr_lsa.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->entries, r->count));
count            5150 librpc/gen_ndr/ndr_lsa.c 	ndr_print_uint32(ndr, "count", r->count);
count            5154 librpc/gen_ndr/ndr_lsa.c 		ndr->print(ndr, "%s: ARRAY(%d)", "entries", (int)r->count);
count            5156 librpc/gen_ndr/ndr_lsa.c 		for (cntr_entries_1=0;cntr_entries_1<r->count;cntr_entries_1++) {
count            6408 librpc/gen_ndr/ndr_lsa.c 		if (r->in.count == NULL) {
count            6411 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->in.count));
count            6425 librpc/gen_ndr/ndr_lsa.c 		if (r->out.count == NULL) {
count            6428 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.count));
count            6478 librpc/gen_ndr/ndr_lsa.c 			NDR_PULL_ALLOC(ndr, r->in.count);
count            6481 librpc/gen_ndr/ndr_lsa.c 		NDR_PULL_SET_MEM_CTX(ndr, r->in.count, LIBNDR_FLAG_REF_ALLOC);
count            6482 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->in.count));
count            6488 librpc/gen_ndr/ndr_lsa.c 		NDR_PULL_ALLOC(ndr, r->out.count);
count            6489 librpc/gen_ndr/ndr_lsa.c 		*r->out.count = *r->in.count;
count            6521 librpc/gen_ndr/ndr_lsa.c 			NDR_PULL_ALLOC(ndr, r->out.count);
count            6524 librpc/gen_ndr/ndr_lsa.c 		NDR_PULL_SET_MEM_CTX(ndr, r->out.count, LIBNDR_FLAG_REF_ALLOC);
count            6525 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.count));
count            6563 librpc/gen_ndr/ndr_lsa.c 		ndr_print_ptr(ndr, "count", r->in.count);
count            6565 librpc/gen_ndr/ndr_lsa.c 		ndr_print_uint32(ndr, "count", *r->in.count);
count            6585 librpc/gen_ndr/ndr_lsa.c 		ndr_print_ptr(ndr, "count", r->out.count);
count            6587 librpc/gen_ndr/ndr_lsa.c 		ndr_print_uint32(ndr, "count", *r->out.count);
count            6611 librpc/gen_ndr/ndr_lsa.c 		if (r->in.count == NULL) {
count            6614 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->in.count));
count            6628 librpc/gen_ndr/ndr_lsa.c 		if (r->out.count == NULL) {
count            6631 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.count));
count            6672 librpc/gen_ndr/ndr_lsa.c 			NDR_PULL_ALLOC(ndr, r->in.count);
count            6675 librpc/gen_ndr/ndr_lsa.c 		NDR_PULL_SET_MEM_CTX(ndr, r->in.count, LIBNDR_FLAG_REF_ALLOC);
count            6676 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->in.count));
count            6682 librpc/gen_ndr/ndr_lsa.c 		NDR_PULL_ALLOC(ndr, r->out.count);
count            6683 librpc/gen_ndr/ndr_lsa.c 		*r->out.count = *r->in.count;
count            6712 librpc/gen_ndr/ndr_lsa.c 			NDR_PULL_ALLOC(ndr, r->out.count);
count            6715 librpc/gen_ndr/ndr_lsa.c 		NDR_PULL_SET_MEM_CTX(ndr, r->out.count, LIBNDR_FLAG_REF_ALLOC);
count            6716 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.count));
count            6746 librpc/gen_ndr/ndr_lsa.c 		ndr_print_ptr(ndr, "count", r->in.count);
count            6748 librpc/gen_ndr/ndr_lsa.c 		ndr_print_uint32(ndr, "count", *r->in.count);
count            6768 librpc/gen_ndr/ndr_lsa.c 		ndr_print_ptr(ndr, "count", r->out.count);
count            6770 librpc/gen_ndr/ndr_lsa.c 		ndr_print_uint32(ndr, "count", *r->out.count);
count            10679 librpc/gen_ndr/ndr_lsa.c 		if (r->in.count == NULL) {
count            10682 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->in.count));
count            10698 librpc/gen_ndr/ndr_lsa.c 		if (r->out.count == NULL) {
count            10701 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.count));
count            10742 librpc/gen_ndr/ndr_lsa.c 			NDR_PULL_ALLOC(ndr, r->in.count);
count            10745 librpc/gen_ndr/ndr_lsa.c 		NDR_PULL_SET_MEM_CTX(ndr, r->in.count, LIBNDR_FLAG_REF_ALLOC);
count            10746 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->in.count));
count            10754 librpc/gen_ndr/ndr_lsa.c 		NDR_PULL_ALLOC(ndr, r->out.count);
count            10755 librpc/gen_ndr/ndr_lsa.c 		*r->out.count = *r->in.count;
count            10784 librpc/gen_ndr/ndr_lsa.c 			NDR_PULL_ALLOC(ndr, r->out.count);
count            10787 librpc/gen_ndr/ndr_lsa.c 		NDR_PULL_SET_MEM_CTX(ndr, r->out.count, LIBNDR_FLAG_REF_ALLOC);
count            10788 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.count));
count            10818 librpc/gen_ndr/ndr_lsa.c 		ndr_print_ptr(ndr, "count", r->in.count);
count            10820 librpc/gen_ndr/ndr_lsa.c 		ndr_print_uint32(ndr, "count", *r->in.count);
count            10842 librpc/gen_ndr/ndr_lsa.c 		ndr_print_ptr(ndr, "count", r->out.count);
count            10844 librpc/gen_ndr/ndr_lsa.c 		ndr_print_uint32(ndr, "count", *r->out.count);
count            10873 librpc/gen_ndr/ndr_lsa.c 		if (r->in.count == NULL) {
count            10876 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->in.count));
count            10892 librpc/gen_ndr/ndr_lsa.c 		if (r->out.count == NULL) {
count            10895 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.count));
count            10945 librpc/gen_ndr/ndr_lsa.c 			NDR_PULL_ALLOC(ndr, r->in.count);
count            10948 librpc/gen_ndr/ndr_lsa.c 		NDR_PULL_SET_MEM_CTX(ndr, r->in.count, LIBNDR_FLAG_REF_ALLOC);
count            10949 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->in.count));
count            10957 librpc/gen_ndr/ndr_lsa.c 		NDR_PULL_ALLOC(ndr, r->out.count);
count            10958 librpc/gen_ndr/ndr_lsa.c 		*r->out.count = *r->in.count;
count            10990 librpc/gen_ndr/ndr_lsa.c 			NDR_PULL_ALLOC(ndr, r->out.count);
count            10993 librpc/gen_ndr/ndr_lsa.c 		NDR_PULL_SET_MEM_CTX(ndr, r->out.count, LIBNDR_FLAG_REF_ALLOC);
count            10994 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.count));
count            11032 librpc/gen_ndr/ndr_lsa.c 		ndr_print_ptr(ndr, "count", r->in.count);
count            11034 librpc/gen_ndr/ndr_lsa.c 		ndr_print_uint32(ndr, "count", *r->in.count);
count            11056 librpc/gen_ndr/ndr_lsa.c 		ndr_print_ptr(ndr, "count", r->out.count);
count            11058 librpc/gen_ndr/ndr_lsa.c 		ndr_print_uint32(ndr, "count", *r->out.count);
count            11527 librpc/gen_ndr/ndr_lsa.c 		if (r->in.count == NULL) {
count            11530 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->in.count));
count            11546 librpc/gen_ndr/ndr_lsa.c 		if (r->out.count == NULL) {
count            11549 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.count));
count            11599 librpc/gen_ndr/ndr_lsa.c 			NDR_PULL_ALLOC(ndr, r->in.count);
count            11602 librpc/gen_ndr/ndr_lsa.c 		NDR_PULL_SET_MEM_CTX(ndr, r->in.count, LIBNDR_FLAG_REF_ALLOC);
count            11603 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->in.count));
count            11611 librpc/gen_ndr/ndr_lsa.c 		NDR_PULL_ALLOC(ndr, r->out.count);
count            11612 librpc/gen_ndr/ndr_lsa.c 		*r->out.count = *r->in.count;
count            11644 librpc/gen_ndr/ndr_lsa.c 			NDR_PULL_ALLOC(ndr, r->out.count);
count            11647 librpc/gen_ndr/ndr_lsa.c 		NDR_PULL_SET_MEM_CTX(ndr, r->out.count, LIBNDR_FLAG_REF_ALLOC);
count            11648 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.count));
count            11686 librpc/gen_ndr/ndr_lsa.c 		ndr_print_ptr(ndr, "count", r->in.count);
count            11688 librpc/gen_ndr/ndr_lsa.c 		ndr_print_uint32(ndr, "count", *r->in.count);
count            11710 librpc/gen_ndr/ndr_lsa.c 		ndr_print_ptr(ndr, "count", r->out.count);
count            11712 librpc/gen_ndr/ndr_lsa.c 		ndr_print_uint32(ndr, "count", *r->out.count);
count            12095 librpc/gen_ndr/ndr_lsa.c 		if (r->in.count == NULL) {
count            12098 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->in.count));
count            12114 librpc/gen_ndr/ndr_lsa.c 		if (r->out.count == NULL) {
count            12117 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.count));
count            12150 librpc/gen_ndr/ndr_lsa.c 			NDR_PULL_ALLOC(ndr, r->in.count);
count            12153 librpc/gen_ndr/ndr_lsa.c 		NDR_PULL_SET_MEM_CTX(ndr, r->in.count, LIBNDR_FLAG_REF_ALLOC);
count            12154 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->in.count));
count            12162 librpc/gen_ndr/ndr_lsa.c 		NDR_PULL_ALLOC(ndr, r->out.count);
count            12163 librpc/gen_ndr/ndr_lsa.c 		*r->out.count = *r->in.count;
count            12192 librpc/gen_ndr/ndr_lsa.c 			NDR_PULL_ALLOC(ndr, r->out.count);
count            12195 librpc/gen_ndr/ndr_lsa.c 		NDR_PULL_SET_MEM_CTX(ndr, r->out.count, LIBNDR_FLAG_REF_ALLOC);
count            12196 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.count));
count            12222 librpc/gen_ndr/ndr_lsa.c 		ndr_print_ptr(ndr, "count", r->in.count);
count            12224 librpc/gen_ndr/ndr_lsa.c 		ndr_print_uint32(ndr, "count", *r->in.count);
count            12246 librpc/gen_ndr/ndr_lsa.c 		ndr_print_ptr(ndr, "count", r->out.count);
count            12248 librpc/gen_ndr/ndr_lsa.c 		ndr_print_uint32(ndr, "count", *r->out.count);
count            12273 librpc/gen_ndr/ndr_lsa.c 		if (r->in.count == NULL) {
count            12276 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->in.count));
count            12292 librpc/gen_ndr/ndr_lsa.c 		if (r->out.count == NULL) {
count            12295 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.count));
count            12337 librpc/gen_ndr/ndr_lsa.c 			NDR_PULL_ALLOC(ndr, r->in.count);
count            12340 librpc/gen_ndr/ndr_lsa.c 		NDR_PULL_SET_MEM_CTX(ndr, r->in.count, LIBNDR_FLAG_REF_ALLOC);
count            12341 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->in.count));
count            12349 librpc/gen_ndr/ndr_lsa.c 		NDR_PULL_ALLOC(ndr, r->out.count);
count            12350 librpc/gen_ndr/ndr_lsa.c 		*r->out.count = *r->in.count;
count            12382 librpc/gen_ndr/ndr_lsa.c 			NDR_PULL_ALLOC(ndr, r->out.count);
count            12385 librpc/gen_ndr/ndr_lsa.c 		NDR_PULL_SET_MEM_CTX(ndr, r->out.count, LIBNDR_FLAG_REF_ALLOC);
count            12386 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.count));
count            12420 librpc/gen_ndr/ndr_lsa.c 		ndr_print_ptr(ndr, "count", r->in.count);
count            12422 librpc/gen_ndr/ndr_lsa.c 		ndr_print_uint32(ndr, "count", *r->in.count);
count            12444 librpc/gen_ndr/ndr_lsa.c 		ndr_print_ptr(ndr, "count", r->out.count);
count            12446 librpc/gen_ndr/ndr_lsa.c 		ndr_print_uint32(ndr, "count", *r->out.count);
count            13287 librpc/gen_ndr/ndr_lsa.c 	.count	= 5,
count            13296 librpc/gen_ndr/ndr_lsa.c 	.count	= 1,
count            8228 librpc/gen_ndr/ndr_netlogon.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            8233 librpc/gen_ndr/ndr_netlogon.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            8234 librpc/gen_ndr/ndr_netlogon.c 			for (cntr_sitename_1 = 0; cntr_sitename_1 < r->count; cntr_sitename_1++) {
count            8237 librpc/gen_ndr/ndr_netlogon.c 			for (cntr_sitename_1 = 0; cntr_sitename_1 < r->count; cntr_sitename_1++) {
count            8253 librpc/gen_ndr/ndr_netlogon.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            8269 librpc/gen_ndr/ndr_netlogon.c 			for (cntr_sitename_1 = 0; cntr_sitename_1 < r->count; cntr_sitename_1++) {
count            8272 librpc/gen_ndr/ndr_netlogon.c 			for (cntr_sitename_1 = 0; cntr_sitename_1 < r->count; cntr_sitename_1++) {
count            8279 librpc/gen_ndr/ndr_netlogon.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->sitename, r->count));
count            8290 librpc/gen_ndr/ndr_netlogon.c 	ndr_print_uint32(ndr, "count", r->count);
count            8294 librpc/gen_ndr/ndr_netlogon.c 		ndr->print(ndr, "%s: ARRAY(%d)", "sitename", (int)r->count);
count            8296 librpc/gen_ndr/ndr_netlogon.c 		for (cntr_sitename_1=0;cntr_sitename_1<r->count;cntr_sitename_1++) {
count            8561 librpc/gen_ndr/ndr_netlogon.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            8566 librpc/gen_ndr/ndr_netlogon.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            8567 librpc/gen_ndr/ndr_netlogon.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            8570 librpc/gen_ndr/ndr_netlogon.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            8586 librpc/gen_ndr/ndr_netlogon.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            8602 librpc/gen_ndr/ndr_netlogon.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            8605 librpc/gen_ndr/ndr_netlogon.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            8612 librpc/gen_ndr/ndr_netlogon.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->array, r->count));
count            8623 librpc/gen_ndr/ndr_netlogon.c 	ndr_print_uint32(ndr, "count", r->count);
count            8627 librpc/gen_ndr/ndr_netlogon.c 		ndr->print(ndr, "%s: ARRAY(%d)", "array", (int)r->count);
count            8629 librpc/gen_ndr/ndr_netlogon.c 		for (cntr_array_1=0;cntr_array_1<r->count;cntr_array_1++) {
count            8648 librpc/gen_ndr/ndr_netlogon.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            8654 librpc/gen_ndr/ndr_netlogon.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            8655 librpc/gen_ndr/ndr_netlogon.c 			for (cntr_sitename_1 = 0; cntr_sitename_1 < r->count; cntr_sitename_1++) {
count            8658 librpc/gen_ndr/ndr_netlogon.c 			for (cntr_sitename_1 = 0; cntr_sitename_1 < r->count; cntr_sitename_1++) {
count            8663 librpc/gen_ndr/ndr_netlogon.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            8664 librpc/gen_ndr/ndr_netlogon.c 			for (cntr_subnetname_1 = 0; cntr_subnetname_1 < r->count; cntr_subnetname_1++) {
count            8667 librpc/gen_ndr/ndr_netlogon.c 			for (cntr_subnetname_1 = 0; cntr_subnetname_1 < r->count; cntr_subnetname_1++) {
count            8687 librpc/gen_ndr/ndr_netlogon.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            8709 librpc/gen_ndr/ndr_netlogon.c 			for (cntr_sitename_1 = 0; cntr_sitename_1 < r->count; cntr_sitename_1++) {
count            8712 librpc/gen_ndr/ndr_netlogon.c 			for (cntr_sitename_1 = 0; cntr_sitename_1 < r->count; cntr_sitename_1++) {
count            8725 librpc/gen_ndr/ndr_netlogon.c 			for (cntr_subnetname_1 = 0; cntr_subnetname_1 < r->count; cntr_subnetname_1++) {
count            8728 librpc/gen_ndr/ndr_netlogon.c 			for (cntr_subnetname_1 = 0; cntr_subnetname_1 < r->count; cntr_subnetname_1++) {
count            8735 librpc/gen_ndr/ndr_netlogon.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->sitename, r->count));
count            8738 librpc/gen_ndr/ndr_netlogon.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->subnetname, r->count));
count            8750 librpc/gen_ndr/ndr_netlogon.c 	ndr_print_uint32(ndr, "count", r->count);
count            8754 librpc/gen_ndr/ndr_netlogon.c 		ndr->print(ndr, "%s: ARRAY(%d)", "sitename", (int)r->count);
count            8756 librpc/gen_ndr/ndr_netlogon.c 		for (cntr_sitename_1=0;cntr_sitename_1<r->count;cntr_sitename_1++) {
count            8769 librpc/gen_ndr/ndr_netlogon.c 		ndr->print(ndr, "%s: ARRAY(%d)", "subnetname", (int)r->count);
count            8771 librpc/gen_ndr/ndr_netlogon.c 		for (cntr_subnetname_1=0;cntr_subnetname_1<r->count;cntr_subnetname_1++) {
count            8876 librpc/gen_ndr/ndr_netlogon.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            8883 librpc/gen_ndr/ndr_netlogon.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            8884 librpc/gen_ndr/ndr_netlogon.c 			for (cntr_data_1 = 0; cntr_data_1 < r->count; cntr_data_1++) {
count            8889 librpc/gen_ndr/ndr_netlogon.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            8890 librpc/gen_ndr/ndr_netlogon.c 			for (cntr_entries_1 = 0; cntr_entries_1 < r->count; cntr_entries_1++) {
count            8893 librpc/gen_ndr/ndr_netlogon.c 			for (cntr_entries_1 = 0; cntr_entries_1 < r->count; cntr_entries_1++) {
count            8913 librpc/gen_ndr/ndr_netlogon.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            8936 librpc/gen_ndr/ndr_netlogon.c 			for (cntr_data_1 = 0; cntr_data_1 < r->count; cntr_data_1++) {
count            8949 librpc/gen_ndr/ndr_netlogon.c 			for (cntr_entries_1 = 0; cntr_entries_1 < r->count; cntr_entries_1++) {
count            8952 librpc/gen_ndr/ndr_netlogon.c 			for (cntr_entries_1 = 0; cntr_entries_1 < r->count; cntr_entries_1++) {
count            8959 librpc/gen_ndr/ndr_netlogon.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->data, r->count));
count            8962 librpc/gen_ndr/ndr_netlogon.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->entries, r->count));
count            8974 librpc/gen_ndr/ndr_netlogon.c 	ndr_print_uint32(ndr, "count", r->count);
count            8978 librpc/gen_ndr/ndr_netlogon.c 		ndr->print(ndr, "%s: ARRAY(%d)", "data", (int)r->count);
count            8980 librpc/gen_ndr/ndr_netlogon.c 		for (cntr_data_1=0;cntr_data_1<r->count;cntr_data_1++) {
count            8994 librpc/gen_ndr/ndr_netlogon.c 		ndr->print(ndr, "%s: ARRAY(%d)", "entries", (int)r->count);
count            8996 librpc/gen_ndr/ndr_netlogon.c 		for (cntr_entries_1=0;cntr_entries_1<r->count;cntr_entries_1++) {
count            10517 librpc/gen_ndr/ndr_netlogon.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->in.count));
count            10598 librpc/gen_ndr/ndr_netlogon.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->in.count));
count            10681 librpc/gen_ndr/ndr_netlogon.c 		ndr_print_uint32(ndr, "count", r->in.count);
count            13892 librpc/gen_ndr/ndr_netlogon.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->in.count));
count            13896 librpc/gen_ndr/ndr_netlogon.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->in.count));
count            13897 librpc/gen_ndr/ndr_netlogon.c 		for (cntr_addresses_1 = 0; cntr_addresses_1 < r->in.count; cntr_addresses_1++) {
count            13900 librpc/gen_ndr/ndr_netlogon.c 		for (cntr_addresses_1 = 0; cntr_addresses_1 < r->in.count; cntr_addresses_1++) {
count            13947 librpc/gen_ndr/ndr_netlogon.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->in.count));
count            13948 librpc/gen_ndr/ndr_netlogon.c 		if (r->in.count > 32000) {
count            13957 librpc/gen_ndr/ndr_netlogon.c 		for (cntr_addresses_1 = 0; cntr_addresses_1 < r->in.count; cntr_addresses_1++) {
count            13960 librpc/gen_ndr/ndr_netlogon.c 		for (cntr_addresses_1 = 0; cntr_addresses_1 < r->in.count; cntr_addresses_1++) {
count            13967 librpc/gen_ndr/ndr_netlogon.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->in.addresses, r->in.count));
count            14011 librpc/gen_ndr/ndr_netlogon.c 		ndr_print_uint32(ndr, "count", r->in.count);
count            14014 librpc/gen_ndr/ndr_netlogon.c 		ndr->print(ndr, "%s: ARRAY(%d)", "addresses", (int)r->in.count);
count            14016 librpc/gen_ndr/ndr_netlogon.c 		for (cntr_addresses_1=0;cntr_addresses_1<r->in.count;cntr_addresses_1++) {
count            14435 librpc/gen_ndr/ndr_netlogon.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->in.count));
count            14439 librpc/gen_ndr/ndr_netlogon.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->in.count));
count            14440 librpc/gen_ndr/ndr_netlogon.c 		for (cntr_addresses_1 = 0; cntr_addresses_1 < r->in.count; cntr_addresses_1++) {
count            14443 librpc/gen_ndr/ndr_netlogon.c 		for (cntr_addresses_1 = 0; cntr_addresses_1 < r->in.count; cntr_addresses_1++) {
count            14490 librpc/gen_ndr/ndr_netlogon.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->in.count));
count            14491 librpc/gen_ndr/ndr_netlogon.c 		if (r->in.count > 32000) {
count            14500 librpc/gen_ndr/ndr_netlogon.c 		for (cntr_addresses_1 = 0; cntr_addresses_1 < r->in.count; cntr_addresses_1++) {
count            14503 librpc/gen_ndr/ndr_netlogon.c 		for (cntr_addresses_1 = 0; cntr_addresses_1 < r->in.count; cntr_addresses_1++) {
count            14510 librpc/gen_ndr/ndr_netlogon.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->in.addresses, r->in.count));
count            14554 librpc/gen_ndr/ndr_netlogon.c 		ndr_print_uint32(ndr, "count", r->in.count);
count            14557 librpc/gen_ndr/ndr_netlogon.c 		ndr->print(ndr, "%s: ARRAY(%d)", "addresses", (int)r->in.count);
count            14559 librpc/gen_ndr/ndr_netlogon.c 		for (cntr_addresses_1=0;cntr_addresses_1<r->in.count;cntr_addresses_1++) {
count            16560 librpc/gen_ndr/ndr_netlogon.c 	.count	= 3,
count            16569 librpc/gen_ndr/ndr_netlogon.c 	.count	= 1,
count            3895 librpc/gen_ndr/ndr_ntsvcs.c 	.count	= 2,
count            3904 librpc/gen_ndr/ndr_ntsvcs.c 	.count	= 1,
count             285 librpc/gen_ndr/ndr_samr.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count             290 librpc/gen_ndr/ndr_samr.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count             291 librpc/gen_ndr/ndr_samr.c 			for (cntr_entries_1 = 0; cntr_entries_1 < r->count; cntr_entries_1++) {
count             294 librpc/gen_ndr/ndr_samr.c 			for (cntr_entries_1 = 0; cntr_entries_1 < r->count; cntr_entries_1++) {
count             310 librpc/gen_ndr/ndr_samr.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count             326 librpc/gen_ndr/ndr_samr.c 			for (cntr_entries_1 = 0; cntr_entries_1 < r->count; cntr_entries_1++) {
count             329 librpc/gen_ndr/ndr_samr.c 			for (cntr_entries_1 = 0; cntr_entries_1 < r->count; cntr_entries_1++) {
count             336 librpc/gen_ndr/ndr_samr.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->entries, r->count));
count             347 librpc/gen_ndr/ndr_samr.c 	ndr_print_uint32(ndr, "count", r->count);
count             351 librpc/gen_ndr/ndr_samr.c 		ndr->print(ndr, "%s: ARRAY(%d)", "entries", (int)r->count);
count             353 librpc/gen_ndr/ndr_samr.c 		for (cntr_entries_1=0;cntr_entries_1<r->count;cntr_entries_1++) {
count            1171 librpc/gen_ndr/ndr_samr.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            1176 librpc/gen_ndr/ndr_samr.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            1177 librpc/gen_ndr/ndr_samr.c 			for (cntr_ids_1 = 0; cntr_ids_1 < r->count; cntr_ids_1++) {
count            1193 librpc/gen_ndr/ndr_samr.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            1194 librpc/gen_ndr/ndr_samr.c 		if (r->count > 1024) {
count            1212 librpc/gen_ndr/ndr_samr.c 			for (cntr_ids_1 = 0; cntr_ids_1 < r->count; cntr_ids_1++) {
count            1219 librpc/gen_ndr/ndr_samr.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->ids, r->count));
count            1230 librpc/gen_ndr/ndr_samr.c 	ndr_print_uint32(ndr, "count", r->count);
count            1234 librpc/gen_ndr/ndr_samr.c 		ndr->print(ndr, "%s: ARRAY(%d)", "ids", (int)r->count);
count            1236 librpc/gen_ndr/ndr_samr.c 		for (cntr_ids_1=0;cntr_ids_1<r->count;cntr_ids_1++) {
count            1537 librpc/gen_ndr/ndr_samr.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            1543 librpc/gen_ndr/ndr_samr.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            1544 librpc/gen_ndr/ndr_samr.c 			for (cntr_rids_1 = 0; cntr_rids_1 < r->count; cntr_rids_1++) {
count            1549 librpc/gen_ndr/ndr_samr.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            1550 librpc/gen_ndr/ndr_samr.c 			for (cntr_types_1 = 0; cntr_types_1 < r->count; cntr_types_1++) {
count            1570 librpc/gen_ndr/ndr_samr.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            1592 librpc/gen_ndr/ndr_samr.c 			for (cntr_rids_1 = 0; cntr_rids_1 < r->count; cntr_rids_1++) {
count            1605 librpc/gen_ndr/ndr_samr.c 			for (cntr_types_1 = 0; cntr_types_1 < r->count; cntr_types_1++) {
count            1612 librpc/gen_ndr/ndr_samr.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->rids, r->count));
count            1615 librpc/gen_ndr/ndr_samr.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->types, r->count));
count            1627 librpc/gen_ndr/ndr_samr.c 	ndr_print_uint32(ndr, "count", r->count);
count            1631 librpc/gen_ndr/ndr_samr.c 		ndr->print(ndr, "%s: ARRAY(%d)", "rids", (int)r->count);
count            1633 librpc/gen_ndr/ndr_samr.c 		for (cntr_rids_1=0;cntr_rids_1<r->count;cntr_rids_1++) {
count            1646 librpc/gen_ndr/ndr_samr.c 		ndr->print(ndr, "%s: ARRAY(%d)", "types", (int)r->count);
count            1648 librpc/gen_ndr/ndr_samr.c 		for (cntr_types_1=0;cntr_types_1<r->count;cntr_types_1++) {
count            3724 librpc/gen_ndr/ndr_samr.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            3729 librpc/gen_ndr/ndr_samr.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            3730 librpc/gen_ndr/ndr_samr.c 			for (cntr_rids_1 = 0; cntr_rids_1 < r->count; cntr_rids_1++) {
count            3746 librpc/gen_ndr/ndr_samr.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            3762 librpc/gen_ndr/ndr_samr.c 			for (cntr_rids_1 = 0; cntr_rids_1 < r->count; cntr_rids_1++) {
count            3769 librpc/gen_ndr/ndr_samr.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->rids, r->count));
count            3780 librpc/gen_ndr/ndr_samr.c 	ndr_print_uint32(ndr, "count", r->count);
count            3784 librpc/gen_ndr/ndr_samr.c 		ndr->print(ndr, "%s: ARRAY(%d)", "rids", (int)r->count);
count            3786 librpc/gen_ndr/ndr_samr.c 		for (cntr_rids_1=0;cntr_rids_1<r->count;cntr_rids_1++) {
count            3855 librpc/gen_ndr/ndr_samr.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            3860 librpc/gen_ndr/ndr_samr.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            3861 librpc/gen_ndr/ndr_samr.c 			for (cntr_entries_1 = 0; cntr_entries_1 < r->count; cntr_entries_1++) {
count            3864 librpc/gen_ndr/ndr_samr.c 			for (cntr_entries_1 = 0; cntr_entries_1 < r->count; cntr_entries_1++) {
count            3880 librpc/gen_ndr/ndr_samr.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            3896 librpc/gen_ndr/ndr_samr.c 			for (cntr_entries_1 = 0; cntr_entries_1 < r->count; cntr_entries_1++) {
count            3899 librpc/gen_ndr/ndr_samr.c 			for (cntr_entries_1 = 0; cntr_entries_1 < r->count; cntr_entries_1++) {
count            3906 librpc/gen_ndr/ndr_samr.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->entries, r->count));
count            3917 librpc/gen_ndr/ndr_samr.c 	ndr_print_uint32(ndr, "count", r->count);
count            3921 librpc/gen_ndr/ndr_samr.c 		ndr->print(ndr, "%s: ARRAY(%d)", "entries", (int)r->count);
count            3923 librpc/gen_ndr/ndr_samr.c 		for (cntr_entries_1=0;cntr_entries_1<r->count;cntr_entries_1++) {
count            3987 librpc/gen_ndr/ndr_samr.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            3992 librpc/gen_ndr/ndr_samr.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            3993 librpc/gen_ndr/ndr_samr.c 			for (cntr_entries_1 = 0; cntr_entries_1 < r->count; cntr_entries_1++) {
count            3996 librpc/gen_ndr/ndr_samr.c 			for (cntr_entries_1 = 0; cntr_entries_1 < r->count; cntr_entries_1++) {
count            4012 librpc/gen_ndr/ndr_samr.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            4028 librpc/gen_ndr/ndr_samr.c 			for (cntr_entries_1 = 0; cntr_entries_1 < r->count; cntr_entries_1++) {
count            4031 librpc/gen_ndr/ndr_samr.c 			for (cntr_entries_1 = 0; cntr_entries_1 < r->count; cntr_entries_1++) {
count            4038 librpc/gen_ndr/ndr_samr.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->entries, r->count));
count            4049 librpc/gen_ndr/ndr_samr.c 	ndr_print_uint32(ndr, "count", r->count);
count            4053 librpc/gen_ndr/ndr_samr.c 		ndr->print(ndr, "%s: ARRAY(%d)", "entries", (int)r->count);
count            4055 librpc/gen_ndr/ndr_samr.c 		for (cntr_entries_1=0;cntr_entries_1<r->count;cntr_entries_1++) {
count            4119 librpc/gen_ndr/ndr_samr.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            4124 librpc/gen_ndr/ndr_samr.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            4125 librpc/gen_ndr/ndr_samr.c 			for (cntr_entries_1 = 0; cntr_entries_1 < r->count; cntr_entries_1++) {
count            4128 librpc/gen_ndr/ndr_samr.c 			for (cntr_entries_1 = 0; cntr_entries_1 < r->count; cntr_entries_1++) {
count            4144 librpc/gen_ndr/ndr_samr.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            4160 librpc/gen_ndr/ndr_samr.c 			for (cntr_entries_1 = 0; cntr_entries_1 < r->count; cntr_entries_1++) {
count            4163 librpc/gen_ndr/ndr_samr.c 			for (cntr_entries_1 = 0; cntr_entries_1 < r->count; cntr_entries_1++) {
count            4170 librpc/gen_ndr/ndr_samr.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->entries, r->count));
count            4181 librpc/gen_ndr/ndr_samr.c 	ndr_print_uint32(ndr, "count", r->count);
count            4185 librpc/gen_ndr/ndr_samr.c 		ndr->print(ndr, "%s: ARRAY(%d)", "entries", (int)r->count);
count            4187 librpc/gen_ndr/ndr_samr.c 		for (cntr_entries_1=0;cntr_entries_1<r->count;cntr_entries_1++) {
count            4240 librpc/gen_ndr/ndr_samr.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            4245 librpc/gen_ndr/ndr_samr.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            4246 librpc/gen_ndr/ndr_samr.c 			for (cntr_entries_1 = 0; cntr_entries_1 < r->count; cntr_entries_1++) {
count            4249 librpc/gen_ndr/ndr_samr.c 			for (cntr_entries_1 = 0; cntr_entries_1 < r->count; cntr_entries_1++) {
count            4265 librpc/gen_ndr/ndr_samr.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            4281 librpc/gen_ndr/ndr_samr.c 			for (cntr_entries_1 = 0; cntr_entries_1 < r->count; cntr_entries_1++) {
count            4284 librpc/gen_ndr/ndr_samr.c 			for (cntr_entries_1 = 0; cntr_entries_1 < r->count; cntr_entries_1++) {
count            4291 librpc/gen_ndr/ndr_samr.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->entries, r->count));
count            4302 librpc/gen_ndr/ndr_samr.c 	ndr_print_uint32(ndr, "count", r->count);
count            4306 librpc/gen_ndr/ndr_samr.c 		ndr->print(ndr, "%s: ARRAY(%d)", "entries", (int)r->count);
count            4308 librpc/gen_ndr/ndr_samr.c 		for (cntr_entries_1=0;cntr_entries_1<r->count;cntr_entries_1++) {
count            12830 librpc/gen_ndr/ndr_samr.c 	.count	= 3,
count            12839 librpc/gen_ndr/ndr_samr.c 	.count	= 1,
count            17193 librpc/gen_ndr/ndr_spoolss.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            17198 librpc/gen_ndr/ndr_spoolss.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            17199 librpc/gen_ndr/ndr_spoolss.c 			for (cntr_fields_1 = 0; cntr_fields_1 < r->count; cntr_fields_1++) {
count            17220 librpc/gen_ndr/ndr_spoolss.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            17236 librpc/gen_ndr/ndr_spoolss.c 			for (cntr_fields_1 = 0; cntr_fields_1 < r->count; cntr_fields_1++) {
count            17244 librpc/gen_ndr/ndr_spoolss.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->fields, r->count));
count            17259 librpc/gen_ndr/ndr_spoolss.c 	ndr_print_uint32(ndr, "count", r->count);
count            17263 librpc/gen_ndr/ndr_spoolss.c 		ndr->print(ndr, "%s: ARRAY(%d)", "fields", (int)r->count);
count            17265 librpc/gen_ndr/ndr_spoolss.c 		for (cntr_fields_1=0;cntr_fields_1<r->count;cntr_fields_1++) {
count            17308 librpc/gen_ndr/ndr_spoolss.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            17313 librpc/gen_ndr/ndr_spoolss.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            17314 librpc/gen_ndr/ndr_spoolss.c 			for (cntr_types_1 = 0; cntr_types_1 < r->count; cntr_types_1++) {
count            17317 librpc/gen_ndr/ndr_spoolss.c 			for (cntr_types_1 = 0; cntr_types_1 < r->count; cntr_types_1++) {
count            17335 librpc/gen_ndr/ndr_spoolss.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            17351 librpc/gen_ndr/ndr_spoolss.c 			for (cntr_types_1 = 0; cntr_types_1 < r->count; cntr_types_1++) {
count            17354 librpc/gen_ndr/ndr_spoolss.c 			for (cntr_types_1 = 0; cntr_types_1 < r->count; cntr_types_1++) {
count            17361 librpc/gen_ndr/ndr_spoolss.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->types, r->count));
count            17374 librpc/gen_ndr/ndr_spoolss.c 	ndr_print_uint32(ndr, "count", r->count);
count            17378 librpc/gen_ndr/ndr_spoolss.c 		ndr->print(ndr, "%s: ARRAY(%d)", "types", (int)r->count);
count            17380 librpc/gen_ndr/ndr_spoolss.c 		for (cntr_types_1=0;cntr_types_1<r->count;cntr_types_1++) {
count            17703 librpc/gen_ndr/ndr_spoolss.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            17707 librpc/gen_ndr/ndr_spoolss.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            17708 librpc/gen_ndr/ndr_spoolss.c 		for (cntr_notifies_0 = 0; cntr_notifies_0 < r->count; cntr_notifies_0++) {
count            17713 librpc/gen_ndr/ndr_spoolss.c 		for (cntr_notifies_0 = 0; cntr_notifies_0 < r->count; cntr_notifies_0++) {
count            17729 librpc/gen_ndr/ndr_spoolss.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            17733 librpc/gen_ndr/ndr_spoolss.c 		for (cntr_notifies_0 = 0; cntr_notifies_0 < r->count; cntr_notifies_0++) {
count            17738 librpc/gen_ndr/ndr_spoolss.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->notifies, r->count));
count            17744 librpc/gen_ndr/ndr_spoolss.c 		for (cntr_notifies_0 = 0; cntr_notifies_0 < r->count; cntr_notifies_0++) {
count            17759 librpc/gen_ndr/ndr_spoolss.c 	ndr_print_uint32(ndr, "count", r->count);
count            17760 librpc/gen_ndr/ndr_spoolss.c 	ndr->print(ndr, "%s: ARRAY(%d)", "notifies", (int)r->count);
count            17762 librpc/gen_ndr/ndr_spoolss.c 	for (cntr_notifies_0=0;cntr_notifies_0<r->count;cntr_notifies_0++) {
count            18811 librpc/gen_ndr/ndr_spoolss.c 		if (r->out.count == NULL) {
count            18814 librpc/gen_ndr/ndr_spoolss.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.count));
count            18868 librpc/gen_ndr/ndr_spoolss.c 		NDR_PULL_ALLOC(ndr, r->out.count);
count            18869 librpc/gen_ndr/ndr_spoolss.c 		ZERO_STRUCTP(r->out.count);
count            18892 librpc/gen_ndr/ndr_spoolss.c 			NDR_PULL_ALLOC(ndr, r->out.count);
count            18895 librpc/gen_ndr/ndr_spoolss.c 		NDR_PULL_SET_MEM_CTX(ndr, r->out.count, LIBNDR_FLAG_REF_ALLOC);
count            18896 librpc/gen_ndr/ndr_spoolss.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.count));
count            18908 librpc/gen_ndr/ndr_spoolss.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->in.count));
count            18911 librpc/gen_ndr/ndr_spoolss.c 		for (cntr_info_0 = 0; cntr_info_0 < r->in.count; cntr_info_0++) {
count            18915 librpc/gen_ndr/ndr_spoolss.c 		for (cntr_info_0 = 0; cntr_info_0 < r->in.count; cntr_info_0++) {
count            18930 librpc/gen_ndr/ndr_spoolss.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->in.count));
count            18933 librpc/gen_ndr/ndr_spoolss.c 		NDR_PULL_ALLOC_N(ndr, r->out.info, r->in.count);
count            18936 librpc/gen_ndr/ndr_spoolss.c 		for (cntr_info_0 = 0; cntr_info_0 < r->in.count; cntr_info_0++) {
count            18940 librpc/gen_ndr/ndr_spoolss.c 		for (cntr_info_0 = 0; cntr_info_0 < r->in.count; cntr_info_0++) {
count            18979 librpc/gen_ndr/ndr_spoolss.c 		ndr_print_ptr(ndr, "count", r->out.count);
count            18981 librpc/gen_ndr/ndr_spoolss.c 		ndr_print_uint32(ndr, "count", *r->out.count);
count            18988 librpc/gen_ndr/ndr_spoolss.c 			ndr->print(ndr, "%s: ARRAY(%d)", "info", (int)*r->out.count);
count            18990 librpc/gen_ndr/ndr_spoolss.c 			for (cntr_info_2=0;cntr_info_2<*r->out.count;cntr_info_2++) {
count            19404 librpc/gen_ndr/ndr_spoolss.c 		if (r->out.count == NULL) {
count            19407 librpc/gen_ndr/ndr_spoolss.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.count));
count            19450 librpc/gen_ndr/ndr_spoolss.c 		NDR_PULL_ALLOC(ndr, r->out.count);
count            19451 librpc/gen_ndr/ndr_spoolss.c 		ZERO_STRUCTP(r->out.count);
count            19474 librpc/gen_ndr/ndr_spoolss.c 			NDR_PULL_ALLOC(ndr, r->out.count);
count            19477 librpc/gen_ndr/ndr_spoolss.c 		NDR_PULL_SET_MEM_CTX(ndr, r->out.count, LIBNDR_FLAG_REF_ALLOC);
count            19478 librpc/gen_ndr/ndr_spoolss.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.count));
count            19490 librpc/gen_ndr/ndr_spoolss.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->in.count));
count            19493 librpc/gen_ndr/ndr_spoolss.c 		for (cntr_info_0 = 0; cntr_info_0 < r->in.count; cntr_info_0++) {
count            19497 librpc/gen_ndr/ndr_spoolss.c 		for (cntr_info_0 = 0; cntr_info_0 < r->in.count; cntr_info_0++) {
count            19512 librpc/gen_ndr/ndr_spoolss.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->in.count));
count            19515 librpc/gen_ndr/ndr_spoolss.c 		NDR_PULL_ALLOC_N(ndr, r->out.info, r->in.count);
count            19518 librpc/gen_ndr/ndr_spoolss.c 		for (cntr_info_0 = 0; cntr_info_0 < r->in.count; cntr_info_0++) {
count            19522 librpc/gen_ndr/ndr_spoolss.c 		for (cntr_info_0 = 0; cntr_info_0 < r->in.count; cntr_info_0++) {
count            19560 librpc/gen_ndr/ndr_spoolss.c 		ndr_print_ptr(ndr, "count", r->out.count);
count            19562 librpc/gen_ndr/ndr_spoolss.c 		ndr_print_uint32(ndr, "count", *r->out.count);
count            19569 librpc/gen_ndr/ndr_spoolss.c 			ndr->print(ndr, "%s: ARRAY(%d)", "info", (int)*r->out.count);
count            19571 librpc/gen_ndr/ndr_spoolss.c 			for (cntr_info_2=0;cntr_info_2<*r->out.count;cntr_info_2++) {
count            20066 librpc/gen_ndr/ndr_spoolss.c 		if (r->out.count == NULL) {
count            20069 librpc/gen_ndr/ndr_spoolss.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.count));
count            20142 librpc/gen_ndr/ndr_spoolss.c 		NDR_PULL_ALLOC(ndr, r->out.count);
count            20143 librpc/gen_ndr/ndr_spoolss.c 		ZERO_STRUCTP(r->out.count);
count            20166 librpc/gen_ndr/ndr_spoolss.c 			NDR_PULL_ALLOC(ndr, r->out.count);
count            20169 librpc/gen_ndr/ndr_spoolss.c 		NDR_PULL_SET_MEM_CTX(ndr, r->out.count, LIBNDR_FLAG_REF_ALLOC);
count            20170 librpc/gen_ndr/ndr_spoolss.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.count));
count            20182 librpc/gen_ndr/ndr_spoolss.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->in.count));
count            20185 librpc/gen_ndr/ndr_spoolss.c 		for (cntr_info_0 = 0; cntr_info_0 < r->in.count; cntr_info_0++) {
count            20189 librpc/gen_ndr/ndr_spoolss.c 		for (cntr_info_0 = 0; cntr_info_0 < r->in.count; cntr_info_0++) {
count            20204 librpc/gen_ndr/ndr_spoolss.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->in.count));
count            20207 librpc/gen_ndr/ndr_spoolss.c 		NDR_PULL_ALLOC_N(ndr, r->out.info, r->in.count);
count            20210 librpc/gen_ndr/ndr_spoolss.c 		for (cntr_info_0 = 0; cntr_info_0 < r->in.count; cntr_info_0++) {
count            20214 librpc/gen_ndr/ndr_spoolss.c 		for (cntr_info_0 = 0; cntr_info_0 < r->in.count; cntr_info_0++) {
count            20258 librpc/gen_ndr/ndr_spoolss.c 		ndr_print_ptr(ndr, "count", r->out.count);
count            20260 librpc/gen_ndr/ndr_spoolss.c 		ndr_print_uint32(ndr, "count", *r->out.count);
count            20267 librpc/gen_ndr/ndr_spoolss.c 			ndr->print(ndr, "%s: ARRAY(%d)", "info", (int)*r->out.count);
count            20269 librpc/gen_ndr/ndr_spoolss.c 			for (cntr_info_2=0;cntr_info_2<*r->out.count;cntr_info_2++) {
count            20767 librpc/gen_ndr/ndr_spoolss.c 		if (r->out.count == NULL) {
count            20770 librpc/gen_ndr/ndr_spoolss.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.count));
count            20843 librpc/gen_ndr/ndr_spoolss.c 		NDR_PULL_ALLOC(ndr, r->out.count);
count            20844 librpc/gen_ndr/ndr_spoolss.c 		ZERO_STRUCTP(r->out.count);
count            20867 librpc/gen_ndr/ndr_spoolss.c 			NDR_PULL_ALLOC(ndr, r->out.count);
count            20870 librpc/gen_ndr/ndr_spoolss.c 		NDR_PULL_SET_MEM_CTX(ndr, r->out.count, LIBNDR_FLAG_REF_ALLOC);
count            20871 librpc/gen_ndr/ndr_spoolss.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.count));
count            20883 librpc/gen_ndr/ndr_spoolss.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->in.count));
count            20886 librpc/gen_ndr/ndr_spoolss.c 		for (cntr_info_0 = 0; cntr_info_0 < r->in.count; cntr_info_0++) {
count            20890 librpc/gen_ndr/ndr_spoolss.c 		for (cntr_info_0 = 0; cntr_info_0 < r->in.count; cntr_info_0++) {
count            20905 librpc/gen_ndr/ndr_spoolss.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->in.count));
count            20908 librpc/gen_ndr/ndr_spoolss.c 		NDR_PULL_ALLOC_N(ndr, r->out.info, r->in.count);
count            20911 librpc/gen_ndr/ndr_spoolss.c 		for (cntr_info_0 = 0; cntr_info_0 < r->in.count; cntr_info_0++) {
count            20915 librpc/gen_ndr/ndr_spoolss.c 		for (cntr_info_0 = 0; cntr_info_0 < r->in.count; cntr_info_0++) {
count            20959 librpc/gen_ndr/ndr_spoolss.c 		ndr_print_ptr(ndr, "count", r->out.count);
count            20961 librpc/gen_ndr/ndr_spoolss.c 		ndr_print_uint32(ndr, "count", *r->out.count);
count            20968 librpc/gen_ndr/ndr_spoolss.c 			ndr->print(ndr, "%s: ARRAY(%d)", "info", (int)*r->out.count);
count            20970 librpc/gen_ndr/ndr_spoolss.c 			for (cntr_info_2=0;cntr_info_2<*r->out.count;cntr_info_2++) {
count            22659 librpc/gen_ndr/ndr_spoolss.c 		if (r->out.count == NULL) {
count            22662 librpc/gen_ndr/ndr_spoolss.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.count));
count            22703 librpc/gen_ndr/ndr_spoolss.c 		NDR_PULL_ALLOC(ndr, r->out.count);
count            22704 librpc/gen_ndr/ndr_spoolss.c 		ZERO_STRUCTP(r->out.count);
count            22727 librpc/gen_ndr/ndr_spoolss.c 			NDR_PULL_ALLOC(ndr, r->out.count);
count            22730 librpc/gen_ndr/ndr_spoolss.c 		NDR_PULL_SET_MEM_CTX(ndr, r->out.count, LIBNDR_FLAG_REF_ALLOC);
count            22731 librpc/gen_ndr/ndr_spoolss.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.count));
count            22743 librpc/gen_ndr/ndr_spoolss.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->in.count));
count            22746 librpc/gen_ndr/ndr_spoolss.c 		for (cntr_info_0 = 0; cntr_info_0 < r->in.count; cntr_info_0++) {
count            22750 librpc/gen_ndr/ndr_spoolss.c 		for (cntr_info_0 = 0; cntr_info_0 < r->in.count; cntr_info_0++) {
count            22765 librpc/gen_ndr/ndr_spoolss.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->in.count));
count            22768 librpc/gen_ndr/ndr_spoolss.c 		NDR_PULL_ALLOC_N(ndr, r->out.info, r->in.count);
count            22771 librpc/gen_ndr/ndr_spoolss.c 		for (cntr_info_0 = 0; cntr_info_0 < r->in.count; cntr_info_0++) {
count            22775 librpc/gen_ndr/ndr_spoolss.c 		for (cntr_info_0 = 0; cntr_info_0 < r->in.count; cntr_info_0++) {
count            22811 librpc/gen_ndr/ndr_spoolss.c 		ndr_print_ptr(ndr, "count", r->out.count);
count            22813 librpc/gen_ndr/ndr_spoolss.c 		ndr_print_uint32(ndr, "count", *r->out.count);
count            22820 librpc/gen_ndr/ndr_spoolss.c 			ndr->print(ndr, "%s: ARRAY(%d)", "info", (int)*r->out.count);
count            22822 librpc/gen_ndr/ndr_spoolss.c 			for (cntr_info_2=0;cntr_info_2<*r->out.count;cntr_info_2++) {
count            22870 librpc/gen_ndr/ndr_spoolss.c 		if (r->out.count == NULL) {
count            22873 librpc/gen_ndr/ndr_spoolss.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.count));
count            22926 librpc/gen_ndr/ndr_spoolss.c 		NDR_PULL_ALLOC(ndr, r->out.count);
count            22927 librpc/gen_ndr/ndr_spoolss.c 		ZERO_STRUCTP(r->out.count);
count            22950 librpc/gen_ndr/ndr_spoolss.c 			NDR_PULL_ALLOC(ndr, r->out.count);
count            22953 librpc/gen_ndr/ndr_spoolss.c 		NDR_PULL_SET_MEM_CTX(ndr, r->out.count, LIBNDR_FLAG_REF_ALLOC);
count            22954 librpc/gen_ndr/ndr_spoolss.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.count));
count            22966 librpc/gen_ndr/ndr_spoolss.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->in.count));
count            22969 librpc/gen_ndr/ndr_spoolss.c 		for (cntr_info_0 = 0; cntr_info_0 < r->in.count; cntr_info_0++) {
count            22973 librpc/gen_ndr/ndr_spoolss.c 		for (cntr_info_0 = 0; cntr_info_0 < r->in.count; cntr_info_0++) {
count            22988 librpc/gen_ndr/ndr_spoolss.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->in.count));
count            22991 librpc/gen_ndr/ndr_spoolss.c 		NDR_PULL_ALLOC_N(ndr, r->out.info, r->in.count);
count            22994 librpc/gen_ndr/ndr_spoolss.c 		for (cntr_info_0 = 0; cntr_info_0 < r->in.count; cntr_info_0++) {
count            22998 librpc/gen_ndr/ndr_spoolss.c 		for (cntr_info_0 = 0; cntr_info_0 < r->in.count; cntr_info_0++) {
count            23036 librpc/gen_ndr/ndr_spoolss.c 		ndr_print_ptr(ndr, "count", r->out.count);
count            23038 librpc/gen_ndr/ndr_spoolss.c 		ndr_print_uint32(ndr, "count", *r->out.count);
count            23045 librpc/gen_ndr/ndr_spoolss.c 			ndr->print(ndr, "%s: ARRAY(%d)", "info", (int)*r->out.count);
count            23047 librpc/gen_ndr/ndr_spoolss.c 			for (cntr_info_2=0;cntr_info_2<*r->out.count;cntr_info_2++) {
count            23095 librpc/gen_ndr/ndr_spoolss.c 		if (r->out.count == NULL) {
count            23098 librpc/gen_ndr/ndr_spoolss.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.count));
count            23151 librpc/gen_ndr/ndr_spoolss.c 		NDR_PULL_ALLOC(ndr, r->out.count);
count            23152 librpc/gen_ndr/ndr_spoolss.c 		ZERO_STRUCTP(r->out.count);
count            23175 librpc/gen_ndr/ndr_spoolss.c 			NDR_PULL_ALLOC(ndr, r->out.count);
count            23178 librpc/gen_ndr/ndr_spoolss.c 		NDR_PULL_SET_MEM_CTX(ndr, r->out.count, LIBNDR_FLAG_REF_ALLOC);
count            23179 librpc/gen_ndr/ndr_spoolss.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.count));
count            23191 librpc/gen_ndr/ndr_spoolss.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->in.count));
count            23194 librpc/gen_ndr/ndr_spoolss.c 		for (cntr_info_0 = 0; cntr_info_0 < r->in.count; cntr_info_0++) {
count            23198 librpc/gen_ndr/ndr_spoolss.c 		for (cntr_info_0 = 0; cntr_info_0 < r->in.count; cntr_info_0++) {
count            23213 librpc/gen_ndr/ndr_spoolss.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->in.count));
count            23216 librpc/gen_ndr/ndr_spoolss.c 		NDR_PULL_ALLOC_N(ndr, r->out.info, r->in.count);
count            23219 librpc/gen_ndr/ndr_spoolss.c 		for (cntr_info_0 = 0; cntr_info_0 < r->in.count; cntr_info_0++) {
count            23223 librpc/gen_ndr/ndr_spoolss.c 		for (cntr_info_0 = 0; cntr_info_0 < r->in.count; cntr_info_0++) {
count            23261 librpc/gen_ndr/ndr_spoolss.c 		ndr_print_ptr(ndr, "count", r->out.count);
count            23263 librpc/gen_ndr/ndr_spoolss.c 		ndr_print_uint32(ndr, "count", *r->out.count);
count            23270 librpc/gen_ndr/ndr_spoolss.c 			ndr->print(ndr, "%s: ARRAY(%d)", "info", (int)*r->out.count);
count            23272 librpc/gen_ndr/ndr_spoolss.c 			for (cntr_info_2=0;cntr_info_2<*r->out.count;cntr_info_2++) {
count            23949 librpc/gen_ndr/ndr_spoolss.c 		if (r->out.count == NULL) {
count            23952 librpc/gen_ndr/ndr_spoolss.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.count));
count            24025 librpc/gen_ndr/ndr_spoolss.c 		NDR_PULL_ALLOC(ndr, r->out.count);
count            24026 librpc/gen_ndr/ndr_spoolss.c 		ZERO_STRUCTP(r->out.count);
count            24049 librpc/gen_ndr/ndr_spoolss.c 			NDR_PULL_ALLOC(ndr, r->out.count);
count            24052 librpc/gen_ndr/ndr_spoolss.c 		NDR_PULL_SET_MEM_CTX(ndr, r->out.count, LIBNDR_FLAG_REF_ALLOC);
count            24053 librpc/gen_ndr/ndr_spoolss.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.count));
count            24065 librpc/gen_ndr/ndr_spoolss.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->in.count));
count            24068 librpc/gen_ndr/ndr_spoolss.c 		for (cntr_info_0 = 0; cntr_info_0 < r->in.count; cntr_info_0++) {
count            24072 librpc/gen_ndr/ndr_spoolss.c 		for (cntr_info_0 = 0; cntr_info_0 < r->in.count; cntr_info_0++) {
count            24087 librpc/gen_ndr/ndr_spoolss.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->in.count));
count            24090 librpc/gen_ndr/ndr_spoolss.c 		NDR_PULL_ALLOC_N(ndr, r->out.info, r->in.count);
count            24093 librpc/gen_ndr/ndr_spoolss.c 		for (cntr_info_0 = 0; cntr_info_0 < r->in.count; cntr_info_0++) {
count            24097 librpc/gen_ndr/ndr_spoolss.c 		for (cntr_info_0 = 0; cntr_info_0 < r->in.count; cntr_info_0++) {
count            24141 librpc/gen_ndr/ndr_spoolss.c 		ndr_print_ptr(ndr, "count", r->out.count);
count            24143 librpc/gen_ndr/ndr_spoolss.c 		ndr_print_uint32(ndr, "count", *r->out.count);
count            24150 librpc/gen_ndr/ndr_spoolss.c 			ndr->print(ndr, "%s: ARRAY(%d)", "info", (int)*r->out.count);
count            24152 librpc/gen_ndr/ndr_spoolss.c 			for (cntr_info_2=0;cntr_info_2<*r->out.count;cntr_info_2++) {
count            26467 librpc/gen_ndr/ndr_spoolss.c 		if (r->out.count == NULL) {
count            26470 librpc/gen_ndr/ndr_spoolss.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.count));
count            26501 librpc/gen_ndr/ndr_spoolss.c 		NDR_PULL_ALLOC(ndr, r->out.count);
count            26502 librpc/gen_ndr/ndr_spoolss.c 		ZERO_STRUCTP(r->out.count);
count            26514 librpc/gen_ndr/ndr_spoolss.c 			NDR_PULL_ALLOC(ndr, r->out.count);
count            26517 librpc/gen_ndr/ndr_spoolss.c 		NDR_PULL_SET_MEM_CTX(ndr, r->out.count, LIBNDR_FLAG_REF_ALLOC);
count            26518 librpc/gen_ndr/ndr_spoolss.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.count));
count            26529 librpc/gen_ndr/ndr_spoolss.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->in.count));
count            26532 librpc/gen_ndr/ndr_spoolss.c 		for (cntr_info_0 = 0; cntr_info_0 < r->in.count; cntr_info_0++) {
count            26535 librpc/gen_ndr/ndr_spoolss.c 		for (cntr_info_0 = 0; cntr_info_0 < r->in.count; cntr_info_0++) {
count            26549 librpc/gen_ndr/ndr_spoolss.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->in.count));
count            26552 librpc/gen_ndr/ndr_spoolss.c 		NDR_PULL_ALLOC_N(ndr, r->out.info, r->in.count);
count            26555 librpc/gen_ndr/ndr_spoolss.c 		for (cntr_info_0 = 0; cntr_info_0 < r->in.count; cntr_info_0++) {
count            26558 librpc/gen_ndr/ndr_spoolss.c 		for (cntr_info_0 = 0; cntr_info_0 < r->in.count; cntr_info_0++) {
count            26588 librpc/gen_ndr/ndr_spoolss.c 		ndr_print_ptr(ndr, "count", r->out.count);
count            26590 librpc/gen_ndr/ndr_spoolss.c 		ndr_print_uint32(ndr, "count", *r->out.count);
count            26597 librpc/gen_ndr/ndr_spoolss.c 			ndr->print(ndr, "%s: ARRAY(%d)", "info", (int)*r->out.count);
count            26599 librpc/gen_ndr/ndr_spoolss.c 			for (cntr_info_2=0;cntr_info_2<*r->out.count;cntr_info_2++) {
count            28455 librpc/gen_ndr/ndr_spoolss.c 	.count	= 1,
count            28464 librpc/gen_ndr/ndr_spoolss.c 	.count	= 1,
count              73 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count              78 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count              79 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count              82 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count              98 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count             114 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count             117 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count             124 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->array, r->count));
count             135 librpc/gen_ndr/ndr_srvsvc.c 	ndr_print_uint32(ndr, "count", r->count);
count             139 librpc/gen_ndr/ndr_srvsvc.c 		ndr->print(ndr, "%s: ARRAY(%d)", "array", (int)r->count);
count             141 librpc/gen_ndr/ndr_srvsvc.c 		for (cntr_array_1=0;cntr_array_1<r->count;cntr_array_1++) {
count             258 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count             263 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count             264 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count             267 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count             283 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count             299 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count             302 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count             309 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->array, r->count));
count             320 librpc/gen_ndr/ndr_srvsvc.c 	ndr_print_uint32(ndr, "count", r->count);
count             324 librpc/gen_ndr/ndr_srvsvc.c 		ndr->print(ndr, "%s: ARRAY(%d)", "array", (int)r->count);
count             326 librpc/gen_ndr/ndr_srvsvc.c 		for (cntr_array_1=0;cntr_array_1<r->count;cntr_array_1++) {
count             718 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count             723 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count             724 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count             727 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count             743 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count             759 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count             762 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count             769 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->array, r->count));
count             780 librpc/gen_ndr/ndr_srvsvc.c 	ndr_print_uint32(ndr, "count", r->count);
count             784 librpc/gen_ndr/ndr_srvsvc.c 		ndr->print(ndr, "%s: ARRAY(%d)", "array", (int)r->count);
count             786 librpc/gen_ndr/ndr_srvsvc.c 		for (cntr_array_1=0;cntr_array_1<r->count;cntr_array_1++) {
count             906 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count             911 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count             912 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count             915 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count             931 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count             947 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count             950 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count             957 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->array, r->count));
count             968 librpc/gen_ndr/ndr_srvsvc.c 	ndr_print_uint32(ndr, "count", r->count);
count             972 librpc/gen_ndr/ndr_srvsvc.c 		ndr->print(ndr, "%s: ARRAY(%d)", "array", (int)r->count);
count             974 librpc/gen_ndr/ndr_srvsvc.c 		for (cntr_array_1=0;cntr_array_1<r->count;cntr_array_1++) {
count            1336 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            1341 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            1342 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            1358 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            1374 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            1381 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->array, r->count));
count            1392 librpc/gen_ndr/ndr_srvsvc.c 	ndr_print_uint32(ndr, "count", r->count);
count            1396 librpc/gen_ndr/ndr_srvsvc.c 		ndr->print(ndr, "%s: ARRAY(%d)", "array", (int)r->count);
count            1398 librpc/gen_ndr/ndr_srvsvc.c 		for (cntr_array_1=0;cntr_array_1<r->count;cntr_array_1++) {
count            1524 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            1529 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            1530 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            1533 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            1549 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            1565 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            1568 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            1575 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->array, r->count));
count            1586 librpc/gen_ndr/ndr_srvsvc.c 	ndr_print_uint32(ndr, "count", r->count);
count            1590 librpc/gen_ndr/ndr_srvsvc.c 		ndr->print(ndr, "%s: ARRAY(%d)", "array", (int)r->count);
count            1592 librpc/gen_ndr/ndr_srvsvc.c 		for (cntr_array_1=0;cntr_array_1<r->count;cntr_array_1++) {
count            1816 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            1821 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            1822 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            1838 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            1854 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            1861 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->array, r->count));
count            1872 librpc/gen_ndr/ndr_srvsvc.c 	ndr_print_uint32(ndr, "count", r->count);
count            1876 librpc/gen_ndr/ndr_srvsvc.c 		ndr->print(ndr, "%s: ARRAY(%d)", "array", (int)r->count);
count            1878 librpc/gen_ndr/ndr_srvsvc.c 		for (cntr_array_1=0;cntr_array_1<r->count;cntr_array_1++) {
count            1998 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            2003 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            2004 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            2007 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            2023 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            2039 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            2042 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            2049 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->array, r->count));
count            2060 librpc/gen_ndr/ndr_srvsvc.c 	ndr_print_uint32(ndr, "count", r->count);
count            2064 librpc/gen_ndr/ndr_srvsvc.c 		ndr->print(ndr, "%s: ARRAY(%d)", "array", (int)r->count);
count            2066 librpc/gen_ndr/ndr_srvsvc.c 		for (cntr_array_1=0;cntr_array_1<r->count;cntr_array_1++) {
count            2458 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            2463 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            2464 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            2467 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            2483 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            2499 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            2502 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            2509 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->array, r->count));
count            2520 librpc/gen_ndr/ndr_srvsvc.c 	ndr_print_uint32(ndr, "count", r->count);
count            2524 librpc/gen_ndr/ndr_srvsvc.c 		ndr->print(ndr, "%s: ARRAY(%d)", "array", (int)r->count);
count            2526 librpc/gen_ndr/ndr_srvsvc.c 		for (cntr_array_1=0;cntr_array_1<r->count;cntr_array_1++) {
count            2649 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            2654 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            2655 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            2658 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            2674 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            2690 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            2693 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            2700 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->array, r->count));
count            2711 librpc/gen_ndr/ndr_srvsvc.c 	ndr_print_uint32(ndr, "count", r->count);
count            2715 librpc/gen_ndr/ndr_srvsvc.c 		ndr->print(ndr, "%s: ARRAY(%d)", "array", (int)r->count);
count            2717 librpc/gen_ndr/ndr_srvsvc.c 		for (cntr_array_1=0;cntr_array_1<r->count;cntr_array_1++) {
count            2873 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            2878 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            2879 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            2882 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            2898 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            2914 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            2917 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            2924 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->array, r->count));
count            2935 librpc/gen_ndr/ndr_srvsvc.c 	ndr_print_uint32(ndr, "count", r->count);
count            2939 librpc/gen_ndr/ndr_srvsvc.c 		ndr->print(ndr, "%s: ARRAY(%d)", "array", (int)r->count);
count            2941 librpc/gen_ndr/ndr_srvsvc.c 		for (cntr_array_1=0;cntr_array_1<r->count;cntr_array_1++) {
count            3058 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            3063 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            3064 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            3067 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            3083 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            3099 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            3102 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            3109 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->array, r->count));
count            3120 librpc/gen_ndr/ndr_srvsvc.c 	ndr_print_uint32(ndr, "count", r->count);
count            3124 librpc/gen_ndr/ndr_srvsvc.c 		ndr->print(ndr, "%s: ARRAY(%d)", "array", (int)r->count);
count            3126 librpc/gen_ndr/ndr_srvsvc.c 		for (cntr_array_1=0;cntr_array_1<r->count;cntr_array_1++) {
count            3315 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            3320 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            3321 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            3324 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            3340 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            3356 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            3359 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            3366 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->array, r->count));
count            3377 librpc/gen_ndr/ndr_srvsvc.c 	ndr_print_uint32(ndr, "count", r->count);
count            3381 librpc/gen_ndr/ndr_srvsvc.c 		ndr->print(ndr, "%s: ARRAY(%d)", "array", (int)r->count);
count            3383 librpc/gen_ndr/ndr_srvsvc.c 		for (cntr_array_1=0;cntr_array_1<r->count;cntr_array_1++) {
count            3804 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            3809 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            3810 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            3813 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            3829 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            3845 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            3848 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            3855 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->array, r->count));
count            3866 librpc/gen_ndr/ndr_srvsvc.c 	ndr_print_uint32(ndr, "count", r->count);
count            3870 librpc/gen_ndr/ndr_srvsvc.c 		ndr->print(ndr, "%s: ARRAY(%d)", "array", (int)r->count);
count            3872 librpc/gen_ndr/ndr_srvsvc.c 		for (cntr_array_1=0;cntr_array_1<r->count;cntr_array_1++) {
count            3986 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            3991 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            3992 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            3995 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            4011 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            4027 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            4030 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            4037 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->array, r->count));
count            4048 librpc/gen_ndr/ndr_srvsvc.c 	ndr_print_uint32(ndr, "count", r->count);
count            4052 librpc/gen_ndr/ndr_srvsvc.c 		ndr->print(ndr, "%s: ARRAY(%d)", "array", (int)r->count);
count            4054 librpc/gen_ndr/ndr_srvsvc.c 		for (cntr_array_1=0;cntr_array_1<r->count;cntr_array_1++) {
count            4243 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            4248 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            4249 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            4252 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            4268 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            4284 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            4287 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            4294 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->array, r->count));
count            4305 librpc/gen_ndr/ndr_srvsvc.c 	ndr_print_uint32(ndr, "count", r->count);
count            4309 librpc/gen_ndr/ndr_srvsvc.c 		ndr->print(ndr, "%s: ARRAY(%d)", "array", (int)r->count);
count            4311 librpc/gen_ndr/ndr_srvsvc.c 		for (cntr_array_1=0;cntr_array_1<r->count;cntr_array_1++) {
count            4428 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            4433 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            4434 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            4437 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            4453 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            4469 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            4472 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            4479 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->array, r->count));
count            4490 librpc/gen_ndr/ndr_srvsvc.c 	ndr_print_uint32(ndr, "count", r->count);
count            4494 librpc/gen_ndr/ndr_srvsvc.c 		ndr->print(ndr, "%s: ARRAY(%d)", "array", (int)r->count);
count            4496 librpc/gen_ndr/ndr_srvsvc.c 		for (cntr_array_1=0;cntr_array_1<r->count;cntr_array_1++) {
count            4690 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            4695 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            4696 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            4699 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            4715 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            4731 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            4734 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            4741 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->array, r->count));
count            4752 librpc/gen_ndr/ndr_srvsvc.c 	ndr_print_uint32(ndr, "count", r->count);
count            4756 librpc/gen_ndr/ndr_srvsvc.c 		ndr->print(ndr, "%s: ARRAY(%d)", "array", (int)r->count);
count            4758 librpc/gen_ndr/ndr_srvsvc.c 		for (cntr_array_1=0;cntr_array_1<r->count;cntr_array_1++) {
count            4836 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            4841 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            4842 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            4845 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            4861 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            4877 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            4880 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            4887 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->array, r->count));
count            4898 librpc/gen_ndr/ndr_srvsvc.c 	ndr_print_uint32(ndr, "count", r->count);
count            4902 librpc/gen_ndr/ndr_srvsvc.c 		ndr->print(ndr, "%s: ARRAY(%d)", "array", (int)r->count);
count            4904 librpc/gen_ndr/ndr_srvsvc.c 		for (cntr_array_1=0;cntr_array_1<r->count;cntr_array_1++) {
count            4975 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            4980 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            4981 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            4997 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            5013 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            5020 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->array, r->count));
count            5031 librpc/gen_ndr/ndr_srvsvc.c 	ndr_print_uint32(ndr, "count", r->count);
count            5035 librpc/gen_ndr/ndr_srvsvc.c 		ndr->print(ndr, "%s: ARRAY(%d)", "array", (int)r->count);
count            5037 librpc/gen_ndr/ndr_srvsvc.c 		for (cntr_array_1=0;cntr_array_1<r->count;cntr_array_1++) {
count            5085 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            5090 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            5091 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            5107 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            5123 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            5130 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->array, r->count));
count            5141 librpc/gen_ndr/ndr_srvsvc.c 	ndr_print_uint32(ndr, "count", r->count);
count            5145 librpc/gen_ndr/ndr_srvsvc.c 		ndr->print(ndr, "%s: ARRAY(%d)", "array", (int)r->count);
count            5147 librpc/gen_ndr/ndr_srvsvc.c 		for (cntr_array_1=0;cntr_array_1<r->count;cntr_array_1++) {
count            5228 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            5233 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            5234 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            5237 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            5253 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            5269 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            5272 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            5279 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->array, r->count));
count            5290 librpc/gen_ndr/ndr_srvsvc.c 	ndr_print_uint32(ndr, "count", r->count);
count            5294 librpc/gen_ndr/ndr_srvsvc.c 		ndr->print(ndr, "%s: ARRAY(%d)", "array", (int)r->count);
count            5296 librpc/gen_ndr/ndr_srvsvc.c 		for (cntr_array_1=0;cntr_array_1<r->count;cntr_array_1++) {
count            5314 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            5319 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            5320 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            5323 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            5339 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            5355 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            5358 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            5365 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->array, r->count));
count            5376 librpc/gen_ndr/ndr_srvsvc.c 	ndr_print_uint32(ndr, "count", r->count);
count            5380 librpc/gen_ndr/ndr_srvsvc.c 		ndr->print(ndr, "%s: ARRAY(%d)", "array", (int)r->count);
count            5382 librpc/gen_ndr/ndr_srvsvc.c 		for (cntr_array_1=0;cntr_array_1<r->count;cntr_array_1++) {
count            11592 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            11597 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            11599 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            11600 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_disks_1 = 0; cntr_disks_1 < r->count; cntr_disks_1++) {
count            11616 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            11636 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_disks_1 = 0; cntr_disks_1 < r->count; cntr_disks_1++) {
count            11643 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->disks, r->count));
count            11646 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_check_array_length(ndr, (void*)&r->disks, r->count));
count            11657 librpc/gen_ndr/ndr_srvsvc.c 	ndr_print_uint32(ndr, "count", r->count);
count            11661 librpc/gen_ndr/ndr_srvsvc.c 		ndr->print(ndr, "%s: ARRAY(%d)", "disks", (int)r->count);
count            11663 librpc/gen_ndr/ndr_srvsvc.c 		for (cntr_disks_1=0;cntr_disks_1<r->count;cntr_disks_1++) {
count            11888 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            11893 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            11894 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            11897 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            11913 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            11929 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            11932 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            11939 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->array, r->count));
count            11950 librpc/gen_ndr/ndr_srvsvc.c 	ndr_print_uint32(ndr, "count", r->count);
count            11954 librpc/gen_ndr/ndr_srvsvc.c 		ndr->print(ndr, "%s: ARRAY(%d)", "array", (int)r->count);
count            11956 librpc/gen_ndr/ndr_srvsvc.c 		for (cntr_array_1=0;cntr_array_1<r->count;cntr_array_1++) {
count            12136 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            12141 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            12142 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            12145 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            12161 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            12177 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            12180 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            12187 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->array, r->count));
count            12198 librpc/gen_ndr/ndr_srvsvc.c 	ndr_print_uint32(ndr, "count", r->count);
count            12202 librpc/gen_ndr/ndr_srvsvc.c 		ndr->print(ndr, "%s: ARRAY(%d)", "array", (int)r->count);
count            12204 librpc/gen_ndr/ndr_srvsvc.c 		for (cntr_array_1=0;cntr_array_1<r->count;cntr_array_1++) {
count            12387 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            12392 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            12393 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            12396 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            12412 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            12428 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            12431 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            12438 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->array, r->count));
count            12449 librpc/gen_ndr/ndr_srvsvc.c 	ndr_print_uint32(ndr, "count", r->count);
count            12453 librpc/gen_ndr/ndr_srvsvc.c 		ndr->print(ndr, "%s: ARRAY(%d)", "array", (int)r->count);
count            12455 librpc/gen_ndr/ndr_srvsvc.c 		for (cntr_array_1=0;cntr_array_1<r->count;cntr_array_1++) {
count            12644 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            12649 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            12650 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            12653 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            12669 librpc/gen_ndr/ndr_srvsvc.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            12685 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            12688 librpc/gen_ndr/ndr_srvsvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            12695 librpc/gen_ndr/ndr_srvsvc.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->array, r->count));
count            12706 librpc/gen_ndr/ndr_srvsvc.c 	ndr_print_uint32(ndr, "count", r->count);
count            12710 librpc/gen_ndr/ndr_srvsvc.c 		ndr->print(ndr, "%s: ARRAY(%d)", "array", (int)r->count);
count            12712 librpc/gen_ndr/ndr_srvsvc.c 		for (cntr_array_1=0;cntr_array_1<r->count;cntr_array_1++) {
count            19661 librpc/gen_ndr/ndr_srvsvc.c 	.count	= 3,
count            19670 librpc/gen_ndr/ndr_srvsvc.c 	.count	= 1,
count            7178 librpc/gen_ndr/ndr_svcctl.c 	.count	= 2,
count            7187 librpc/gen_ndr/ndr_svcctl.c 	.count	= 1,
count            4540 librpc/gen_ndr/ndr_winreg.c 	.count	= 3,
count            4549 librpc/gen_ndr/ndr_winreg.c 	.count	= 1,
count            3840 librpc/gen_ndr/ndr_wkssvc.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            3845 librpc/gen_ndr/ndr_wkssvc.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            3846 librpc/gen_ndr/ndr_wkssvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            3849 librpc/gen_ndr/ndr_wkssvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            3865 librpc/gen_ndr/ndr_wkssvc.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            3881 librpc/gen_ndr/ndr_wkssvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            3884 librpc/gen_ndr/ndr_wkssvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            3891 librpc/gen_ndr/ndr_wkssvc.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->array, r->count));
count            3902 librpc/gen_ndr/ndr_wkssvc.c 	ndr_print_uint32(ndr, "count", r->count);
count            3906 librpc/gen_ndr/ndr_wkssvc.c 		ndr->print(ndr, "%s: ARRAY(%d)", "array", (int)r->count);
count            3908 librpc/gen_ndr/ndr_wkssvc.c 		for (cntr_array_1=0;cntr_array_1<r->count;cntr_array_1++) {
count            4797 librpc/gen_ndr/ndr_wkssvc.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            4802 librpc/gen_ndr/ndr_wkssvc.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            4803 librpc/gen_ndr/ndr_wkssvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            4806 librpc/gen_ndr/ndr_wkssvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            4822 librpc/gen_ndr/ndr_wkssvc.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            4838 librpc/gen_ndr/ndr_wkssvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            4841 librpc/gen_ndr/ndr_wkssvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            4848 librpc/gen_ndr/ndr_wkssvc.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->array, r->count));
count            4859 librpc/gen_ndr/ndr_wkssvc.c 	ndr_print_uint32(ndr, "count", r->count);
count            4863 librpc/gen_ndr/ndr_wkssvc.c 		ndr->print(ndr, "%s: ARRAY(%d)", "array", (int)r->count);
count            4865 librpc/gen_ndr/ndr_wkssvc.c 		for (cntr_array_1=0;cntr_array_1<r->count;cntr_array_1++) {
count            4883 librpc/gen_ndr/ndr_wkssvc.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            4888 librpc/gen_ndr/ndr_wkssvc.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            4889 librpc/gen_ndr/ndr_wkssvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            4892 librpc/gen_ndr/ndr_wkssvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            4908 librpc/gen_ndr/ndr_wkssvc.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            4924 librpc/gen_ndr/ndr_wkssvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            4927 librpc/gen_ndr/ndr_wkssvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            4934 librpc/gen_ndr/ndr_wkssvc.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->array, r->count));
count            4945 librpc/gen_ndr/ndr_wkssvc.c 	ndr_print_uint32(ndr, "count", r->count);
count            4949 librpc/gen_ndr/ndr_wkssvc.c 		ndr->print(ndr, "%s: ARRAY(%d)", "array", (int)r->count);
count            4951 librpc/gen_ndr/ndr_wkssvc.c 		for (cntr_array_1=0;cntr_array_1<r->count;cntr_array_1++) {
count            4969 librpc/gen_ndr/ndr_wkssvc.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            4974 librpc/gen_ndr/ndr_wkssvc.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            4975 librpc/gen_ndr/ndr_wkssvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            4978 librpc/gen_ndr/ndr_wkssvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            4994 librpc/gen_ndr/ndr_wkssvc.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            5010 librpc/gen_ndr/ndr_wkssvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            5013 librpc/gen_ndr/ndr_wkssvc.c 			for (cntr_array_1 = 0; cntr_array_1 < r->count; cntr_array_1++) {
count            5020 librpc/gen_ndr/ndr_wkssvc.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->array, r->count));
count            5031 librpc/gen_ndr/ndr_wkssvc.c 	ndr_print_uint32(ndr, "count", r->count);
count            5035 librpc/gen_ndr/ndr_wkssvc.c 		ndr->print(ndr, "%s: ARRAY(%d)", "array", (int)r->count);
count            5037 librpc/gen_ndr/ndr_wkssvc.c 		for (cntr_array_1=0;cntr_array_1<r->count;cntr_array_1++) {
count            5594 librpc/gen_ndr/ndr_wkssvc.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            5599 librpc/gen_ndr/ndr_wkssvc.c 			NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count            5600 librpc/gen_ndr/ndr_wkssvc.c 			for (cntr_computer_name_1 = 0; cntr_computer_name_1 < r->count; cntr_computer_name_1++) {
count            5603 librpc/gen_ndr/ndr_wkssvc.c 			for (cntr_computer_name_1 = 0; cntr_computer_name_1 < r->count; cntr_computer_name_1++) {
count            5619 librpc/gen_ndr/ndr_wkssvc.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count            5635 librpc/gen_ndr/ndr_wkssvc.c 			for (cntr_computer_name_1 = 0; cntr_computer_name_1 < r->count; cntr_computer_name_1++) {
count            5638 librpc/gen_ndr/ndr_wkssvc.c 			for (cntr_computer_name_1 = 0; cntr_computer_name_1 < r->count; cntr_computer_name_1++) {
count            5645 librpc/gen_ndr/ndr_wkssvc.c 			NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->computer_name, r->count));
count            5656 librpc/gen_ndr/ndr_wkssvc.c 	ndr_print_uint32(ndr, "count", r->count);
count            5660 librpc/gen_ndr/ndr_wkssvc.c 		ndr->print(ndr, "%s: ARRAY(%d)", "computer_name", (int)r->count);
count            5662 librpc/gen_ndr/ndr_wkssvc.c 		for (cntr_computer_name_1=0;cntr_computer_name_1<r->count;cntr_computer_name_1++) {
count            10654 librpc/gen_ndr/ndr_wkssvc.c 	.count	= 3,
count            10663 librpc/gen_ndr/ndr_wkssvc.c 	.count	= 1,
count             929 librpc/gen_ndr/netlogon.h 	uint32_t count;
count             976 librpc/gen_ndr/netlogon.h 	uint32_t count;
count             981 librpc/gen_ndr/netlogon.h 	uint32_t count;
count             992 librpc/gen_ndr/netlogon.h 	uint32_t count;
count            1166 librpc/gen_ndr/netlogon.h 		uint32_t count;
count            1546 librpc/gen_ndr/netlogon.h 		uint32_t count;/* [range(0,32000)] */
count            1601 librpc/gen_ndr/netlogon.h 		uint32_t count;/* [range(0,32000)] */
count             148 librpc/gen_ndr/samr.h 	uint32_t count;
count             276 librpc/gen_ndr/samr.h 	uint32_t count;/* [range(0,1024)] */
count             332 librpc/gen_ndr/samr.h 	uint32_t count;
count             621 librpc/gen_ndr/samr.h 	uint32_t count;
count             635 librpc/gen_ndr/samr.h 	uint32_t count;
count             648 librpc/gen_ndr/samr.h 	uint32_t count;
count             661 librpc/gen_ndr/samr.h 	uint32_t count;
count             671 librpc/gen_ndr/samr.h 	uint32_t count;
count            1442 librpc/gen_ndr/spoolss.h 	uint32_t count;
count            1452 librpc/gen_ndr/spoolss.h 	uint32_t count;
count            1499 librpc/gen_ndr/spoolss.h 	uint32_t count;
count            1646 librpc/gen_ndr/spoolss.h 		uint32_t *count;/* [ref] */
count            1656 librpc/gen_ndr/spoolss.h 		uint32_t count;
count            1676 librpc/gen_ndr/spoolss.h 		uint32_t *count;/* [ref] */
count            1747 librpc/gen_ndr/spoolss.h 		uint32_t *count;/* [ref] */
count            1757 librpc/gen_ndr/spoolss.h 		uint32_t count;
count            1778 librpc/gen_ndr/spoolss.h 		uint32_t *count;/* [ref] */
count            1865 librpc/gen_ndr/spoolss.h 		uint32_t *count;/* [ref] */
count            1875 librpc/gen_ndr/spoolss.h 		uint32_t count;
count            1895 librpc/gen_ndr/spoolss.h 		uint32_t *count;/* [ref] */
count            1971 librpc/gen_ndr/spoolss.h 		uint32_t *count;/* [ref] */
count            1981 librpc/gen_ndr/spoolss.h 		uint32_t count;
count            2001 librpc/gen_ndr/spoolss.h 		uint32_t *count;/* [ref] */
count            2333 librpc/gen_ndr/spoolss.h 		uint32_t *count;/* [ref] */
count            2343 librpc/gen_ndr/spoolss.h 		uint32_t count;
count            2362 librpc/gen_ndr/spoolss.h 		uint32_t *count;/* [ref] */
count            2382 librpc/gen_ndr/spoolss.h 		uint32_t *count;/* [ref] */
count            2392 librpc/gen_ndr/spoolss.h 		uint32_t count;
count            2411 librpc/gen_ndr/spoolss.h 		uint32_t *count;/* [ref] */
count            2431 librpc/gen_ndr/spoolss.h 		uint32_t *count;/* [ref] */
count            2441 librpc/gen_ndr/spoolss.h 		uint32_t count;
count            2460 librpc/gen_ndr/spoolss.h 		uint32_t *count;/* [ref] */
count            2599 librpc/gen_ndr/spoolss.h 		uint32_t *count;/* [ref] */
count            2609 librpc/gen_ndr/spoolss.h 		uint32_t count;
count            2629 librpc/gen_ndr/spoolss.h 		uint32_t *count;/* [ref] */
count            2989 librpc/gen_ndr/spoolss.h 		uint32_t *count;/* [ref] */
count            2998 librpc/gen_ndr/spoolss.h 		uint32_t count;
count            3016 librpc/gen_ndr/spoolss.h 		uint32_t *count;/* [ref] */
count            1132 librpc/gen_ndr/srv_lsa.c 	r->out.count = r->in.count;
count            1214 librpc/gen_ndr/srv_lsa.c 	r->out.count = r->in.count;
count            4448 librpc/gen_ndr/srv_lsa.c 	r->out.count = r->in.count;
count            4530 librpc/gen_ndr/srv_lsa.c 	r->out.count = r->in.count;
count            5276 librpc/gen_ndr/srv_lsa.c 	r->out.count = r->in.count;
count            5876 librpc/gen_ndr/srv_lsa.c 	r->out.count = r->in.count;
count            5958 librpc/gen_ndr/srv_lsa.c 	r->out.count = r->in.count;
count            6535 librpc/gen_ndr/srv_lsa.c 			r->out.count = r->in.count;
count            6549 librpc/gen_ndr/srv_lsa.c 			r->out.count = r->in.count;
count            6947 librpc/gen_ndr/srv_lsa.c 			r->out.count = r->in.count;
count            6961 librpc/gen_ndr/srv_lsa.c 			r->out.count = r->in.count;
count            7035 librpc/gen_ndr/srv_lsa.c 			r->out.count = r->in.count;
count            7097 librpc/gen_ndr/srv_lsa.c 			r->out.count = r->in.count;
count            7111 librpc/gen_ndr/srv_lsa.c 			r->out.count = r->in.count;
count              48 librpc/gen_ndr/srv_spoolss.c 	r->out.count = talloc_zero(r, uint32_t);
count              49 librpc/gen_ndr/srv_spoolss.c 	if (r->out.count == NULL) {
count             379 librpc/gen_ndr/srv_spoolss.c 	r->out.count = talloc_zero(r, uint32_t);
count             380 librpc/gen_ndr/srv_spoolss.c 	if (r->out.count == NULL) {
count             849 librpc/gen_ndr/srv_spoolss.c 	r->out.count = talloc_zero(r, uint32_t);
count             850 librpc/gen_ndr/srv_spoolss.c 	if (r->out.count == NULL) {
count            1246 librpc/gen_ndr/srv_spoolss.c 	r->out.count = talloc_zero(r, uint32_t);
count            1247 librpc/gen_ndr/srv_spoolss.c 	if (r->out.count == NULL) {
count            2734 librpc/gen_ndr/srv_spoolss.c 	r->out.count = talloc_zero(r, uint32_t);
count            2735 librpc/gen_ndr/srv_spoolss.c 	if (r->out.count == NULL) {
count            2826 librpc/gen_ndr/srv_spoolss.c 	r->out.count = talloc_zero(r, uint32_t);
count            2827 librpc/gen_ndr/srv_spoolss.c 	if (r->out.count == NULL) {
count            2918 librpc/gen_ndr/srv_spoolss.c 	r->out.count = talloc_zero(r, uint32_t);
count            2919 librpc/gen_ndr/srv_spoolss.c 	if (r->out.count == NULL) {
count            4032 librpc/gen_ndr/srv_spoolss.c 	r->out.count = talloc_zero(r, uint32_t);
count            4033 librpc/gen_ndr/srv_spoolss.c 	if (r->out.count == NULL) {
count            6207 librpc/gen_ndr/srv_spoolss.c 	r->out.count = talloc_zero(r, uint32_t);
count            6208 librpc/gen_ndr/srv_spoolss.c 	if (r->out.count == NULL) {
count            7574 librpc/gen_ndr/srv_spoolss.c 			r->out.count = talloc_zero(mem_ctx, uint32_t);
count            7575 librpc/gen_ndr/srv_spoolss.c 			if (r->out.count == NULL) {
count            7631 librpc/gen_ndr/srv_spoolss.c 			r->out.count = talloc_zero(mem_ctx, uint32_t);
count            7632 librpc/gen_ndr/srv_spoolss.c 			if (r->out.count == NULL) {
count            7694 librpc/gen_ndr/srv_spoolss.c 			r->out.count = talloc_zero(mem_ctx, uint32_t);
count            7695 librpc/gen_ndr/srv_spoolss.c 			if (r->out.count == NULL) {
count            7751 librpc/gen_ndr/srv_spoolss.c 			r->out.count = talloc_zero(mem_ctx, uint32_t);
count            7752 librpc/gen_ndr/srv_spoolss.c 			if (r->out.count == NULL) {
count            7951 librpc/gen_ndr/srv_spoolss.c 			r->out.count = talloc_zero(mem_ctx, uint32_t);
count            7952 librpc/gen_ndr/srv_spoolss.c 			if (r->out.count == NULL) {
count            7973 librpc/gen_ndr/srv_spoolss.c 			r->out.count = talloc_zero(mem_ctx, uint32_t);
count            7974 librpc/gen_ndr/srv_spoolss.c 			if (r->out.count == NULL) {
count            7995 librpc/gen_ndr/srv_spoolss.c 			r->out.count = talloc_zero(mem_ctx, uint32_t);
count            7996 librpc/gen_ndr/srv_spoolss.c 			if (r->out.count == NULL) {
count            8101 librpc/gen_ndr/srv_spoolss.c 			r->out.count = talloc_zero(mem_ctx, uint32_t);
count            8102 librpc/gen_ndr/srv_spoolss.c 			if (r->out.count == NULL) {
count            8380 librpc/gen_ndr/srv_spoolss.c 			r->out.count = talloc_zero(mem_ctx, uint32_t);
count            8381 librpc/gen_ndr/srv_spoolss.c 			if (r->out.count == NULL) {
count              21 librpc/gen_ndr/srvsvc.h 	uint32_t count;
count              33 librpc/gen_ndr/srvsvc.h 	uint32_t count;
count              57 librpc/gen_ndr/srvsvc.h 	uint32_t count;
count              70 librpc/gen_ndr/srvsvc.h 	uint32_t count;
count              94 librpc/gen_ndr/srvsvc.h 	uint32_t count;
count             109 librpc/gen_ndr/srvsvc.h 	uint32_t count;
count             128 librpc/gen_ndr/srvsvc.h 	uint32_t count;
count             141 librpc/gen_ndr/srvsvc.h 	uint32_t count;
count             165 librpc/gen_ndr/srvsvc.h 	uint32_t count;
count             179 librpc/gen_ndr/srvsvc.h 	uint32_t count;
count             194 librpc/gen_ndr/srvsvc.h 	uint32_t count;
count             206 librpc/gen_ndr/srvsvc.h 	uint32_t count;
count             222 librpc/gen_ndr/srvsvc.h 	uint32_t count;
count             277 librpc/gen_ndr/srvsvc.h 	uint32_t count;
count             288 librpc/gen_ndr/srvsvc.h 	uint32_t count;
count             304 librpc/gen_ndr/srvsvc.h 	uint32_t count;
count             316 librpc/gen_ndr/srvsvc.h 	uint32_t count;
count             333 librpc/gen_ndr/srvsvc.h 	uint32_t count;
count             342 librpc/gen_ndr/srvsvc.h 	uint32_t count;
count             355 librpc/gen_ndr/srvsvc.h 	uint32_t count;
count             364 librpc/gen_ndr/srvsvc.h 	uint32_t count;
count             374 librpc/gen_ndr/srvsvc.h 	uint32_t count;
count             379 librpc/gen_ndr/srvsvc.h 	uint32_t count;
count             931 librpc/gen_ndr/srvsvc.h 	uint32_t count;
count             964 librpc/gen_ndr/srvsvc.h 	uint32_t count;
count             978 librpc/gen_ndr/srvsvc.h 	uint32_t count;
count             993 librpc/gen_ndr/srvsvc.h 	uint32_t count;
count            1010 librpc/gen_ndr/srvsvc.h 	uint32_t count;
count             294 librpc/gen_ndr/wkssvc.h 	uint32_t count;
count             347 librpc/gen_ndr/wkssvc.h 	uint32_t count;
count             352 librpc/gen_ndr/wkssvc.h 	uint32_t count;
count             357 librpc/gen_ndr/wkssvc.h 	uint32_t count;
count             491 librpc/gen_ndr/wkssvc.h 	uint32_t count;
count             322 librpc/ndr/libndr.h 	uint32_t count;
count             499 librpc/ndr/libndr.h void ndr_print_array_uint8(struct ndr_print *ndr, const char *name, const uint8_t *data, uint32_t count);
count             509 librpc/ndr/libndr.h size_t ndr_size_string_array(const char **a, uint32_t count, int flags);
count             511 librpc/ndr/libndr.h enum ndr_err_code ndr_check_string_terminator(struct ndr_pull *ndr, uint32_t count, uint32_t element_size);
count             742 librpc/ndr/ndr_basic.c 			   const uint8_t *data, uint32_t count)
count             746 librpc/ndr/ndr_basic.c 	if (count <= 600 && (ndr->flags & LIBNDR_PRINT_ARRAY_HEX)) {
count             748 librpc/ndr/ndr_basic.c 		for (i=0;i<count;i++) {
count             756 librpc/ndr/ndr_basic.c 	ndr->print(ndr, "%s: ARRAY(%d)", name, count);
count             758 librpc/ndr/ndr_basic.c 	for (i=0;i<count;i++) {
count              28 librpc/ndr/ndr_drsblobs.c static enum ndr_err_code ndr_push_AuthenticationInformationArray_with_count(struct ndr_push *ndr, int ndr_flags, int count, 
count              34 librpc/ndr/ndr_drsblobs.c 		for (cntr_array_0 = 0; cntr_array_0 < count; cntr_array_0++) {
count              39 librpc/ndr/ndr_drsblobs.c 		for (cntr_array_0 = 0; cntr_array_0 < count; cntr_array_0++) {
count              47 librpc/ndr/ndr_drsblobs.c static enum ndr_err_code ndr_pull_AuthenticationInformationArray_with_count(struct ndr_pull *ndr, int ndr_flags, int count, struct AuthenticationInformationArray *r)
count              53 librpc/ndr/ndr_drsblobs.c 		NDR_PULL_ALLOC_N(ndr, r->array, count);
count              56 librpc/ndr/ndr_drsblobs.c 		for (cntr_array_0 = 0; cntr_array_0 < count; cntr_array_0++) {
count              62 librpc/ndr/ndr_drsblobs.c 		for (cntr_array_0 = 0; cntr_array_0 < count; cntr_array_0++) {
count              70 librpc/ndr/ndr_drsblobs.c _PUBLIC_ void ndr_print_AuthenticationInformationArray_with_count(struct ndr_print *ndr, const char *name, int count, const struct AuthenticationInformationArray *r)
count              77 librpc/ndr/ndr_drsblobs.c 	for (cntr_array_0=0;cntr_array_0<count;cntr_array_0++) {
count              93 librpc/ndr/ndr_drsblobs.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->count));
count             100 librpc/ndr/ndr_drsblobs.c 			NDR_CHECK(ndr_push_AuthenticationInformationArray_with_count(ndr, NDR_SCALARS|NDR_BUFFERS, r->count, r->current));
count             104 librpc/ndr/ndr_drsblobs.c 			NDR_CHECK(ndr_push_AuthenticationInformationArray_with_count(ndr, NDR_SCALARS|NDR_BUFFERS, r->count, r->previous));
count             118 librpc/ndr/ndr_drsblobs.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->count));
count             141 librpc/ndr/ndr_drsblobs.c 			NDR_CHECK(ndr_pull_AuthenticationInformationArray_with_count(ndr, NDR_SCALARS|NDR_BUFFERS, r->count, r->current));
count             151 librpc/ndr/ndr_drsblobs.c 			NDR_CHECK(ndr_pull_AuthenticationInformationArray_with_count(ndr, NDR_SCALARS|NDR_BUFFERS, r->count, r->previous));
count             163 librpc/ndr/ndr_drsblobs.c 	ndr_print_uint32(ndr, "count", r->count);
count             167 librpc/ndr/ndr_drsblobs.c 		ndr_print_AuthenticationInformationArray_with_count(ndr, "current", r->count, r->current);
count             173 librpc/ndr/ndr_drsblobs.c 		ndr_print_AuthenticationInformationArray_with_count(ndr, "previous", r->count, r->previous);
count              22 librpc/ndr/ndr_drsblobs.h _PUBLIC_ void ndr_print_AuthenticationInformationArray_with_count(struct ndr_print *ndr, const char *name, int count, const struct AuthenticationInformationArray *r);
count              54 librpc/ndr/ndr_spoolss_buf.c 	_r.out.count	= r->out.count;\
count              68 librpc/ndr/ndr_spoolss_buf.c 			__r.in.count	= *r->out.count;\
count             105 librpc/ndr/ndr_spoolss_buf.c 	r->out.count	= _r.out.count;\
count             124 librpc/ndr/ndr_spoolss_buf.c 	_r.out.count	= r->out.count;\
count             131 librpc/ndr/ndr_spoolss_buf.c 	r->out.count	= _r.out.count;\
count             147 librpc/ndr/ndr_spoolss_buf.c 			__r.in.count	= *r->out.count;\
count             184 librpc/ndr/ndr_spoolss_buf.c 	__r.in.count	= count;\
count             198 librpc/ndr/ndr_spoolss_buf.c 	__r.in.count	= count;\
count             233 librpc/ndr/ndr_spoolss_buf.c uint32_t ndr_size_spoolss_EnumPrinters_info(TALLOC_CTX *mem_ctx, struct smb_iconv_convenience *iconv_convenience, uint32_t level, uint32_t count, union spoolss_PrinterInfo *info)
count             269 librpc/ndr/ndr_spoolss_buf.c uint32_t ndr_size_spoolss_EnumJobs_info(TALLOC_CTX *mem_ctx, struct smb_iconv_convenience *iconv_convenience, uint32_t level, uint32_t count, union spoolss_JobInfo *info)
count             301 librpc/ndr/ndr_spoolss_buf.c uint32_t ndr_size_spoolss_EnumPrinterDrivers_info(TALLOC_CTX *mem_ctx, struct smb_iconv_convenience *iconv_convenience, uint32_t level, uint32_t count, union spoolss_DriverInfo *info)
count             329 librpc/ndr/ndr_spoolss_buf.c uint32_t ndr_size_spoolss_EnumForms_info(TALLOC_CTX *mem_ctx, struct smb_iconv_convenience *iconv_convenience, uint32_t level, uint32_t count, union spoolss_FormInfo *info)
count             357 librpc/ndr/ndr_spoolss_buf.c uint32_t ndr_size_spoolss_EnumPorts_info(TALLOC_CTX *mem_ctx, struct smb_iconv_convenience *iconv_convenience, uint32_t level, uint32_t count, union spoolss_PortInfo *info)
count             385 librpc/ndr/ndr_spoolss_buf.c uint32_t ndr_size_spoolss_EnumMonitors_info(TALLOC_CTX *mem_ctx, struct smb_iconv_convenience *iconv_convenience, uint32_t level, uint32_t count, union spoolss_MonitorInfo *info)
count             418 librpc/ndr/ndr_spoolss_buf.c 						   uint32_t level, uint32_t count, union spoolss_PrintProcessorInfo *info)
count             451 librpc/ndr/ndr_spoolss_buf.c 						      uint32_t level, uint32_t count, union spoolss_PrintProcDataTypesInfo *info)
count             474 librpc/ndr/ndr_spoolss_buf.c 		_r.out.count	= r->out.count;
count             483 librpc/ndr/ndr_spoolss_buf.c 			__r.in.count	= *r->out.count;
count             509 librpc/ndr/ndr_spoolss_buf.c 		r->out.count	= _r.out.count;
count             517 librpc/ndr/ndr_spoolss_buf.c 		_r.out.count	= r->out.count;
count             525 librpc/ndr/ndr_spoolss_buf.c 		r->out.count	= _r.out.count;
count             540 librpc/ndr/ndr_spoolss_buf.c 				__r.in.count	= *r->out.count;
count             551 librpc/ndr/ndr_spoolss_buf.c 						 uint32_t count, struct spoolss_PrinterEnumValues *info)
count              17 librpc/ndr/ndr_spoolss_buf.h uint32_t ndr_size_spoolss_EnumPrinters_info(TALLOC_CTX *mem_ctx, struct smb_iconv_convenience *iconv_convenience, uint32_t level, uint32_t count, union spoolss_PrinterInfo *info);
count              20 librpc/ndr/ndr_spoolss_buf.h uint32_t ndr_size_spoolss_EnumJobs_info(TALLOC_CTX *mem_ctx, struct smb_iconv_convenience *iconv_convenience, uint32_t level, uint32_t count, union spoolss_JobInfo *info);
count              23 librpc/ndr/ndr_spoolss_buf.h uint32_t ndr_size_spoolss_EnumPrinterDrivers_info(TALLOC_CTX *mem_ctx, struct smb_iconv_convenience *iconv_convenience, uint32_t level, uint32_t count, union spoolss_DriverInfo *info);
count              26 librpc/ndr/ndr_spoolss_buf.h uint32_t ndr_size_spoolss_EnumForms_info(TALLOC_CTX *mem_ctx, struct smb_iconv_convenience *iconv_convenience, uint32_t level, uint32_t count, union spoolss_FormInfo *info);
count              29 librpc/ndr/ndr_spoolss_buf.h uint32_t ndr_size_spoolss_EnumPorts_info(TALLOC_CTX *mem_ctx, struct smb_iconv_convenience *iconv_convenience, uint32_t level, uint32_t count, union spoolss_PortInfo *info);
count              32 librpc/ndr/ndr_spoolss_buf.h uint32_t ndr_size_spoolss_EnumMonitors_info(TALLOC_CTX *mem_ctx, struct smb_iconv_convenience *iconv_convenience, uint32_t level, uint32_t count, union spoolss_MonitorInfo *info);
count              36 librpc/ndr/ndr_spoolss_buf.h 						   uint32_t level, uint32_t count, union spoolss_PrintProcessorInfo *info);
count              40 librpc/ndr/ndr_spoolss_buf.h 						      uint32_t level, uint32_t count, union spoolss_PrintProcDataTypesInfo *info);
count              44 librpc/ndr/ndr_spoolss_buf.h 						 uint32_t count, struct spoolss_PrinterEnumValues *info);
count              25 librpc/ndr/ndr_svcctl.c _PUBLIC_ enum ndr_err_code ndr_push_ENUM_SERVICE_STATUSW_array(struct ndr_push *ndr, uint32_t count, struct ENUM_SERVICE_STATUSW *r)
count              29 librpc/ndr/ndr_svcctl.c 	for (cntr_array_1 = 0; cntr_array_1 < count; cntr_array_1++) {
count              32 librpc/ndr/ndr_svcctl.c 	for (cntr_array_1 = 0; cntr_array_1 < count; cntr_array_1++) {
count              40 librpc/ndr/ndr_svcctl.c _PUBLIC_ enum ndr_err_code ndr_pull_ENUM_SERVICE_STATUSW_array(struct ndr_pull *ndr, uint32_t count, struct ENUM_SERVICE_STATUSW *r)
count              44 librpc/ndr/ndr_svcctl.c 	for (cntr_array_1 = 0; cntr_array_1 < count; cntr_array_1++) {
count              47 librpc/ndr/ndr_svcctl.c 	for (cntr_array_1 = 0; cntr_array_1 < count; cntr_array_1++) {
count              22 librpc/ndr/ndr_svcctl.h _PUBLIC_ enum ndr_err_code ndr_push_ENUM_SERVICE_STATUSW_array(struct ndr_push *ndr, uint32_t count, struct ENUM_SERVICE_STATUSW *r);
count              23 librpc/ndr/ndr_svcctl.h _PUBLIC_ enum ndr_err_code ndr_pull_ENUM_SERVICE_STATUSW_array(struct ndr_pull *ndr, uint32_t count, struct ENUM_SERVICE_STATUSW *r);
count             391 nsswitch/libwbclient/wbc_util.c 	int count = 0;
count             421 nsswitch/libwbclient/wbc_util.c 	count = 0;
count             423 nsswitch/libwbclient/wbc_util.c 		count++;
count             430 nsswitch/libwbclient/wbc_util.c 	d_list = talloc_array(NULL, struct wbcDomainInfo, count);
count             440 nsswitch/libwbclient/wbc_util.c 	for (i=0; i<count && p; i++) {
count             366 nsswitch/wb_common.c int winbind_write_sock(void *buffer, int count, int recursing, int need_priv)
count             383 nsswitch/wb_common.c 	while(nwritten < count) {
count             407 nsswitch/wb_common.c 				       count - nwritten);
count             433 nsswitch/wb_common.c int winbind_read_sock(void *buffer, int count)
count             443 nsswitch/wb_common.c 	while(nread < count) {
count             477 nsswitch/wb_common.c 			      count - nread);
count             638 nsswitch/wb_common.c 	int count = 0;
count             640 nsswitch/wb_common.c 	while ((status == NSS_STATUS_UNAVAIL) && (count < 10)) {
count             645 nsswitch/wb_common.c 		count += 1;
count             656 nsswitch/wb_common.c 	int count = 0;
count             658 nsswitch/wb_common.c 	while ((status == NSS_STATUS_UNAVAIL) && (count < 10)) {
count             663 nsswitch/wb_common.c 		count += 1;
count              26 nsswitch/winbind_client.h int winbind_write_sock(void *buffer, int count, int recursing, int need_priv);
count              27 nsswitch/winbind_client.h int winbind_read_sock(void *buffer, int count);
count             181 nsswitch/winbind_krb5_locator.c 	int count = 3;
count             183 nsswitch/winbind_krb5_locator.c 	while (count) {
count             191 nsswitch/winbind_krb5_locator.c 			count--;
count             105 nsswitch/wins.c static struct in_addr *lookup_byname_backend(const char *name, int *count)
count             116 nsswitch/wins.c 	*count = 0;
count             119 nsswitch/wins.c 	if (NT_STATUS_IS_OK(resolve_wins(name,0x00,&address,count))) {
count             148 nsswitch/wins.c 		pss = name_query(fd,name,0x00,True,True,&ss,count, &flags, NULL);
count             164 nsswitch/wins.c static NODE_STATUS_STRUCT *lookup_byaddr_backend(char *addr, int *count)
count             183 nsswitch/wins.c 	status = node_status_query(fd, &nname, &ss, count, NULL);
count             205 nsswitch/wins.c 	int i, count, len, size;
count             233 nsswitch/wins.c 		if ( status = lookup_byaddr_backend(key, &count)) {
count             242 nsswitch/wins.c 		    for (i = 0; i < count; i++) {
count             261 nsswitch/wins.c 	    if (ip_list = lookup_byname_backend(key, &count)) {
count             262 nsswitch/wins.c 		for (i = count; i ; i--) {
count             333 nsswitch/wins.c 	int i, count;
count             346 nsswitch/wins.c 	ip_list = lookup_byname_backend(name, &count);
count             377 nsswitch/wins.c 		     &buffer, &buflen, (count + 1) * sizeof(char *))) == NULL) {
count             383 nsswitch/wins.c 	for (i = 0; i < count; i++) {
count             393 nsswitch/wins.c 	he->h_addr_list[count] = NULL;
count            3683 source3/client/client.c 	for (i=0; i < info_ctr.ctr.ctr1->count; i++) {
count            4103 source3/client/client.c 	int count, samelen;
count            4115 source3/client/client.c 	if ((info->count < MAX_COMPLETIONS - 1) &&
count            4120 source3/client/client.c 			info->matches[info->count] = SMB_STRDUP(f->name);
count            4142 source3/client/client.c 			info->matches[info->count] = SMB_STRDUP(tmp);
count            4145 source3/client/client.c 		if (info->matches[info->count] == NULL) {
count            4151 source3/client/client.c 		if (info->count == 1) {
count            4152 source3/client/client.c 			info->samelen = strlen(info->matches[info->count]);
count            4154 source3/client/client.c 			while (strncmp(info->matches[info->count],
count            4155 source3/client/client.c 						info->matches[info->count-1],
count            4160 source3/client/client.c 		info->count++;
count            4191 source3/client/client.c 	info.count = 1;
count            4235 source3/client/client.c 	if (info.count == 1) {
count            4245 source3/client/client.c 	if (info.count == 2) {
count            4252 source3/client/client.c 		info.count -= 1;
count            4263 source3/client/client.c 	info.matches[info.count] = NULL;
count            4267 source3/client/client.c 	for (i = 0; i < info.count; i++) {
count            4316 source3/client/client.c 		int i, len, samelen = 0, count=1;
count            4325 source3/client/client.c 		for (i=0;commands[i].fn && count < MAX_COMPLETIONS-1;i++) {
count            4327 source3/client/client.c 				matches[count] = SMB_STRDUP(commands[i].name);
count            4328 source3/client/client.c 				if (!matches[count])
count            4330 source3/client/client.c 				if (count == 1)
count            4331 source3/client/client.c 					samelen = strlen(matches[count]);
count            4333 source3/client/client.c 					while (strncmp(matches[count], matches[count-1], samelen) != 0)
count            4335 source3/client/client.c 				count++;
count            4339 source3/client/client.c 		switch (count) {
count            4353 source3/client/client.c 		matches[count] = NULL;
count            4357 source3/client/client.c 		for (i = 0; i < count; i++)
count             228 source3/groupdb/mapping_ldb.c 	if (ret != LDB_SUCCESS || res->count != 1) {
count             254 source3/groupdb/mapping_ldb.c 	if (ret != LDB_SUCCESS || res->count != 1) {
count             279 source3/groupdb/mapping_ldb.c 	if (ret != LDB_SUCCESS || res->count != 1) {
count             349 source3/groupdb/mapping_ldb.c 	for (i=0;i<res->count;i++) {
count             398 source3/groupdb/mapping_ldb.c 	for (i=0;i<res->count;i++) {
count             512 source3/groupdb/mapping_ldb.c 	if (ret == LDB_SUCCESS && res->count == 0) {
count            1040 source3/include/includes.h ssize_t readahead(int fd, off64_t offset, size_t count);
count             296 source3/include/libsmb_internal.h                   int count);
count             358 source3/include/libsmb_internal.h               size_t count);
count             364 source3/include/libsmb_internal.h                size_t count);
count             623 source3/include/libsmbclient.h smbc_setOptionBrowseMaxLmbCount(SMBCCTX *c, int count);
count             831 source3/include/libsmbclient.h                                 size_t count);
count             838 source3/include/libsmbclient.h                                  size_t count);
count             922 source3/include/libsmbclient.h                                 int count);
count            1470 source3/include/libsmbclient.h int smbc_getdents(unsigned int dh, struct smbc_dirent *dirp, int count);
count              90 source3/include/locking.h 	uint64_t count;
count             127 source3/include/ntdomain.h 	size_t count;			/* Current number of handles. */
count              94 source3/include/privileges.h 	uint32 count;
count             612 source3/include/proto.h NTSTATUS dup_luid_attr(TALLOC_CTX *mem_ctx, LUID_ATTR **new_la, LUID_ATTR *old_la, int count);
count             650 source3/include/proto.h 			size_t count);
count             654 source3/include/proto.h 			size_t count);
count             655 source3/include/proto.h ssize_t drain_socket(int sockfd, size_t count);
count             705 source3/include/proto.h ssize_t sys_sendfile(int tofd, int fromfd, const DATA_BLOB *header, SMB_OFF_T offset, size_t count);
count             816 source3/include/proto.h SMB_ACL_T sys_acl_init(int count);
count             907 source3/include/proto.h ssize_t sys_read(int fd, void *buf, size_t count);
count             908 source3/include/proto.h ssize_t sys_write(int fd, const void *buf, size_t count);
count             910 source3/include/proto.h ssize_t sys_pread(int fd, void *buf, size_t count, SMB_OFF_T off);
count             911 source3/include/proto.h ssize_t sys_pwrite(int fd, const void *buf, size_t count, SMB_OFF_T off);
count             914 source3/include/proto.h ssize_t sys_recv(int fd, void *buf, size_t count, int flags);
count            1131 source3/include/proto.h void *memalign_array(size_t el_size, size_t align, unsigned int count);
count            1153 source3/include/proto.h bool fcntl_lock(int fd, int op, SMB_OFF_T offset, SMB_OFF_T count, int type);
count            1166 source3/include/proto.h void *smb_xmalloc_array(size_t size, unsigned int count);
count            1215 source3/include/proto.h void *_talloc_array_zeronull(const void *ctx, size_t el_size, unsigned count, const char *name);
count            1216 source3/include/proto.h void *_talloc_zero_array_zeronull(const void *ctx, size_t el_size, unsigned count, const char *name);
count            1917 source3/include/proto.h 				     char ***OIDs_out, char ***names, size_t *count);
count            3004 source3/include/proto.h 			int *count,
count            3038 source3/include/proto.h 			int *count,
count            3043 source3/include/proto.h 			int *count);
count            3425 source3/include/proto.h 			uint64_t count,
count            3436 source3/include/proto.h 			uint64_t count,
count            3441 source3/include/proto.h 			uint64_t count,
count            4794 source3/include/proto.h bool add_a_form(nt_forms_struct **list, struct spoolss_AddFormInfo1 *form, int *count);
count            4795 source3/include/proto.h bool delete_a_form(nt_forms_struct **list, const char *del_name, int *count, WERROR *ret);
count            4796 source3/include/proto.h void update_a_form(nt_forms_struct **list, struct spoolss_AddFormInfo1 *form, int count);
count            5501 source3/include/proto.h 				uint32_t *count,
count            5509 source3/include/proto.h 					  uint32_t *count,
count            5517 source3/include/proto.h 						  uint32_t *count,
count            5524 source3/include/proto.h 				uint32_t *count,
count            5531 source3/include/proto.h 				   uint32_t *count,
count            5540 source3/include/proto.h 			       uint32_t *count,
count            5548 source3/include/proto.h 					 uint32_t *count,
count            5556 source3/include/proto.h 				   uint32_t *count,
count            5576 source3/include/proto.h 					uint32_t *count,
count            5721 source3/include/proto.h char *prs_alloc_mem_(prs_struct *ps, size_t size, unsigned int count);
count            5722 source3/include/proto.h char *prs_alloc_mem(prs_struct *ps, size_t size, unsigned int count);
count            6054 source3/include/proto.h WERROR enumports_hook(TALLOC_CTX *ctx, int *count, char ***lines );
count            6155 source3/include/proto.h 		uint64_t count,
count            6163 source3/include/proto.h 			uint64_t count,
count            6929 source3/include/proto.h 			int count,
count              52 source3/include/smb_acls.h 	int	count;
count             215 source3/include/smb_macros.h #define SMB_MALLOC_ARRAY(type,count) (type *)malloc_array(sizeof(type),(count))
count             216 source3/include/smb_macros.h #define SMB_MEMALIGN_ARRAY(type,align,count) (type *)memalign_array(sizeof(type),align,(count))
count             219 source3/include/smb_macros.h #define SMB_REALLOC_ARRAY(p,type,count) (type *)realloc_array((p),sizeof(type),(count),True) /* Always frees p on error or s == 0 */
count             220 source3/include/smb_macros.h #define SMB_REALLOC_ARRAY_KEEP_OLD_ON_ERROR(p,type,count) (type *)realloc_array((p),sizeof(type),(count),False) /* Never frees p on error or s == 0 */
count             221 source3/include/smb_macros.h #define SMB_CALLOC_ARRAY(type,count) (type *)calloc_array(sizeof(type),(count))
count             223 source3/include/smb_macros.h #define SMB_XMALLOC_ARRAY(type,count) (type *)smb_xmalloc_array(sizeof(type),(count))
count             234 source3/include/smb_macros.h #define TALLOC_ARRAY(ctx, type, count) (type *)_talloc_array_zeronull(ctx, sizeof(type), count, #type)
count             238 source3/include/smb_macros.h #define TALLOC_ZERO_ARRAY(ctx, type, count) (type *)_talloc_zero_array_zeronull(ctx, sizeof(type), count, #type)
count             246 source3/include/smb_macros.h #define TALLOC_ARRAY(ctx, type, count) (type *)_talloc_array(ctx, sizeof(type), count, #type)
count             250 source3/include/smb_macros.h #define TALLOC_ZERO_ARRAY(ctx, type, count) (type *)_talloc_zero_array(ctx, sizeof(type), count, #type)
count             256 source3/include/smb_macros.h #define TALLOC_REALLOC(ctx, ptr, count) _talloc_realloc(ctx, ptr, count, __location__)
count             257 source3/include/smb_macros.h #define TALLOC_REALLOC_ARRAY(ctx, ptr, type, count) (type *)_talloc_realloc_array(ctx, ptr, sizeof(type), count, #type)
count             271 source3/include/smb_macros.h #define PRS_ALLOC_MEM(ps, type, count) (type *)prs_alloc_mem_((ps),sizeof(type),(count))
count             309 source3/include/smb_macros.h #define PRS_ALLOC_MEM(ps, type, count) (type *)prs_alloc_mem((ps),sizeof(type),(count))
count              38 source3/include/smbprofile.h #define smbd_idle_count __profile_stats_value(PR_VALUE_SMBD_IDLE, count)
count              43 source3/include/smbprofile.h #define syscall_opendir_count __profile_stats_value(PR_VALUE_SYSCALL_OPENDIR, count)
count              47 source3/include/smbprofile.h #define syscall_readdir_count __profile_stats_value(PR_VALUE_SYSCALL_READDIR, count)
count              51 source3/include/smbprofile.h #define syscall_seekdir_count __profile_stats_value(PR_VALUE_SYSCALL_SEEKDIR, count)
count              55 source3/include/smbprofile.h #define syscall_telldir_count __profile_stats_value(PR_VALUE_SYSCALL_TELLDIR, count)
count              59 source3/include/smbprofile.h #define syscall_rewinddir_count __profile_stats_value(PR_VALUE_SYSCALL_REWINDDIR, count)
count              63 source3/include/smbprofile.h #define syscall_mkdir_count __profile_stats_value(PR_VALUE_SYSCALL_MKDIR, count)
count              67 source3/include/smbprofile.h #define syscall_rmdir_count __profile_stats_value(PR_VALUE_SYSCALL_RMDIR, count)
count              71 source3/include/smbprofile.h #define syscall_closedir_count __profile_stats_value(PR_VALUE_SYSCALL_CLOSEDIR, count)
count              75 source3/include/smbprofile.h #define syscall_open_count __profile_stats_value(PR_VALUE_SYSCALL_OPEN, count)
count              79 source3/include/smbprofile.h #define syscall_createfile_count __profile_stats_value(PR_VALUE_SYSCALL_CREATEFILE, count)
count              83 source3/include/smbprofile.h #define syscall_close_count __profile_stats_value(PR_VALUE_SYSCALL_CLOSE, count)
count              87 source3/include/smbprofile.h #define syscall_read_count __profile_stats_value(PR_VALUE_SYSCALL_READ, count)
count              91 source3/include/smbprofile.h #define syscall_pread_count __profile_stats_value(PR_VALUE_SYSCALL_PREAD, count)
count              95 source3/include/smbprofile.h #define syscall_write_count __profile_stats_value(PR_VALUE_SYSCALL_WRITE, count)
count              99 source3/include/smbprofile.h #define syscall_pwrite_count __profile_stats_value(PR_VALUE_SYSCALL_PWRITE, count)
count             103 source3/include/smbprofile.h #define syscall_lseek_count __profile_stats_value(PR_VALUE_SYSCALL_LSEEK, count)
count             107 source3/include/smbprofile.h #define syscall_sendfile_count __profile_stats_value(PR_VALUE_SYSCALL_SENDFILE, count)
count             111 source3/include/smbprofile.h #define syscall_recvfile_count __profile_stats_value(PR_VALUE_SYSCALL_RECVFILE, count)
count             115 source3/include/smbprofile.h #define syscall_rename_count __profile_stats_value(PR_VALUE_SYSCALL_RENAME, count)
count             119 source3/include/smbprofile.h #define syscall_rename_at_count __profile_stats_value(PR_VALUE_SYSCALL_RENAME_AT, count)
count             123 source3/include/smbprofile.h #define syscall_fsync_count __profile_stats_value(PR_VALUE_SYSCALL_FSYNC, count)
count             127 source3/include/smbprofile.h #define syscall_stat_count __profile_stats_value(PR_VALUE_SYSCALL_STAT, count)
count             131 source3/include/smbprofile.h #define syscall_fstat_count __profile_stats_value(PR_VALUE_SYSCALL_FSTAT, count)
count             135 source3/include/smbprofile.h #define syscall_lstat_count __profile_stats_value(PR_VALUE_SYSCALL_LSTAT, count)
count             139 source3/include/smbprofile.h #define syscall_get_alloc_size_count __profile_stats_value(PR_VALUE_SYSCALL_GET_ALLOC_SIZE, count)
count             143 source3/include/smbprofile.h #define syscall_unlink_count __profile_stats_value(PR_VALUE_SYSCALL_UNLINK, count)
count             147 source3/include/smbprofile.h #define syscall_chmod_count __profile_stats_value(PR_VALUE_SYSCALL_CHMOD, count)
count             151 source3/include/smbprofile.h #define syscall_fchmod_count __profile_stats_value(PR_VALUE_SYSCALL_FCHMOD, count)
count             155 source3/include/smbprofile.h #define syscall_chown_count __profile_stats_value(PR_VALUE_SYSCALL_CHOWN, count)
count             159 source3/include/smbprofile.h #define syscall_fchown_count __profile_stats_value(PR_VALUE_SYSCALL_FCHOWN, count)
count             163 source3/include/smbprofile.h #define syscall_lchown_count __profile_stats_value(PR_VALUE_SYSCALL_LCHOWN, count)
count             167 source3/include/smbprofile.h #define syscall_chdir_count __profile_stats_value(PR_VALUE_SYSCALL_CHDIR, count)
count             171 source3/include/smbprofile.h #define syscall_getwd_count __profile_stats_value(PR_VALUE_SYSCALL_GETWD, count)
count             175 source3/include/smbprofile.h #define syscall_ntimes_count __profile_stats_value(PR_VALUE_SYSCALL_NTIMES, count)
count             179 source3/include/smbprofile.h #define syscall_ftruncate_count __profile_stats_value(PR_VALUE_SYSCALL_FTRUNCATE, count)
count             183 source3/include/smbprofile.h #define syscall_fcntl_lock_count __profile_stats_value(PR_VALUE_SYSCALL_FCNTL_LOCK, count)
count             187 source3/include/smbprofile.h #define syscall_kernel_flock_count __profile_stats_value(PR_VALUE_SYSCALL_KERNEL_FLOCK, count)
count             191 source3/include/smbprofile.h #define syscall_linux_setlease_count __profile_stats_value(PR_VALUE_SYSCALL_LINUX_SETLEASE, count)
count             195 source3/include/smbprofile.h #define syscall_fcntl_getlock_count __profile_stats_value(PR_VALUE_SYSCALL_FCNTL_GETLOCK, count)
count             199 source3/include/smbprofile.h #define syscall_readlink_count __profile_stats_value(PR_VALUE_SYSCALL_READLINK, count)
count             203 source3/include/smbprofile.h #define syscall_symlink_count __profile_stats_value(PR_VALUE_SYSCALL_SYMLINK, count)
count             207 source3/include/smbprofile.h #define syscall_link_count __profile_stats_value(PR_VALUE_SYSCALL_LINK, count)
count             211 source3/include/smbprofile.h #define syscall_mknod_count __profile_stats_value(PR_VALUE_SYSCALL_MKNOD, count)
count             215 source3/include/smbprofile.h #define syscall_realpath_count __profile_stats_value(PR_VALUE_SYSCALL_REALPATH, count)
count             219 source3/include/smbprofile.h #define syscall_get_quota_count __profile_stats_value(PR_VALUE_SYSCALL_GET_QUOTA, count)
count             223 source3/include/smbprofile.h #define syscall_set_quota_count __profile_stats_value(PR_VALUE_SYSCALL_SET_QUOTA, count)
count             227 source3/include/smbprofile.h #define syscall_get_sd_count __profile_stats_value(PR_VALUE_SYSCALL_GET_SD, count)
count             231 source3/include/smbprofile.h #define syscall_set_sd_count __profile_stats_value(PR_VALUE_SYSCALL_SET_SD, count)
count             235 source3/include/smbprofile.h #define syscall_brl_lock_count __profile_stats_value(PR_VALUE_SYSCALL_BRL_LOCK, count)
count             239 source3/include/smbprofile.h #define syscall_brl_unlock_count __profile_stats_value(PR_VALUE_SYSCALL_BRL_UNLOCK, count)
count             243 source3/include/smbprofile.h #define syscall_brl_cancel_count __profile_stats_value(PR_VALUE_SYSCALL_BRL_CANCEL, count)
count             247 source3/include/smbprofile.h #define syscall_strict_lock_count __profile_stats_value(PR_VALUE_SYSCALL_STRICT_LOCK, count)
count             251 source3/include/smbprofile.h #define syscall_strict_unlock_count __profile_stats_value(PR_VALUE_SYSCALL_STRICT_UNLOCK, count)
count             256 source3/include/smbprofile.h #define SMBmkdir_count __profile_stats_value(PR_VALUE_SMBMKDIR, count)
count             260 source3/include/smbprofile.h #define SMBrmdir_count __profile_stats_value(PR_VALUE_SMBRMDIR, count)
count             264 source3/include/smbprofile.h #define SMBopen_count __profile_stats_value(PR_VALUE_SMBOPEN, count)
count             268 source3/include/smbprofile.h #define SMBcreate_count __profile_stats_value(PR_VALUE_SMBCREATE, count)
count             272 source3/include/smbprofile.h #define SMBclose_count __profile_stats_value(PR_VALUE_SMBCLOSE, count)
count             276 source3/include/smbprofile.h #define SMBflush_count __profile_stats_value(PR_VALUE_SMBFLUSH, count)
count             280 source3/include/smbprofile.h #define SMBunlink_count __profile_stats_value(PR_VALUE_SMBUNLINK, count)
count             284 source3/include/smbprofile.h #define SMBmv_count __profile_stats_value(PR_VALUE_SMBMV, count)
count             288 source3/include/smbprofile.h #define SMBgetatr_count __profile_stats_value(PR_VALUE_SMBGETATR, count)
count             292 source3/include/smbprofile.h #define SMBsetatr_count __profile_stats_value(PR_VALUE_SMBSETATR, count)
count             296 source3/include/smbprofile.h #define SMBread_count __profile_stats_value(PR_VALUE_SMBREAD, count)
count             300 source3/include/smbprofile.h #define SMBwrite_count __profile_stats_value(PR_VALUE_SMBWRITE, count)
count             304 source3/include/smbprofile.h #define SMBlock_count __profile_stats_value(PR_VALUE_SMBLOCK, count)
count             308 source3/include/smbprofile.h #define SMBunlock_count __profile_stats_value(PR_VALUE_SMBUNLOCK, count)
count             312 source3/include/smbprofile.h #define SMBctemp_count __profile_stats_value(PR_VALUE_SMBCTEMP, count)
count             317 source3/include/smbprofile.h #define SMBmknew_count __profile_stats_value(PR_VALUE_SMBMKNEW, count)
count             321 source3/include/smbprofile.h #define SMBcheckpath_count __profile_stats_value(PR_VALUE_SMBCHECKPATH, count)
count             325 source3/include/smbprofile.h #define SMBexit_count __profile_stats_value(PR_VALUE_SMBEXIT, count)
count             329 source3/include/smbprofile.h #define SMBlseek_count __profile_stats_value(PR_VALUE_SMBLSEEK, count)
count             333 source3/include/smbprofile.h #define SMBlockread_count __profile_stats_value(PR_VALUE_SMBLOCKREAD, count)
count             337 source3/include/smbprofile.h #define SMBwriteunlock_count __profile_stats_value(PR_VALUE_SMBWRITEUNLOCK, count)
count             341 source3/include/smbprofile.h #define SMBreadbraw_count __profile_stats_value(PR_VALUE_SMBREADBRAW, count)
count             345 source3/include/smbprofile.h #define SMBreadBmpx_count __profile_stats_value(PR_VALUE_SMBREADBMPX, count)
count             349 source3/include/smbprofile.h #define SMBreadBs_count __profile_stats_value(PR_VALUE_SMBREADBS, count)
count             353 source3/include/smbprofile.h #define SMBwritebraw_count __profile_stats_value(PR_VALUE_SMBWRITEBRAW, count)
count             357 source3/include/smbprofile.h #define SMBwriteBmpx_count __profile_stats_value(PR_VALUE_SMBWRITEBMPX, count)
count             361 source3/include/smbprofile.h #define SMBwriteBs_count __profile_stats_value(PR_VALUE_SMBWRITEBS, count)
count             365 source3/include/smbprofile.h #define SMBwritec_count __profile_stats_value(PR_VALUE_SMBWRITEC, count)
count             369 source3/include/smbprofile.h #define SMBsetattrE_count __profile_stats_value(PR_VALUE_SMBSETATTRE, count)
count             373 source3/include/smbprofile.h #define SMBgetattrE_count __profile_stats_value(PR_VALUE_SMBGETATTRE, count)
count             377 source3/include/smbprofile.h #define SMBlockingX_count __profile_stats_value(PR_VALUE_SMBLOCKINGX, count)
count             381 source3/include/smbprofile.h #define SMBtrans_count __profile_stats_value(PR_VALUE_SMBTRANS, count)
count             385 source3/include/smbprofile.h #define SMBtranss_count __profile_stats_value(PR_VALUE_SMBTRANSS, count)
count             389 source3/include/smbprofile.h #define SMBioctl_count __profile_stats_value(PR_VALUE_SMBIOCTL, count)
count             393 source3/include/smbprofile.h #define SMBioctls_count __profile_stats_value(PR_VALUE_SMBIOCTLS, count)
count             397 source3/include/smbprofile.h #define SMBcopy_count __profile_stats_value(PR_VALUE_SMBCOPY, count)
count             401 source3/include/smbprofile.h #define SMBmove_count __profile_stats_value(PR_VALUE_SMBMOVE, count)
count             405 source3/include/smbprofile.h #define SMBecho_count __profile_stats_value(PR_VALUE_SMBECHO, count)
count             409 source3/include/smbprofile.h #define SMBwriteclose_count __profile_stats_value(PR_VALUE_SMBWRITECLOSE, count)
count             413 source3/include/smbprofile.h #define SMBopenX_count __profile_stats_value(PR_VALUE_SMBOPENX, count)
count             417 source3/include/smbprofile.h #define SMBreadX_count __profile_stats_value(PR_VALUE_SMBREADX, count)
count             421 source3/include/smbprofile.h #define SMBwriteX_count __profile_stats_value(PR_VALUE_SMBWRITEX, count)
count             425 source3/include/smbprofile.h #define SMBtrans2_count __profile_stats_value(PR_VALUE_SMBTRANS2, count)
count             429 source3/include/smbprofile.h #define SMBtranss2_count __profile_stats_value(PR_VALUE_SMBTRANSS2, count)
count             433 source3/include/smbprofile.h #define SMBfindclose_count __profile_stats_value(PR_VALUE_SMBFINDCLOSE, count)
count             437 source3/include/smbprofile.h #define SMBfindnclose_count __profile_stats_value(PR_VALUE_SMBFINDNCLOSE, count)
count             441 source3/include/smbprofile.h #define SMBtcon_count __profile_stats_value(PR_VALUE_SMBTCON, count)
count             445 source3/include/smbprofile.h #define SMBtdis_count __profile_stats_value(PR_VALUE_SMBTDIS, count)
count             449 source3/include/smbprofile.h #define SMBnegprot_count __profile_stats_value(PR_VALUE_SMBNEGPROT, count)
count             453 source3/include/smbprofile.h #define SMBsesssetupX_count __profile_stats_value(PR_VALUE_SMBSESSSETUPX, count)
count             457 source3/include/smbprofile.h #define SMBulogoffX_count __profile_stats_value(PR_VALUE_SMBULOGOFFX, count)
count             461 source3/include/smbprofile.h #define SMBtconX_count __profile_stats_value(PR_VALUE_SMBTCONX, count)
count             465 source3/include/smbprofile.h #define SMBdskattr_count __profile_stats_value(PR_VALUE_SMBDSKATTR, count)
count             469 source3/include/smbprofile.h #define SMBsearch_count __profile_stats_value(PR_VALUE_SMBSEARCH, count)
count             474 source3/include/smbprofile.h #define SMBffirst_count __profile_stats_value(PR_VALUE_SMBFFIRST, count)
count             479 source3/include/smbprofile.h #define SMBfunique_count __profile_stats_value(PR_VALUE_SMBFUNIQUE, count)
count             483 source3/include/smbprofile.h #define SMBfclose_count __profile_stats_value(PR_VALUE_SMBFCLOSE, count)
count             487 source3/include/smbprofile.h #define SMBnttrans_count __profile_stats_value(PR_VALUE_SMBNTTRANS, count)
count             491 source3/include/smbprofile.h #define SMBnttranss_count __profile_stats_value(PR_VALUE_SMBNTTRANSS, count)
count             495 source3/include/smbprofile.h #define SMBntcreateX_count __profile_stats_value(PR_VALUE_SMBNTCREATEX, count)
count             499 source3/include/smbprofile.h #define SMBntcancel_count __profile_stats_value(PR_VALUE_SMBNTCANCEL, count)
count             503 source3/include/smbprofile.h #define SMBntrename_count __profile_stats_value(PR_VALUE_SMBNTRENAME, count)
count             507 source3/include/smbprofile.h #define SMBsplopen_count __profile_stats_value(PR_VALUE_SMBSPLOPEN, count)
count             511 source3/include/smbprofile.h #define SMBsplwr_count __profile_stats_value(PR_VALUE_SMBSPLWR, count)
count             515 source3/include/smbprofile.h #define SMBsplclose_count __profile_stats_value(PR_VALUE_SMBSPLCLOSE, count)
count             519 source3/include/smbprofile.h #define SMBsplretq_count __profile_stats_value(PR_VALUE_SMBSPLRETQ, count)
count             523 source3/include/smbprofile.h #define SMBsends_count __profile_stats_value(PR_VALUE_SMBSENDS, count)
count             527 source3/include/smbprofile.h #define SMBsendb_count __profile_stats_value(PR_VALUE_SMBSENDB, count)
count             531 source3/include/smbprofile.h #define SMBfwdname_count __profile_stats_value(PR_VALUE_SMBFWDNAME, count)
count             535 source3/include/smbprofile.h #define SMBcancelf_count __profile_stats_value(PR_VALUE_SMBCANCELF, count)
count             539 source3/include/smbprofile.h #define SMBgetmac_count __profile_stats_value(PR_VALUE_SMBGETMAC, count)
count             543 source3/include/smbprofile.h #define SMBsendstrt_count __profile_stats_value(PR_VALUE_SMBSENDSTRT, count)
count             547 source3/include/smbprofile.h #define SMBsendend_count __profile_stats_value(PR_VALUE_SMBSENDEND, count)
count             551 source3/include/smbprofile.h #define SMBsendtxt_count __profile_stats_value(PR_VALUE_SMBSENDTXT, count)
count             555 source3/include/smbprofile.h #define SMBinvalid_count __profile_stats_value(PR_VALUE_SMBINVALID, count)
count             560 source3/include/smbprofile.h #define pathworks_setdir_count __profile_stats_value(PR_VALUE_PATHWORKS_SETDIR, count)
count             565 source3/include/smbprofile.h #define Trans2_open_count __profile_stats_value(PR_VALUE_TRANS2_OPEN, count)
count             569 source3/include/smbprofile.h #define Trans2_findfirst_count __profile_stats_value(PR_VALUE_TRANS2_FINDFIRST, count)
count             573 source3/include/smbprofile.h #define Trans2_findnext_count __profile_stats_value(PR_VALUE_TRANS2_FINDNEXT, count)
count             577 source3/include/smbprofile.h #define Trans2_qfsinfo_count __profile_stats_value(PR_VALUE_TRANS2_QFSINFO, count)
count             581 source3/include/smbprofile.h #define Trans2_setfsinfo_count __profile_stats_value(PR_VALUE_TRANS2_SETFSINFO, count)
count             585 source3/include/smbprofile.h #define Trans2_qpathinfo_count __profile_stats_value(PR_VALUE_TRANS2_QPATHINFO, count)
count             589 source3/include/smbprofile.h #define Trans2_setpathinfo_count __profile_stats_value(PR_VALUE_TRANS2_SETPATHINFO, count)
count             593 source3/include/smbprofile.h #define Trans2_qfileinfo_count __profile_stats_value(PR_VALUE_TRANS2_QFILEINFO, count)
count             597 source3/include/smbprofile.h #define Trans2_setfileinfo_count __profile_stats_value(PR_VALUE_TRANS2_SETFILEINFO, count)
count             601 source3/include/smbprofile.h #define Trans2_fsctl_count __profile_stats_value(PR_VALUE_TRANS2_FSCTL, count)
count             605 source3/include/smbprofile.h #define Trans2_ioctl_count __profile_stats_value(PR_VALUE_TRANS2_IOCTL, count)
count             609 source3/include/smbprofile.h #define Trans2_findnotifyfirst_count __profile_stats_value(PR_VALUE_TRANS2_FINDNOTIFYFIRST, count)
count             613 source3/include/smbprofile.h #define Trans2_findnotifynext_count __profile_stats_value(PR_VALUE_TRANS2_FINDNOTIFYNEXT, count)
count             617 source3/include/smbprofile.h #define Trans2_mkdir_count __profile_stats_value(PR_VALUE_TRANS2_MKDIR, count)
count             621 source3/include/smbprofile.h #define Trans2_session_setup_count __profile_stats_value(PR_VALUE_TRANS2_SESSION_SETUP, count)
count             625 source3/include/smbprofile.h #define Trans2_get_dfs_referral_count __profile_stats_value(PR_VALUE_TRANS2_GET_DFS_REFERRAL, count)
count             629 source3/include/smbprofile.h #define Trans2_report_dfs_inconsistancy_count __profile_stats_value(PR_VALUE_TRANS2_REPORT_DFS_INCONSISTANCY, count)
count             634 source3/include/smbprofile.h #define NT_transact_create_count __profile_stats_value(PR_VALUE_NT_TRANSACT_CREATE, count)
count             638 source3/include/smbprofile.h #define NT_transact_ioctl_count __profile_stats_value(PR_VALUE_NT_TRANSACT_IOCTL, count)
count             642 source3/include/smbprofile.h #define NT_transact_set_security_desc_count __profile_stats_value(PR_VALUE_NT_TRANSACT_SET_SECURITY_DESC, count)
count             646 source3/include/smbprofile.h #define NT_transact_notify_change_count __profile_stats_value(PR_VALUE_NT_TRANSACT_NOTIFY_CHANGE, count)
count             650 source3/include/smbprofile.h #define NT_transact_rename_count __profile_stats_value(PR_VALUE_NT_TRANSACT_RENAME, count)
count             654 source3/include/smbprofile.h #define NT_transact_query_security_desc_count __profile_stats_value(PR_VALUE_NT_TRANSACT_QUERY_SECURITY_DESC, count)
count             658 source3/include/smbprofile.h #define NT_transact_get_user_quota_count __profile_stats_value(PR_VALUE_NT_TRANSACT_GET_USER_QUOTA, count)
count             662 source3/include/smbprofile.h #define NT_transact_set_user_quota_count __profile_stats_value(PR_VALUE_NT_TRANSACT_SET_USER_QUOTA, count)
count             667 source3/include/smbprofile.h #define get_nt_acl_count __profile_stats_value(PR_VALUE_GET_NT_ACL, count)
count             671 source3/include/smbprofile.h #define fget_nt_acl_count __profile_stats_value(PR_VALUE_FGET_NT_ACL, count)
count             675 source3/include/smbprofile.h #define fset_nt_acl_count __profile_stats_value(PR_VALUE_FSET_NT_ACL, count)
count             679 source3/include/smbprofile.h #define chmod_acl_count __profile_stats_value(PR_VALUE_CHMOD_ACL, count)
count             683 source3/include/smbprofile.h #define fchmod_acl_count __profile_stats_value(PR_VALUE_FCHMOD_ACL, count)
count             688 source3/include/smbprofile.h #define name_release_count __profile_stats_value(PR_VALUE_NAME_RELEASE, count)
count             692 source3/include/smbprofile.h #define name_refresh_count __profile_stats_value(PR_VALUE_NAME_REFRESH, count)
count             696 source3/include/smbprofile.h #define name_registration_count __profile_stats_value(PR_VALUE_NAME_REGISTRATION, count)
count             700 source3/include/smbprofile.h #define node_status_count __profile_stats_value(PR_VALUE_NODE_STATUS, count)
count             704 source3/include/smbprofile.h #define name_query_count __profile_stats_value(PR_VALUE_NAME_QUERY, count)
count             708 source3/include/smbprofile.h #define host_announce_count __profile_stats_value(PR_VALUE_HOST_ANNOUNCE, count)
count             712 source3/include/smbprofile.h #define workgroup_announce_count __profile_stats_value(PR_VALUE_WORKGROUP_ANNOUNCE, count)
count             716 source3/include/smbprofile.h #define local_master_announce_count __profile_stats_value(PR_VALUE_LOCAL_MASTER_ANNOUNCE, count)
count             720 source3/include/smbprofile.h #define master_browser_announce_count __profile_stats_value(PR_VALUE_MASTER_BROWSER_ANNOUNCE, count)
count             724 source3/include/smbprofile.h #define lm_host_announce_count __profile_stats_value(PR_VALUE_LM_HOST_ANNOUNCE, count)
count             728 source3/include/smbprofile.h #define get_backup_list_count __profile_stats_value(PR_VALUE_GET_BACKUP_LIST, count)
count             732 source3/include/smbprofile.h #define reset_browser_count __profile_stats_value(PR_VALUE_RESET_BROWSER, count)
count             736 source3/include/smbprofile.h #define announce_request_count __profile_stats_value(PR_VALUE_ANNOUNCE_REQUEST, count)
count             740 source3/include/smbprofile.h #define lm_announce_request_count __profile_stats_value(PR_VALUE_LM_ANNOUNCE_REQUEST, count)
count             744 source3/include/smbprofile.h #define domain_logon_count __profile_stats_value(PR_VALUE_DOMAIN_LOGON, count)
count             748 source3/include/smbprofile.h #define sync_browse_lists_count __profile_stats_value(PR_VALUE_SYNC_BROWSE_LISTS, count)
count             752 source3/include/smbprofile.h #define run_elections_count __profile_stats_value(PR_VALUE_RUN_ELECTIONS, count)
count             756 source3/include/smbprofile.h #define election_count __profile_stats_value(PR_VALUE_ELECTION, count)
count             771 source3/include/smbprofile.h 	unsigned count[PR_VALUE_MAX];
count             354 source3/include/vfs.h 		ssize_t (*sendfile)(struct vfs_handle_struct *handle, int tofd, files_struct *fromfsp, const DATA_BLOB *header, SMB_OFF_T offset, size_t count);
count             355 source3/include/vfs.h 		ssize_t (*recvfile)(struct vfs_handle_struct *handle, int fromfd, files_struct *tofsp, SMB_OFF_T offset, size_t count);
count             372 source3/include/vfs.h 		bool (*lock)(struct vfs_handle_struct *handle, struct files_struct *fsp, int op, SMB_OFF_T offset, SMB_OFF_T count, int type);
count             458 source3/include/vfs.h 		SMB_ACL_T (*sys_acl_init)(struct vfs_handle_struct *handle, int count);
count              59 source3/include/vfs_macros.h #define SMB_VFS_SENDFILE(tofd, fromfsp, header, offset, count) ((fromfsp)->conn->vfs.ops.sendfile((fromfsp)->conn->vfs.handles.sendfile, (tofd), (fromfsp), (header), (offset), (count)))
count              60 source3/include/vfs_macros.h #define SMB_VFS_RECVFILE(fromfd, tofsp, offset, count) ((tofsp)->conn->vfs.ops.recvfile((tofsp)->conn->vfs.handles.recvfile, (fromfd), (tofsp), (offset), (count)))
count              77 source3/include/vfs_macros.h #define SMB_VFS_LOCK(fsp, op, offset, count, type) ((fsp)->conn->vfs.ops.lock((fsp)->conn->vfs.handles.lock, (fsp), (op), (offset), (count), (type)))
count             115 source3/include/vfs_macros.h #define SMB_VFS_SYS_ACL_INIT(conn, count) ((conn)->vfs.ops.sys_acl_init((conn)->vfs.handles.sys_acl_init, (count)))
count             193 source3/include/vfs_macros.h #define SMB_VFS_OPAQUE_SENDFILE(tofd, fromfsp, header, offset, count) ((fromfsp)->conn->vfs_opaque.ops.sendfile((fromfsp)->conn->vfs_opaque.handles.sendfile, (tofd), (fromfsp), (header), (offset), (count)))
count             194 source3/include/vfs_macros.h #define SMB_VFS_OPAQUE_RECVFILE(fromfd, tofsp, offset, count) ((tofsp)->conn->vfs_opaque.ops.recvfile((tofsp)->conn->vfs_opaque.handles.recvfile, (fromfd), (tofsp), (offset), (count)))
count             211 source3/include/vfs_macros.h #define SMB_VFS_OPAQUE_LOCK(fsp, op, offset, count, type) ((fsp)->conn->vfs_opaque.ops.lock((fsp)->conn->vfs_opaque.handles.lock, (fsp), (op), (offset), (count), (type)))
count             249 source3/include/vfs_macros.h #define SMB_VFS_OPAQUE_SYS_ACL_INIT(conn, count) ((conn)->vfs_opaque.ops.sys_acl_init((conn)->vfs_opaque.handles.sys_acl_init, (count)))
count             328 source3/include/vfs_macros.h #define SMB_VFS_NEXT_SENDFILE(handle, tofd, fromfsp, header, offset, count) ((handle)->vfs_next.ops.sendfile((handle)->vfs_next.handles.sendfile, (tofd), (fromfsp), (header), (offset), (count)))
count             329 source3/include/vfs_macros.h #define SMB_VFS_NEXT_RECVFILE(handle, fromfd, tofsp, offset, count) ((handle)->vfs_next.ops.recvfile((handle)->vfs_next.handles.recvfile, (fromfd), (tofsp), (offset), (count)))
count             346 source3/include/vfs_macros.h #define SMB_VFS_NEXT_LOCK(handle, fsp, op, offset, count, type) ((handle)->vfs_next.ops.lock((handle)->vfs_next.handles.lock, (fsp), (op), (offset), (count), (type)))
count             384 source3/include/vfs_macros.h #define SMB_VFS_NEXT_SYS_ACL_INIT(handle, count) ((handle)->vfs_next.ops.sys_acl_init((handle)->vfs_next.handles.sys_acl_init, (count)))
count             187 source3/intl/lang_tdb.c 	int count;
count             196 source3/intl/lang_tdb.c 	count = 0;
count             200 source3/intl/lang_tdb.c 			count++;
count             203 source3/intl/lang_tdb.c 	if (!(msgid_quoted = (char *)SMB_MALLOC(strlen(msgid) + count + 1)))
count              88 source3/lib/account_pol.c 	int i, count;
count              90 source3/lib/account_pol.c 	for (count=0; account_policy_names[count].string; count++) {
count              92 source3/lib/account_pol.c 	nl = SMB_MALLOC_ARRAY(const char *, count);
count             100 source3/lib/account_pol.c 	*num_names = count;
count              91 source3/lib/bitmap.c         int count = MIN(dst->n, src->n);
count              94 source3/lib/bitmap.c 	memcpy(dst->b, src->b, sizeof(uint32)*((count+31)/32));
count              96 source3/lib/bitmap.c         return count;
count             153 source3/lib/dbwrap_ctdb.c 	m2->count++;
count             572 source3/lib/dbwrap_ctdb.c 	for (i=0;i<h->m_all->count;i++) {
count             258 source3/lib/dbwrap_file.c 	int count = 0;
count             305 source3/lib/dbwrap_file.c 				count += 1;
count             310 source3/lib/dbwrap_file.c 					return count;
count             325 source3/lib/dbwrap_file.c 			count += 1;
count             330 source3/lib/dbwrap_file.c 				return count;
count             339 source3/lib/dbwrap_file.c 	return count;
count             975 source3/lib/eventlog/eventlog.c 	uint32_t count = 1;
count             985 source3/lib/eventlog/eventlog.c 		r = evlog_pull_record_tdb(mem_ctx, etdb->tdb, count);
count             998 source3/lib/eventlog/eventlog.c 		count++;
count            1003 source3/lib/eventlog/eventlog.c 	evt.hdr.CurrentRecordNumber	= count;
count             131 source3/lib/interfaces.c 	int count;
count             139 source3/lib/interfaces.c 	count = 0;
count             147 source3/lib/interfaces.c 		count += 1;
count             150 source3/lib/interfaces.c 	ifaces = talloc_array(mem_ctx, struct iface_struct, count);
count             172 source3/lib/ldb/common/ldb.c 		if (res->count == 1) {
count             543 source3/lib/ldb/common/ldb.c 		res->msgs = talloc_realloc(res, res->msgs, struct ldb_message *, res->count + 2);
count             548 source3/lib/ldb/common/ldb.c 		res->msgs[res->count + 1] = NULL;
count             550 source3/lib/ldb/common/ldb.c 		res->msgs[res->count] = talloc_move(res->msgs, &ares->message);
count             551 source3/lib/ldb/common/ldb.c 		res->count++;
count              49 source3/lib/ldb/common/ldb_ldif.c 	int count, size, bytes;
count              81 source3/lib/ldb/common/ldb_ldif.c 	count = 0;
count              84 source3/lib/ldb/common/ldb_ldif.c 	while (count < statbuf.st_size) {
count              91 source3/lib/ldb/common/ldb_ldif.c 		count += bytes;
count             345 source3/lib/ldb/common/ldb_modules.c 		if (ret == LDB_SUCCESS && (res->count == 0 || res->msgs[0]->num_elements == 0)) {
count             353 source3/lib/ldb/common/ldb_modules.c 			if (res->count > 1) {
count             354 source3/lib/ldb/common/ldb_modules.c 				ldb_debug(ldb, LDB_DEBUG_FATAL, "Too many records found (%d), bailing out\n", res->count);
count             804 source3/lib/ldb/common/ldb_msg.c 	for (i = 0; i < result->count; i++) {
count              96 source3/lib/ldb/examples/ldbreader.c 	printf("%i records returned\n", resultMsg->count);
count             103 source3/lib/ldb/examples/ldbreader.c 	for (i = 0; i < resultMsg->count; ++i) {
count             677 source3/lib/ldb/include/ldb.h 	unsigned int count;
count             178 source3/lib/ldb/ldb_ldap/ldb_ldap.c 	int count, i;
count             181 source3/lib/ldb/ldb_ldap/ldb_ldap.c 	count = ldap_count_values_len(bval);
count             183 source3/lib/ldb/ldb_ldap/ldb_ldap.c 	if (count <= 0) {
count             206 source3/lib/ldb/ldb_ldap/ldb_ldap.c 	el->values = talloc_array(msg->elements, struct ldb_val, count);
count             212 source3/lib/ldb/ldb_ldap/ldb_ldap.c 	for (i=0;i<count;i++) {
count              97 source3/lib/ldb/ldb_tdb/ldb_index.c 	unsigned int count;
count             198 source3/lib/ldb/ldb_tdb/ldb_index.c 	list->count = 0;
count             239 source3/lib/ldb/ldb_tdb/ldb_index.c 			list->dn[list->count] = 
count             241 source3/lib/ldb/ldb_tdb/ldb_index.c 			if (!list->dn[list->count]) {
count             245 source3/lib/ldb/ldb_tdb/ldb_index.c 			list->count++;
count             251 source3/lib/ldb/ldb_tdb/ldb_index.c 	if (list->count > 1) {
count             252 source3/lib/ldb/ldb_tdb/ldb_index.c 		qsort(list->dn, list->count, sizeof(char *), (comparison_fn_t) list_cmp);
count             276 source3/lib/ldb/ldb_tdb/ldb_index.c 	list->count = 0;
count             308 source3/lib/ldb/ldb_tdb/ldb_index.c 			if (list->count == 0) {
count             344 source3/lib/ldb/ldb_tdb/ldb_index.c 		list->count = 1;
count             362 source3/lib/ldb/ldb_tdb/ldb_index.c 	if (list->count == 0 || list2->count == 0) {
count             372 source3/lib/ldb/ldb_tdb/ldb_index.c 	list3->dn = talloc_array(list3, char *, list->count);
count             377 source3/lib/ldb/ldb_tdb/ldb_index.c 	list3->count = 0;
count             379 source3/lib/ldb/ldb_tdb/ldb_index.c 	for (i=0;i<list->count;i++) {
count             380 source3/lib/ldb/ldb_tdb/ldb_index.c 		if (ldb_list_find(list->dn[i], list2->dn, list2->count, 
count             382 source3/lib/ldb/ldb_tdb/ldb_index.c 			list3->dn[list3->count] = talloc_move(list3->dn, &list->dn[i]);
count             383 source3/lib/ldb/ldb_tdb/ldb_index.c 			list3->count++;
count             391 source3/lib/ldb/ldb_tdb/ldb_index.c 	list->count = list3->count;
count             408 source3/lib/ldb/ldb_tdb/ldb_index.c 	unsigned int count = list->count;
count             410 source3/lib/ldb/ldb_tdb/ldb_index.c 	if (list->count == 0 && list2->count == 0) {
count             415 source3/lib/ldb/ldb_tdb/ldb_index.c 	d = talloc_realloc(list, list->dn, char *, list->count + list2->count);
count             421 source3/lib/ldb/ldb_tdb/ldb_index.c 	for (i=0;i<list2->count;i++) {
count             422 source3/lib/ldb/ldb_tdb/ldb_index.c 		if (ldb_list_find(list2->dn[i], list->dn, count, 
count             424 source3/lib/ldb/ldb_tdb/ldb_index.c 			list->dn[list->count] = talloc_strdup(list->dn, list2->dn[i]);
count             425 source3/lib/ldb/ldb_tdb/ldb_index.c 			if (!list->dn[list->count]) {
count             428 source3/lib/ldb/ldb_tdb/ldb_index.c 			list->count++;
count             432 source3/lib/ldb/ldb_tdb/ldb_index.c 	if (list->count != count) {
count             433 source3/lib/ldb/ldb_tdb/ldb_index.c 		qsort(list->dn, list->count, sizeof(char *), (comparison_fn_t)list_cmp);
count             459 source3/lib/ldb/ldb_tdb/ldb_index.c 	list->count = 0;
count             491 source3/lib/ldb/ldb_tdb/ldb_index.c 			list->count = list2->count;
count             502 source3/lib/ldb/ldb_tdb/ldb_index.c 	if (list->count == 0) {
count             543 source3/lib/ldb/ldb_tdb/ldb_index.c 	list->count = 0;
count             572 source3/lib/ldb/ldb_tdb/ldb_index.c 			list->count = list2->count;
count             582 source3/lib/ldb/ldb_tdb/ldb_index.c 		if (list->count == 0) {
count             648 source3/lib/ldb/ldb_tdb/ldb_index.c 	for (i = 0; i < dn_list->count; i++) {
count             758 source3/lib/ldb/ldb_tdb/ldb_index.c 		dn_list->count = 1;
count             279 source3/lib/ldb/ldb_tdb/ldb_search.c 			  unsigned int *count, 
count             292 source3/lib/ldb/ldb_tdb/ldb_search.c 	res2 = talloc_realloc(mem_ctx, *res, struct ldb_message *, (*count)+2);
count             300 source3/lib/ldb/ldb_tdb/ldb_search.c 	(*res)[*count] = talloc_move(*res, &msg2);
count             301 source3/lib/ldb/ldb_tdb/ldb_search.c 	(*res)[(*count)+1] = NULL;
count             302 source3/lib/ldb/ldb_tdb/ldb_search.c 	(*count)++;
count             109 source3/lib/ldb/ldb_tdb/ldb_tdb.h 			  unsigned int *count, 
count            1207 source3/lib/ldb/modules/ldb_map.c 	if (res->count == 0) {
count            1213 source3/lib/ldb/modules/ldb_map.c 	if (res->count > 1) {
count             105 source3/lib/ldb/nssldb/ldb-grp.c 	if (_ldb_nss_ctx->gr_cur >= _ldb_nss_ctx->gr_res->count) {
count             185 source3/lib/ldb/nssldb/ldb-grp.c 	if (gr_res->count == 0) {
count             191 source3/lib/ldb/nssldb/ldb-grp.c 	if (gr_res->count != 1) {
count             271 source3/lib/ldb/nssldb/ldb-grp.c 	if (gr_res->count == 0) {
count             277 source3/lib/ldb/nssldb/ldb-grp.c 	if (gr_res->count != 1) {
count             352 source3/lib/ldb/nssldb/ldb-grp.c 	if (uid_res->count == 0) {
count             358 source3/lib/ldb/nssldb/ldb-grp.c 	if (uid_res->count != 1) {
count             243 source3/lib/ldb/nssldb/ldb-nss.c 	lsize = (members->count + 1) * sizeof(char *);
count             256 source3/lib/ldb/nssldb/ldb-nss.c 	for (i = 0; i < members->count; i++) {
count             290 source3/lib/ldb/nssldb/ldb-nss.c 	for (i = 0; i < grlist->count; i++) {
count              94 source3/lib/ldb/nssldb/ldb-pwd.c 	if (_ldb_nss_ctx->pw_cur >= _ldb_nss_ctx->pw_res->count) {
count             142 source3/lib/ldb/nssldb/ldb-pwd.c 	if (res->count == 0) {
count             148 source3/lib/ldb/nssldb/ldb-pwd.c 	if (res->count != 1) {
count             191 source3/lib/ldb/nssldb/ldb-pwd.c 	if (res->count == 0) {
count             197 source3/lib/ldb/nssldb/ldb-pwd.c 	if (res->count != 1) {
count              41 source3/lib/ldb/tools/ad2oLschema.c 	int count;
count             117 source3/lib/ldb/tools/ad2oLschema.c 	for (i=0; i < search_from->count; i++) {
count             133 source3/lib/ldb/tools/ad2oLschema.c 						struct ldb_message *, res_list->count + 2);
count             137 source3/lib/ldb/tools/ad2oLschema.c 		res_list->msgs[res_list->count] = talloc_move(res_list, 
count             139 source3/lib/ldb/tools/ad2oLschema.c 		res_list->count++;
count             140 source3/lib/ldb/tools/ad2oLschema.c 		res_list->msgs[res_list->count] = NULL;
count             142 source3/lib/ldb/tools/ad2oLschema.c 		if (res->count > 0) {
count             173 source3/lib/ldb/tools/ad2oLschema.c 	if (top_res->count != 1) {
count             213 source3/lib/ldb/tools/ad2oLschema.c 	if (rootdse_res->count != 1) {
count             254 source3/lib/ldb/tools/ad2oLschema.c 	ret.count = 0;
count             314 source3/lib/ldb/tools/ad2oLschema.c 	for (i=0; i < attrs_res->count; i++) {
count             408 source3/lib/ldb/tools/ad2oLschema.c 		ret.count++;
count             418 source3/lib/ldb/tools/ad2oLschema.c 	for (i=0; i < objectclasses_res->count; i++) {
count             566 source3/lib/ldb/tools/ad2oLschema.c 		ret.count++;
count             621 source3/lib/ldb/tools/ad2oLschema.c 	printf("Converted %d records (skipped %d) with %d failures\n", ret.count, ret.skipped, ret.failures);
count              54 source3/lib/ldb/tools/ldbadd.c static int process_file(struct ldb_context *ldb, FILE *f, int *count,
count              75 source3/lib/ldb/tools/ldbadd.c 			(*count)++;
count              88 source3/lib/ldb/tools/ldbadd.c 	int i, ret=0, count=0, failures=0;
count              98 source3/lib/ldb/tools/ldbadd.c 		ret = process_file(ldb, stdin, &count, &failures);
count             108 source3/lib/ldb/tools/ldbadd.c 			ret = process_file(ldb, f, &count, &failures);
count             115 source3/lib/ldb/tools/ldbadd.c 	printf("Added %d records with %d failures\n", count, failures);
count              47 source3/lib/ldb/tools/ldbdel.c 	for (i = 0; i < res->count; i++) {
count              92 source3/lib/ldb/tools/ldbedit.c 				    int count,
count              96 source3/lib/ldb/tools/ldbedit.c 	for (i=0;i<count;i++) {
count             163 source3/lib/ldb/tools/ldbedit.c 		     FILE *f, struct ldb_message **msgs, int count)
count             167 source3/lib/ldb/tools/ldbedit.c 	fprintf(f, "# editing %d records\n", count);
count             169 source3/lib/ldb/tools/ldbedit.c 	for (i=0;i<count;i++) {
count             315 source3/lib/ldb/tools/ldbedit.c 	if (result->count == 0) {
count             320 source3/lib/ldb/tools/ldbedit.c 	do_edit(ldb, result->msgs, result->count, options->editor);
count              53 source3/lib/ldb/tools/ldbmodify.c static int process_file(struct ldb_context *ldb, FILE *f, int *count,
count              77 source3/lib/ldb/tools/ldbmodify.c 			(*count)++;
count              88 source3/lib/ldb/tools/ldbmodify.c 	int count=0;
count             100 source3/lib/ldb/tools/ldbmodify.c 		ret = process_file(ldb, stdin, &count, &failures);
count             110 source3/lib/ldb/tools/ldbmodify.c 			ret = process_file(ldb, f, &count, &failures);
count             116 source3/lib/ldb/tools/ldbmodify.c 	printf("Modified %d records with %d failures\n", count, failures);
count              55 source3/lib/ldb/tools/ldbtest.c 			int count)
count              66 source3/lib/ldb/tools/ldbtest.c 	for (i=0;i<count;i++) {
count             143 source3/lib/ldb/tools/ldbtest.c 			   int count)
count             148 source3/lib/ldb/tools/ldbtest.c 	for (i=0;i<count;i++) {
count             195 source3/lib/ldb/tools/ldbtest.c 			   int count)
count             199 source3/lib/ldb/tools/ldbtest.c 	for (i=0;i<count;i++) {
count             228 source3/lib/ldb/tools/ldbtest.c 		if (ret != LDB_SUCCESS || (uid < nrecords && res->count != 1)) {
count             233 source3/lib/ldb/tools/ldbtest.c 		if (uid >= nrecords && res->count > 0) {
count             238 source3/lib/ldb/tools/ldbtest.c 		printf("testing uid %d/%d - %d  \r", i, uid, res->count);
count             351 source3/lib/ldb/tools/ldbtest.c 	if(res->count != 1) {
count             352 source3/lib/ldb/tools/ldbtest.c 		printf("Should have found 1 record - found %d\n", res->count);
count              55 source3/lib/ldb/tools/oLschema2ldif.c 	int count;
count             475 source3/lib/ldb/tools/oLschema2ldif.c 	ret.count = 0;
count             500 source3/lib/ldb/tools/oLschema2ldif.c 					ret.count++;
count             524 source3/lib/ldb/tools/oLschema2ldif.c 				ret.count++;
count             604 source3/lib/ldb/tools/oLschema2ldif.c 	printf("Converted %d records with %d failures\n", ret.count, ret.failures);
count              64 source3/lib/messages_local.c 					 int signum, int count,
count              73 source3/lib/messages_local.c 		   signum, count, ctx->received_messages));
count             153 source3/lib/ms_fnmatch.c 	int ret, count, i;
count             202 source3/lib/ms_fnmatch.c 	for (count=i=0;p[i];i++) {
count             203 source3/lib/ms_fnmatch.c 		if (p[i] == UCS2_CHAR('*') || p[i] == UCS2_CHAR('<')) count++;
count             206 source3/lib/ms_fnmatch.c 	if (count != 0) {
count             207 source3/lib/ms_fnmatch.c 		if (count == 1) {
count             215 source3/lib/ms_fnmatch.c 			max_n = SMB_CALLOC_ARRAY(struct max_n, count);
count             231 source3/lib/netapi/file.c 	for (i=0; i < info_ctr.ctr.ctr2->count; i++) {
count             324 source3/lib/netapi/group.c 					rid_array->count,
count             334 source3/lib/netapi/group.c 	for (i=0; i < rid_array->count; i++) {
count             987 source3/lib/netapi/group.c 	g0 = TALLOC_ZERO_ARRAY(mem_ctx, struct GROUP_INFO_0, groups->count);
count             990 source3/lib/netapi/group.c 	for (i=0; i<groups->count; i++) {
count             997 source3/lib/netapi/group.c 					   sizeof(struct GROUP_INFO_0) * groups->count);
count            1013 source3/lib/netapi/group.c 	g1 = TALLOC_ZERO_ARRAY(mem_ctx, struct GROUP_INFO_1, groups->count);
count            1016 source3/lib/netapi/group.c 	for (i=0; i<groups->count; i++) {
count            1025 source3/lib/netapi/group.c 					   sizeof(struct GROUP_INFO_1) * groups->count);
count            1041 source3/lib/netapi/group.c 	g2 = TALLOC_ZERO_ARRAY(mem_ctx, struct GROUP_INFO_2, groups->count);
count            1044 source3/lib/netapi/group.c 	for (i=0; i<groups->count; i++) {
count            1055 source3/lib/netapi/group.c 					   sizeof(struct GROUP_INFO_2) * groups->count);
count            1072 source3/lib/netapi/group.c 	g3 = TALLOC_ZERO_ARRAY(mem_ctx, struct GROUP_INFO_3, groups->count);
count            1075 source3/lib/netapi/group.c 	for (i=0; i<groups->count; i++) {
count            1093 source3/lib/netapi/group.c 					   sizeof(struct GROUP_INFO_3) * groups->count);
count            1110 source3/lib/netapi/group.c 		*entries_read = groups->count;
count            1208 source3/lib/netapi/group.c 	if (r->out.resume_handle && info.info3.count > 0) {
count            1210 source3/lib/netapi/group.c 			info.info3.entries[info.info3.count-1].idx;
count            1341 source3/lib/netapi/group.c 					rid_array->count,
count            1350 source3/lib/netapi/group.c 	for (i=0; i < names.count; i++) {
count            1536 source3/lib/netapi/group.c 	num_member_rids = user_rids.count;
count            1550 source3/lib/netapi/group.c 		for (k=0; k < rid_array->count; k++) {
count            1568 source3/lib/netapi/group.c 	for (k=0; k < rid_array->count; k++) {
count             826 source3/lib/netapi/localgroup.c 	for (i=0; i<builtin_sam_array->count; i++) {
count             862 source3/lib/netapi/localgroup.c 	for (i=0; i<domain_sam_array->count; i++) {
count             919 source3/lib/netapi/localgroup.c 	uint32_t count = 0;
count             947 source3/lib/netapi/localgroup.c 					 &count,
count             951 source3/lib/netapi/localgroup.c 	if (count != 1 || sids.count != 1) {
count             351 source3/lib/netapi/share.c 	for (i=0; i < info_ctr.ctr.ctr1->count; i++) {
count             697 source3/lib/netapi/user.c 		sid_array.num_sids = rid_array->count + 1;
count             702 source3/lib/netapi/user.c 		for (i=0; i<rid_array->count; i++) {
count             720 source3/lib/netapi/user.c 		for (i=0; i<alias_rids.count; i++) {
count            1281 source3/lib/netapi/user.c 	for (i=0; i < sam->count; i++) {
count            1335 source3/lib/netapi/user.c 				 info->count);
count            1338 source3/lib/netapi/user.c 	for (i = 0; i < info->count; i++) {
count            1358 source3/lib/netapi/user.c 		sizeof(struct NET_DISPLAY_USER) * info->count);
count            1361 source3/lib/netapi/user.c 	*entries_read = info->count;
count            1379 source3/lib/netapi/user.c 				    info->count);
count            1382 source3/lib/netapi/user.c 	for (i = 0; i < info->count; i++) {
count            1400 source3/lib/netapi/user.c 		sizeof(struct NET_DISPLAY_MACHINE) * info->count);
count            1403 source3/lib/netapi/user.c 	*entries_read = info->count;
count            1421 source3/lib/netapi/user.c 				  info->count);
count            1424 source3/lib/netapi/user.c 	for (i = 0; i < info->count; i++) {
count            1442 source3/lib/netapi/user.c 		sizeof(struct NET_DISPLAY_GROUP) * info->count);
count            1445 source3/lib/netapi/user.c 	*entries_read = info->count;
count            2876 source3/lib/netapi/user.c 	rids = talloc_array(ctx, uint32_t, rid_array->count);
count            2882 source3/lib/netapi/user.c 	for (i=0; i < rid_array->count; i++) {
count            2888 source3/lib/netapi/user.c 					rid_array->count,
count            2898 source3/lib/netapi/user.c 	for (i=0; i < names.count; i++) {
count            3060 source3/lib/netapi/user.c 	num_member_rids = group_rids.count;
count            3074 source3/lib/netapi/user.c 		for (k=0; k < rid_array->count; k++) {
count            3092 source3/lib/netapi/user.c 	for (k=0; k < rid_array->count; k++) {
count            3326 source3/lib/netapi/user.c 	sid_array.num_sids = rid_array->count + 1;
count            3339 source3/lib/netapi/user.c 	for (i=0; i < rid_array->count; i++) {
count            3363 source3/lib/netapi/user.c 	for (i=0; i < domain_rids.count; i++) {
count            3380 source3/lib/netapi/user.c 	for (i=0; i < builtin_rids.count; i++) {
count            3399 source3/lib/netapi/user.c 	for (i=0; i < names.count; i++) {
count              29 source3/lib/privileges.c 	size_t count;
count             190 source3/lib/privileges.c 					      &priv->sids.count)))
count             220 source3/lib/privileges.c 	*num_sids  = priv.sids.count;
count             249 source3/lib/privileges.c 	*num_sids  = priv.sids.count;
count             444 source3/lib/privileges.c NTSTATUS dup_luid_attr(TALLOC_CTX *mem_ctx, LUID_ATTR **new_la, LUID_ATTR *old_la, int count)
count             451 source3/lib/privileges.c 	if (count) {
count             452 source3/lib/privileges.c 		*new_la = TALLOC_ARRAY(mem_ctx, LUID_ATTR, count);
count             454 source3/lib/privileges.c 			DEBUG(0,("dup_luid_attr: failed to alloc new LUID_ATTR array [%d]\n", count));
count             461 source3/lib/privileges.c 	for (i=0; i<count; i++) {
count             432 source3/lib/privileges_basic.c 	new_set = TALLOC_REALLOC_ARRAY(priv_set->mem_ctx, priv_set->set, LUID_ATTR, priv_set->count + 1);
count             438 source3/lib/privileges_basic.c 	new_set[priv_set->count].luid.high = set.luid.high;
count             439 source3/lib/privileges_basic.c 	new_set[priv_set->count].luid.low = set.luid.low;
count             440 source3/lib/privileges_basic.c 	new_set[priv_set->count].attr = set.attr;
count             442 source3/lib/privileges_basic.c 	priv_set->count++;
count             500 source3/lib/privileges_basic.c 	for ( i=0; i<privset->count; i++ ) {
count              53 source3/lib/recvfile.c 			size_t count)
count              57 source3/lib/recvfile.c 	size_t bufsize = MIN(TRANSFER_BUF_SIZE,count);
count              64 source3/lib/recvfile.c 		(unsigned long)count));
count              66 source3/lib/recvfile.c 	if (count == 0) {
count              83 source3/lib/recvfile.c 	while (total < count) {
count              86 source3/lib/recvfile.c 		size_t toread = MIN(bufsize,count - total);
count             146 source3/lib/recvfile.c 			size_t count)
count             156 source3/lib/recvfile.c 		(unsigned long)count));
count             158 source3/lib/recvfile.c 	if (count == 0) {
count             173 source3/lib/recvfile.c 				count);
count             178 source3/lib/recvfile.c 		return default_sys_recvfile(fromfd, tofd, offset, count);
count             181 source3/lib/recvfile.c 	while (count > 0) {
count             185 source3/lib/recvfile.c 			       MIN(count, 16384), SPLICE_F_MOVE);
count             194 source3/lib/recvfile.c 							    offset, count);
count             212 source3/lib/recvfile.c 		count -= nread;
count             216 source3/lib/recvfile.c 	if (total_written < count) {
count             218 source3/lib/recvfile.c 		if (drain_socket(fromfd, count-total_written) !=
count             219 source3/lib/recvfile.c 				count-total_written) {
count             237 source3/lib/recvfile.c 			size_t count)
count             239 source3/lib/recvfile.c 	return default_sys_recvfile(fromfd, tofd, offset, count);
count             247 source3/lib/recvfile.c ssize_t drain_socket(int sockfd, size_t count)
count             249 source3/lib/recvfile.c 	return default_sys_recvfile(sockfd, -1, (SMB_OFF_T)-1, count);
count              36 source3/lib/sendfile.c ssize_t sys_sendfile(int tofd, int fromfd, const DATA_BLOB *header, SMB_OFF_T offset, size_t count)
count              57 source3/lib/sendfile.c 	total = count;
count              85 source3/lib/sendfile.c 			return hdr_len + (count - total);
count              89 source3/lib/sendfile.c 	return count + hdr_len;
count              99 source3/lib/sendfile.c extern int32 sendfile (int out_fd, int in_fd, int32 *offset, uint32 count);
count             106 source3/lib/sendfile.c ssize_t sys_sendfile(int tofd, int fromfd, const DATA_BLOB *header, SMB_OFF_T offset, size_t count)
count             121 source3/lib/sendfile.c 	if ((sizeof(SMB_OFF_T) >= 8) && (offset + count > (SMB_OFF_T)0x7FFFFFFF)) {
count             141 source3/lib/sendfile.c 	small_total = (uint32)count;
count             167 source3/lib/sendfile.c 			return hdr_len + (((uint32)count) - small_total);
count             171 source3/lib/sendfile.c 	return count + hdr_len;
count             183 source3/lib/sendfile.c ssize_t sys_sendfile(int tofd, int fromfd, const DATA_BLOB *header, SMB_OFF_T offset, size_t count)
count             201 source3/lib/sendfile.c 		vec[1].sfv_len = count;
count             209 source3/lib/sendfile.c 		vec[0].sfv_len = count;
count             212 source3/lib/sendfile.c 	total = count + hdr_len;
count             261 source3/lib/sendfile.c 	return count + hdr_len;
count             269 source3/lib/sendfile.c ssize_t sys_sendfile(int tofd, int fromfd, const DATA_BLOB *header, SMB_OFF_T offset, size_t count)
count             286 source3/lib/sendfile.c 	total = count;
count             331 source3/lib/sendfile.c 	return count + hdr_len;
count             340 source3/lib/sendfile.c ssize_t sys_sendfile(int tofd, int fromfd, const DATA_BLOB *header, SMB_OFF_T offset, size_t count)
count             361 source3/lib/sendfile.c 	total = count;
count             403 source3/lib/sendfile.c 	return count + hdr_len;
count             413 source3/lib/sendfile.c ssize_t sys_sendfile(int tofd, int fromfd, const DATA_BLOB *header, SMB_OFF_T offset, size_t count)
count             430 source3/lib/sendfile.c 	hdtrl.file_bytes = count;
count             457 source3/lib/sendfile.c 	return count + header->length;
count             463 source3/lib/sendfile.c ssize_t sys_sendfile(int tofd, int fromfd, const DATA_BLOB *header, SMB_OFF_T offset, size_t count)
count             227 source3/lib/smbconf/smbconf_reg.c 	uint32_t count;
count             244 source3/lib/smbconf/smbconf_reg.c 	for (count = 0; count < num_strings; count++) {
count             245 source3/lib/smbconf/smbconf_reg.c 		value->v.multi_sz.strings[count] =
count             247 source3/lib/smbconf/smbconf_reg.c 				      strings[count]);
count             248 source3/lib/smbconf/smbconf_reg.c 		if (value->v.multi_sz.strings[count] == NULL) {
count             319 source3/lib/smbconf/smbconf_reg.c 	uint32_t count;
count             342 source3/lib/smbconf/smbconf_reg.c 	for (count = 0; count < value->v.multi_sz.num_strings; count++)
count             346 source3/lib/smbconf/smbconf_reg.c 					count,
count             347 source3/lib/smbconf/smbconf_reg.c 					value->v.multi_sz.strings[count]);
count             353 source3/lib/smbconf/smbconf_reg.c 	if (count > 0) {
count             359 source3/lib/smbconf/smbconf_reg.c 		*num_includes = count;
count             382 source3/lib/smbconf/smbconf_reg.c 	uint32_t count;
count             400 source3/lib/smbconf/smbconf_reg.c 	for (count = 0;
count             401 source3/lib/smbconf/smbconf_reg.c 	     werr = reg_enumvalue(tmp_ctx, key, count, &valname, &valvalue),
count             403 source3/lib/smbconf/smbconf_reg.c 	     count++)
count             436 source3/lib/smbconf/smbconf_reg.c 	for (count = 0; count < num_includes; count++) {
count             445 source3/lib/smbconf/smbconf_reg.c 						   includes[count]);
count             498 source3/lib/smbconf/smbconf_reg.c 	uint32_t count;
count             501 source3/lib/smbconf/smbconf_reg.c 	for (count = 0;
count             502 source3/lib/smbconf/smbconf_reg.c 	     werr = reg_enumvalue(mem_ctx, key, count, &valname, &valvalue),
count             504 source3/lib/smbconf/smbconf_reg.c 	     count++)
count             711 source3/lib/smbconf/smbconf_reg.c 	uint32_t count;
count             746 source3/lib/smbconf/smbconf_reg.c 	for (count = 0;
count             747 source3/lib/smbconf/smbconf_reg.c 	     werr = reg_enumkey(tmp_ctx, rpd(ctx)->base_key, count,
count             750 source3/lib/smbconf/smbconf_reg.c 	     count++)
count              25 source3/lib/smbconf/testsuite.c 	uint32_t count;
count              31 source3/lib/smbconf/testsuite.c 	for (count = 0; count < num_strings; count++) {
count              32 source3/lib/smbconf/testsuite.c 		printf("%s%s\n", prefix, strings[count]);
count              67 source3/lib/smbconf/testsuite.c 	uint32_t count;
count             101 source3/lib/smbconf/testsuite.c 	for (count = 0; count < get_num_includes; count++) {
count             102 source3/lib/smbconf/testsuite.c 		if (!strequal(set_includes[count], get_includes[count])) {
count             258 source3/lib/smbldap_util.c 	int count;
count             291 source3/lib/smbldap_util.c 	count = ldap_count_entries(ldap_state->ldap_struct, *result);
count             293 source3/lib/smbldap_util.c 	if (count == 1) {
count             300 source3/lib/smbldap_util.c 	if (count < 1) {
count             325 source3/lib/smbldap_util.c 	if (count > 1 ) {
count             328 source3/lib/smbldap_util.c 			  count, domain_name));
count              63 source3/lib/sysacls.c 	if (acl_d->next >= acl_d->count) {
count             142 source3/lib/sysacls.c 	maxlen	= 20 * acl_d->count;
count             148 source3/lib/sysacls.c 	for (i = 0; i < acl_d->count; i++) {
count             213 source3/lib/sysacls.c 			maxlen += nbytes + 20 * (acl_d->count - i);
count             230 source3/lib/sysacls.c SMB_ACL_T sys_acl_init(int count)
count             234 source3/lib/sysacls.c 	if (count < 0) {
count             247 source3/lib/sysacls.c 		     count * sizeof(struct smb_acl_entry))) == NULL) {
count             252 source3/lib/sysacls.c 	a->size = count + 1;
count             253 source3/lib/sysacls.c 	a->count = 0;
count             269 source3/lib/sysacls.c 	if (acl_d->count >= acl_d->size) {
count             274 source3/lib/sysacls.c 	entry_d		= &acl_d->acl[acl_d->count++];
count             120 source3/lib/system.c ssize_t sys_read(int fd, void *buf, size_t count)
count             125 source3/lib/system.c 		ret = read(fd, buf, count);
count             134 source3/lib/system.c ssize_t sys_write(int fd, const void *buf, size_t count)
count             139 source3/lib/system.c 		ret = write(fd, buf, count);
count             174 source3/lib/system.c ssize_t sys_pread(int fd, void *buf, size_t count, SMB_OFF_T off)
count             180 source3/lib/system.c 		ret = pread64(fd, buf, count, off);
count             182 source3/lib/system.c 		ret = pread(fd, buf, count, off);
count             194 source3/lib/system.c ssize_t sys_pwrite(int fd, const void *buf, size_t count, SMB_OFF_T off)
count             200 source3/lib/system.c 		ret = pwrite64(fd, buf, count, off);
count             202 source3/lib/system.c 		ret = pwrite(fd, buf, count, off);
count             241 source3/lib/system.c ssize_t sys_recv(int fd, void *buf, size_t count, int flags)
count             246 source3/lib/system.c 		ret = recv(fd, buf, count, flags);
count             224 source3/lib/tdb_validate.c 	int count;
count             229 source3/lib/tdb_validate.c 	count = tdb_traverse(src, traverse_copy_fn, (void *)(&data));
count             230 source3/lib/tdb_validate.c 	if ((count < 0) || (data.success == False)) {
count             233 source3/lib/tdb_validate.c 	return count;
count            1006 source3/lib/util.c static void *calloc_(size_t count, size_t size)
count            1008 source3/lib/util.c 	if (size == 0 || count == 0) {
count            1012 source3/lib/util.c 	return calloc(count, size);
count            1033 source3/lib/util.c void *memalign_array(size_t el_size, size_t align, unsigned int count)
count            1035 source3/lib/util.c 	if (count >= MAX_ALLOC_SIZE/el_size) {
count            1039 source3/lib/util.c 	return sys_memalign(align, el_size*count);
count            2138 source3/lib/util.c void *smb_xmalloc_array(size_t size, unsigned int count)
count            2144 source3/lib/util.c         if (count >= MAX_ALLOC_SIZE/size) {
count            2147 source3/lib/util.c 	if ((p = SMB_MALLOC(size*count)) == NULL) {
count            2149 source3/lib/util.c 			(unsigned long)size, (unsigned long)count));
count            3022 source3/lib/util.c void *_talloc_array_zeronull(const void *ctx, size_t el_size, unsigned count, const char *name)
count            3024 source3/lib/util.c 	if (count >= MAX_TALLOC_SIZE/el_size) {
count            3028 source3/lib/util.c 	if (el_size == 0 || count == 0) {
count            3032 source3/lib/util.c 	return talloc_named_const(ctx, el_size * count, name);
count            3040 source3/lib/util.c void *_talloc_zero_array_zeronull(const void *ctx, size_t el_size, unsigned count, const char *name)
count            3042 source3/lib/util.c 	if (count >= MAX_TALLOC_SIZE/el_size) {
count            3046 source3/lib/util.c 	if (el_size == 0 || count == 0) {
count            3050 source3/lib/util.c 	return _talloc_zero(ctx, el_size * count, name);
count             157 source3/lib/util_reg_api.c 		uint32_t count;
count             178 source3/lib/util_reg_api.c 		for (count = 0; count < value->v.multi_sz.num_strings; count++)
count             181 source3/lib/util_reg_api.c 				CH_UTF16LE, value->v.multi_sz.strings[count],
count             182 source3/lib/util_reg_api.c 				strlen(value->v.multi_sz.strings[count])+1,
count             183 source3/lib/util_reg_api.c 				(void *)&strings[count],
count             184 source3/lib/util_reg_api.c 				&string_lengths[count], false))
count             190 source3/lib/util_reg_api.c 			len += string_lengths[count];
count             199 source3/lib/util_reg_api.c 		for (count = 0, ofs = 0;
count             200 source3/lib/util_reg_api.c 		     count < value->v.multi_sz.num_strings;
count             201 source3/lib/util_reg_api.c 		     count++)
count             203 source3/lib/util_reg_api.c 			memcpy(presult->data + ofs, strings[count],
count             204 source3/lib/util_reg_api.c 			       string_lengths[count]);
count             205 source3/lib/util_reg_api.c 			ofs += string_lengths[count];
count             717 source3/lib/util_sid.c 	for (i = 0; i < info3->base.groups.count; i++) {
count            1464 source3/lib/util_str.c 	size_t count = 0;
count            1472 source3/lib/util_str.c 		count++;
count            1476 source3/lib/util_str.c 		return count;
count            1484 source3/lib/util_str.c 			count += 1;
count            1487 source3/lib/util_str.c 			count += 2;
count            1492 source3/lib/util_str.c 	return count;
count            1795 source3/lib/util_str.c 	size_t count;
count            1801 source3/lib/util_str.c 	count = count_chars(ipstr_list, IPSTR_LIST_CHAR) + 1;
count            1802 source3/lib/util_str.c 	if ( (*ip_list = SMB_MALLOC_ARRAY(struct ip_service, count)) == NULL ) {
count            1804 source3/lib/util_str.c 					(unsigned long)count));
count            1810 source3/lib/util_str.c 				IPSTR_LIST_SEP) && i<count; i++ ) {
count            1836 source3/lib/util_str.c 	return count;
count             194 source3/lib/wb_reqtrans.c 	int count = 1;
count             207 source3/lib/wb_reqtrans.c 		count = 2;
count             210 source3/lib/wb_reqtrans.c 	subreq = writev_send(state, ev, queue, fd, state->iov, count);
count             344 source3/lib/wb_reqtrans.c 	int count = 1;
count             358 source3/lib/wb_reqtrans.c 		count = 2;
count             361 source3/lib/wb_reqtrans.c 	subreq = writev_send(state, ev, queue, fd, state->iov, count);
count             154 source3/lib/wins_srv.c 	int count = 0;
count             162 source3/lib/wins_srv.c 	for (count=0; list && list[count]; count++)
count             165 source3/lib/wins_srv.c 	return count;
count             210 source3/lib/wins_srv.c 	int count=0, i, j;
count             234 source3/lib/wins_srv.c 		for (j=0;j<count;j++) {
count             240 source3/lib/wins_srv.c 		if (j != count) {
count             246 source3/lib/wins_srv.c 		ret = SMB_REALLOC_ARRAY(ret, char *, count+2);
count             250 source3/lib/wins_srv.c 		ret[count] = SMB_STRDUP(t_ip.tag);
count             251 source3/lib/wins_srv.c 		if (!ret[count]) break;
count             252 source3/lib/wins_srv.c 		count++;
count             255 source3/lib/wins_srv.c 	if (count) {
count             257 source3/lib/wins_srv.c 		ret[count] = NULL;
count             339 source3/lib/wins_srv.c 	int i, count=0;
count             356 source3/lib/wins_srv.c 			count++;
count             360 source3/lib/wins_srv.c 	return count;
count             105 source3/libaddns/dns.h void *_talloc_array_zeronull(const void *ctx, size_t el_size, unsigned count, const char *name);
count             106 source3/libaddns/dns.h void *_talloc_zero_array_zeronull(const void *ctx, size_t el_size, unsigned count, const char *name);
count             111 source3/libaddns/dns.h #define TALLOC_ARRAY(ctx, type, count) (type *)_talloc_array_zeronull(ctx, sizeof(type), count, #type)
count             115 source3/libaddns/dns.h #define TALLOC_ZERO_ARRAY(ctx, type, count) (type *)_talloc_zero_array_zeronull(ctx, sizeof(type), count, #type)
count             123 source3/libaddns/dns.h #define TALLOC_ARRAY(ctx, type, count) (type *)_talloc_array(ctx, sizeof(type), count, #type)
count             127 source3/libaddns/dns.h #define TALLOC_ZERO_ARRAY(ctx, type, count) (type *)_talloc_zero_array(ctx, sizeof(type), count, #type)
count             133 source3/libaddns/dns.h #define TALLOC_REALLOC(ctx, ptr, count) _talloc_realloc(ctx, ptr, count, __location__)
count             134 source3/libaddns/dns.h #define TALLOC_REALLOC_ARRAY(ctx, ptr, type, count) (type *)_talloc_realloc_array(ctx, ptr, sizeof(type), count, #type)
count             287 source3/libads/ldap.c 	int count, i=0;
count             368 source3/libads/ldap.c 	status = get_sorted_dc_list(realm, sitename, &ip_list, &count, got_realm);
count             381 source3/libads/ldap.c 	for ( i=0; i<count; i++ ) {
count             865 source3/libads/ldap.c 					   int *count, struct berval **cookie)
count            1009 source3/libads/ldap.c 			ber_scanf(cookie_be,"{iO}", (ber_int_t *) count,
count            1044 source3/libads/ldap.c 				      int *count, struct berval **cookie)
count            1046 source3/libads/ldap.c 	return ads_do_paged_search_args(ads, bind_path, scope, expr, attrs, NULL, res, count, cookie);
count            1067 source3/libads/ldap.c 	int count = 0;
count            1072 source3/libads/ldap.c 				     &count, &cookie);
count            1084 source3/libads/ldap.c 					      attrs, args, &res2, &count, &cookie);
count            1145 source3/libads/ldap.c 	int count = 0;
count            1150 source3/libads/ldap.c 				     &count, &cookie);
count            1159 source3/libads/ldap.c 					     &res, &count, &cookie);
count            2651 source3/libads/ldap.c 	int count, i;
count            2671 source3/libads/ldap.c 	count = 0;
count            2673 source3/libads/ldap.c 		ret = sid_parse(values[i]->bv_val, values[i]->bv_len, &(*sids)[count]);
count            2676 source3/libads/ldap.c 				   sid_string_dbg(&(*sids)[count])));
count            2677 source3/libads/ldap.c 			count++;
count            2682 source3/libads/ldap.c 	return count;
count            3122 source3/libads/ldap.c 	int count = 0;
count            3131 source3/libads/ldap.c 	count = ads_count_replies(ads, res);
count            3132 source3/libads/ldap.c 	if (count < 1) {
count            3314 source3/libads/ldap.c 	int count = 0;
count            3324 source3/libads/ldap.c 	if ( (count = ads_count_replies(ads, res)) != 1 ) {
count            3325 source3/libads/ldap.c 		DEBUG(1,("ads_get_dnshostname: %d entries returned!\n", count));
count            3346 source3/libads/ldap.c 	int count = 0;
count            3356 source3/libads/ldap.c 	if ( (count = ads_count_replies(ads, res)) != 1 ) {
count            3357 source3/libads/ldap.c 		DEBUG(1,("ads_get_upn: %d entries returned!\n", count));
count            3378 source3/libads/ldap.c 	int count = 0;
count            3388 source3/libads/ldap.c 	if ( (count = ads_count_replies(ads, res)) != 1 ) {
count            3389 source3/libads/ldap.c 		DEBUG(1,("ads_get_dnshostname: %d entries returned!\n", count));
count            3600 source3/libads/ldap.c 	int count = 0;
count            3618 source3/libads/ldap.c 	count = ads_count_replies(ads, res);
count            3619 source3/libads/ldap.c 	if (count != 1) {
count             315 source3/libads/ldap_printer.c 	uint32_t count;
count             338 source3/libads/ldap_printer.c 						  &count,
count             346 source3/libads/ldap_printer.c 		for (i=0; i < count; i++) {
count             367 source3/libads/ldap_printer.c 						  &count,
count             373 source3/libads/ldap_printer.c 		for (i=0; i < count; i++) {
count              28 source3/libads/ldap_schema.c 				     char ***OIDs_out, char ***names, size_t *count)
count              37 source3/libads/ldap_schema.c 	if (!ads || !mem_ctx || !names || !count || !OIDs || !OIDs_out) {
count              67 source3/libads/ldap_schema.c 	*count = ads_count_replies(ads, res);
count              68 source3/libads/ldap_schema.c 	if (*count == 0 || !res) {
count              73 source3/libads/ldap_schema.c 	if (((*names) = TALLOC_ARRAY(mem_ctx, char *, *count)) == NULL) {
count              77 source3/libads/ldap_schema.c 	if (((*OIDs_out) = TALLOC_ARRAY(mem_ctx, char *, *count)) == NULL) {
count              97 source3/libads/ldap_schema.c 	if (*count < num_OIDs) {
count             157 source3/libads/ldap_schema.c 	int count = 0;
count             178 source3/libads/ldap_schema.c 	count = ads_count_replies(ads, res);
count             179 source3/libads/ldap_schema.c 	if (count == 0 || !res) {
count              36 source3/libads/ldap_utils.c 	int count = 3;
count              69 source3/libads/ldap_utils.c 	while (--count) {
count             296 source3/libads/ldap_utils.c 	int count;
count             315 source3/libads/ldap_utils.c 	count = ads_count_replies(ads, res);
count             316 source3/libads/ldap_utils.c 	if (count == 0) {
count             133 source3/libgpo/gpext/scripts.c 		const char *count = NULL;
count             136 source3/libgpo/gpext/scripts.c 		count = talloc_asprintf(ini_ctx->mem_ctx, "%d", i);
count             137 source3/libgpo/gpext/scripts.c 		NT_STATUS_HAVE_NO_MEMORY(count);
count             140 source3/libgpo/gpext/scripts.c 				      section, count,
count             150 source3/libgpo/gpext/scripts.c 				      section, count,
count             159 source3/libgpo/gpext/scripts.c 							    count,
count             176 source3/libgpo/gpext/scripts.c 							    count,
count             193 source3/libgpo/gpext/scripts.c 							    count,
count             266 source3/libgpo/gpext/scripts.c 	int count = 0;
count             291 source3/libgpo/gpext/scripts.c 				 section, count++);
count             340 source3/libgpo/gpo_reg.c 	int count = 0;
count             354 source3/libgpo/gpo_reg.c 		valname = talloc_asprintf(mem_ctx, "Group%d", count++);
count             363 source3/libgpo/gpo_reg.c 	werr = gp_store_reg_val_dword(mem_ctx, key, "Count", count);
count             385 source3/libgpo/gpo_reg.c 	uint32_t count = 0;
count             398 source3/libgpo/gpo_reg.c 	werr = gp_read_reg_val_dword(mem_ctx, key, "Count", &count);
count             401 source3/libgpo/gpo_reg.c 	for (i=0; i<count; i++) {
count             459 source3/libgpo/gpo_reg.c 	int count = 0;
count             521 source3/libgpo/gpo_reg.c 		subkeyname = talloc_asprintf(mem_ctx, "%d", count++);
count             619 source3/libgpo/gpo_reg.c 	int count = 0;
count             652 source3/libgpo/gpo_reg.c 		subkeyname = talloc_asprintf(mem_ctx, "%d", count++);
count             297 source3/libnet/libnet_dssync.c 	req.req1.count		= 1;
count             321 source3/libnet/libnet_dssync.c 	if (ctr.ctr1->count != 1) {
count             372 source3/libnet/libnet_dssync.c 	uint32_t count;
count             418 source3/libnet/libnet_dssync.c 			cursors->count = utdv->ctr.ctr1.count;
count             422 source3/libnet/libnet_dssync.c 			cursors->count = utdv->ctr.ctr2.count;
count             425 source3/libnet/libnet_dssync.c 						cursors->count);
count             430 source3/libnet/libnet_dssync.c 			for (count = 0; count < cursors->count; count++) {
count             431 source3/libnet/libnet_dssync.c 				cursors->cursors[count].source_dsa_invocation_id =
count             432 source3/libnet/libnet_dssync.c 					utdv->ctr.ctr2.cursors[count].source_dsa_invocation_id;
count             433 source3/libnet/libnet_dssync.c 				cursors->cursors[count].highest_usn =
count             434 source3/libnet/libnet_dssync.c 					utdv->ctr.ctr2.cursors[count].highest_usn;
count             578 source3/libnet/libnet_dssync.c 					new_utdv->ctr.ctr1.count =
count             579 source3/libnet/libnet_dssync.c 						ctr1->uptodateness_vector->count;
count             600 source3/libnet/libnet_dssync.c 					new_utdv->ctr.ctr2.count =
count             601 source3/libnet/libnet_dssync.c 						ctr6->uptodateness_vector->count;
count             650 source3/libnet/libnet_dssync.c 	uint32_t count;
count             672 source3/libnet/libnet_dssync.c 	for (count=0; count < dn_count; count++) {
count             674 source3/libnet/libnet_dssync.c 						     dns[count],
count             124 source3/libnet/libnet_dssync_keytab.c 		keytab_ctx->count,
count             275 source3/libnet/libnet_dssync_keytab.c 			uint32_t count;
count             278 source3/libnet/libnet_dssync_keytab.c 			for (count = 0; count < num_spns; count++) {
count             279 source3/libnet/libnet_dssync_keytab.c 				blob = attr->value_ctr.values[count].blob;
count             281 source3/libnet/libnet_dssync_keytab.c 						   &spn[count],
count             313 source3/libnet/libnet_dssync_keytab.c 				if (cur->meta_data_ctr->count !=
count             409 source3/libnet/libnet_dssync_keytab.c 	DEBUG(1,("#%02d: %s:%d, ", ctx->count, name, kvno));
count             533 source3/libnet/libnet_dssync_keytab.c 	uint32_t count;
count             539 source3/libnet/libnet_dssync_keytab.c 	for (count = 0; count < ctx->object_count; count++) {
count             540 source3/libnet/libnet_dssync_keytab.c 		if (strequal(ctx->object_dns[count], dn)) {
count             267 source3/libnet/libnet_keytab.c 		for (i=0; i < ctx->count; i++) {
count             286 source3/libnet/libnet_keytab.c 	for (i=0; i<ctx->count; i++) {
count             427 source3/libnet/libnet_keytab.c 		     &ctx->entries, &ctx->count);
count              37 source3/libnet/libnet_keytab.h 	uint32_t count;
count             258 source3/libnet/libnet_samsync_keytab.c 		keytab_ctx->count,
count             447 source3/librpc/ndr/ndr_string.c 	uint32_t count;
count             461 source3/librpc/ndr/ndr_string.c 		for (count = 0;; count++) {
count             464 source3/librpc/ndr/ndr_string.c 			a = talloc_realloc(ndr->current_mem_ctx, a, const char *, count + 2);
count             466 source3/librpc/ndr/ndr_string.c 			a[count]   = NULL;
count             467 source3/librpc/ndr/ndr_string.c 			a[count+1]   = NULL;
count             474 source3/librpc/ndr/ndr_string.c 				a[count] = NULL;
count             477 source3/librpc/ndr/ndr_string.c 				a[count] = s;
count             503 source3/librpc/ndr/ndr_string.c 		for (count = 0; ((ndr->data_size - ndr->offset) > 0); count++) {
count             506 source3/librpc/ndr/ndr_string.c 			a = talloc_realloc(ndr->current_mem_ctx, a, const char *, count + 2);
count             508 source3/librpc/ndr/ndr_string.c 			a[count]   = NULL;
count             509 source3/librpc/ndr/ndr_string.c 			a[count+1]   = NULL;
count             515 source3/librpc/ndr/ndr_string.c 			a[count] = s;
count             535 source3/librpc/ndr/ndr_string.c 	uint32_t count;
count             545 source3/librpc/ndr/ndr_string.c 		for (count = 0; a && a[count]; count++) {
count             546 source3/librpc/ndr/ndr_string.c 			NDR_CHECK(ndr_push_string(ndr, ndr_flags, a[count]));
count             558 source3/librpc/ndr/ndr_string.c 		for (count = 0; a && a[count]; count++) {
count             559 source3/librpc/ndr/ndr_string.c 			if (count > 0) {
count             565 source3/librpc/ndr/ndr_string.c 			NDR_CHECK(ndr_push_string(ndr, ndr_flags, a[count]));
count             581 source3/librpc/ndr/ndr_string.c 	uint32_t count;
count             584 source3/librpc/ndr/ndr_string.c 	for (count = 0; a && a[count]; count++) {}
count             586 source3/librpc/ndr/ndr_string.c 	ndr->print(ndr, "%s: ARRAY(%d)", name, count);
count             588 source3/librpc/ndr/ndr_string.c 	for (i=0;i<count;i++) {
count             598 source3/librpc/ndr/ndr_string.c _PUBLIC_ size_t ndr_size_string_array(const char **a, uint32_t count, int flags)
count             605 source3/librpc/ndr/ndr_string.c 		for (i = 0; i < count; i++) {
count             610 source3/librpc/ndr/ndr_string.c 		for (i = 0; i < count; i++) {
count             635 source3/librpc/ndr/ndr_string.c _PUBLIC_ enum ndr_err_code ndr_check_string_terminator(struct ndr_pull *ndr, uint32_t count, uint32_t element_size)
count             641 source3/librpc/ndr/ndr_string.c 	ndr_pull_advance(ndr, (count - 1) * element_size);
count            2386 source3/libsmb/cliconnect.c 	int i, count;
count            2395 source3/libsmb/cliconnect.c 						&count))) {
count            2400 source3/libsmb/cliconnect.c 	for (i = 0; i < count; i++) {
count             120 source3/libsmb/clirap.c 	int count = -1;
count             151 source3/libsmb/clirap.c 				count=SVAL(rparam,4);
count             154 source3/libsmb/clirap.c 				for (i=0;i<count;i++,p+=20) {
count             209 source3/libsmb/clirap.c 	return count;
count             300 source3/libsmb/clirap.c 			int i, count;
count             304 source3/libsmb/clirap.c 			count = SVAL(rparam, 4);
count             316 source3/libsmb/clirap.c 			return_cnt += count;
count             331 source3/libsmb/clirap.c 			if (last_entry && count && p &&
count             333 source3/libsmb/clirap.c 			    count -= 1; /* Skip this entry */
count             338 source3/libsmb/clirap.c 			for (i = 0; i < count; i++, p += 26) {
count             530 source3/libsmb/clirap.c 	int count=8;
count             568 source3/libsmb/clirap.c 	} while (count-- && ret==False);
count             620 source3/libsmb/clirap.c 	int count=8;
count             693 source3/libsmb/clirap.c 	} while (count-- && ret==False);
count            1185 source3/libsmb/clirap.c 	int count=8;
count            1222 source3/libsmb/clirap.c 	} while (count-- && ret==False);
count             403 source3/libsmb/clirap2.c 		int i, converter = 0, count = 0;
count             408 source3/libsmb/clirap2.c 		GETWORD(p, count, endp);
count             411 source3/libsmb/clirap2.c 		for (i=0,p=rdata; i<count && p < endp;i++) {
count             492 source3/libsmb/clirap2.c 		int i, count = 0;
count             495 source3/libsmb/clirap2.c 		GETWORD(p, count, endp);
count             498 source3/libsmb/clirap2.c 		for (i=0,p=rdata; i<count && p < endp;i++) {
count             681 source3/libsmb/clirap2.c 		int i, count = 0;
count             685 source3/libsmb/clirap2.c 		GETWORD(p, count, endp);
count             688 source3/libsmb/clirap2.c 		for (i=0,p=rdata; i<count && p < endp; i++) {
count             750 source3/libsmb/clirap2.c 		int i, count = 0;
count             754 source3/libsmb/clirap2.c 		GETWORD(p, count, endp);
count             757 source3/libsmb/clirap2.c 		for (i=0,p=rdata; i<count && p < endp; i++) {
count             955 source3/libsmb/clirap2.c 		int i, converter = 0, count = 0;
count             964 source3/libsmb/clirap2.c 		GETWORD(p, count, endp);
count             967 source3/libsmb/clirap2.c 		for (i=0,p=rdata;i<count && p < endp;i++) {
count            1063 source3/libsmb/clirap2.c 		int i, count = 0;
count            1068 source3/libsmb/clirap2.c 		GETWORD(p, count, endp);
count            1071 source3/libsmb/clirap2.c 		for (i=0,p=rdata;i<count && p < endp;i++) {
count            1261 source3/libsmb/clirap2.c 	int count = -1;
count            1290 source3/libsmb/clirap2.c 			GETWORD(p, count, endp);
count            1294 source3/libsmb/clirap2.c 			for (i=0; i<count && p < endp; i++) {
count            1329 source3/libsmb/clirap2.c 	return count;
count            1485 source3/libsmb/clirap2.c 	int count = -1;
count            1515 source3/libsmb/clirap2.c 			GETWORD(p, count, endp);
count            1519 source3/libsmb/clirap2.c 			if (count > 0) {
count            1540 source3/libsmb/clirap2.c 	return(count > 0);
count            1808 source3/libsmb/clirap2.c 			int i, count = 0;
count            1811 source3/libsmb/clirap2.c 			GETWORD(p, count,endp);
count            1815 source3/libsmb/clirap2.c 			for (i = 0;i < count && p < endp;i++, p += 16) {
count            1944 source3/libsmb/clirap2.c 		int i, converter = 0, count = 0;
count            1948 source3/libsmb/clirap2.c 		GETWORD(p, count, endp);
count            1952 source3/libsmb/clirap2.c 		for (i=0;i<count && p < endp;i++) {
count            2296 source3/libsmb/clirap2.c 		int i, count = 0;
count            2299 source3/libsmb/clirap2.c 		GETWORD(p, count,endp);
count            2302 source3/libsmb/clirap2.c 		for (i=0,p=rdata;i<count && p < endp;i++) {
count            2378 source3/libsmb/clirap2.c 		int i, converter = 0, count = 0;
count            2382 source3/libsmb/clirap2.c 		GETWORD(p, count, endp);
count            2385 source3/libsmb/clirap2.c 		for (i=0,p=rdata;i<count && p < endp;i++) {
count            2630 source3/libsmb/clirap2.c 		int i, converter = 0, count = 0;
count            2634 source3/libsmb/clirap2.c 		GETWORD(p, count, endp);
count            2637 source3/libsmb/clirap2.c 		for (i=0,p=rdata;i<count && p < endp;i++) {
count             512 source3/libsmb/dsgetdcname.c 	int count;
count             526 source3/libsmb/dsgetdcname.c 				       &iplist, &count,
count             533 source3/libsmb/dsgetdcname.c 	dclist = TALLOC_ZERO_ARRAY(mem_ctx, struct ip_service_name, count);
count             538 source3/libsmb/dsgetdcname.c 	for (i=0; i<count; i++) {
count             556 source3/libsmb/dsgetdcname.c 	*returned_count = count;
count             578 source3/libsmb/dsgetdcname.c 	int count = 0;
count             625 source3/libsmb/dsgetdcname.c 	while ((i < numdcs) && (count < numaddrs)) {
count             627 source3/libsmb/dsgetdcname.c 		struct ip_service_name *r = &dclist[count];
count             660 source3/libsmb/dsgetdcname.c 			count++;
count             666 source3/libsmb/dsgetdcname.c 	*return_count = count;
count             668 source3/libsmb/dsgetdcname.c 	if (count > 0) {
count             276 source3/libsmb/libsmb_compat.c               int count)
count             279 source3/libsmb/libsmb_compat.c         return smbc_getFunctionGetdents(statcont)(statcont, file, dirp, count);
count             442 source3/libsmb/libsmb_dir.c                 int count;
count             487 source3/libsmb/libsmb_dir.c                                                         &count)))
count             510 source3/libsmb/libsmb_dir.c                         count = 1;
count             513 source3/libsmb/libsmb_dir.c                 for (i = 0; i < count && i < max_lmb_count; i++) {
count             520 source3/libsmb/libsmb_dir.c                                    i+1, MAX(count, max_lmb_count),
count            1008 source3/libsmb/libsmb_dir.c                   int count)
count            1010 source3/libsmb/libsmb_dir.c 	int rem = count;
count            1070 source3/libsmb/libsmb_dir.c 			if (rem < count) { /* We managed to copy something */
count            1074 source3/libsmb/libsmb_dir.c 				return count - rem;
count            1103 source3/libsmb/libsmb_dir.c 	if (rem == count)
count            1106 source3/libsmb/libsmb_dir.c 		return count - rem;
count             235 source3/libsmb/libsmb_file.c               size_t count)
count             263 source3/libsmb/libsmb_file.c 	DEBUG(4, ("smbc_read(%p, %d)\n", file, (int)count));
count             310 source3/libsmb/libsmb_file.c 	ret = cli_read(targetcli, file->cli_fd, (char *)buf, offset, count);
count             337 source3/libsmb/libsmb_file.c                size_t count)
count             402 source3/libsmb/libsmb_file.c                         0, (char *)buf, offset, count);
count             257 source3/libsmb/libsmb_setget.c smbc_setOptionBrowseMaxLmbCount(SMBCCTX *c, int count)
count             259 source3/libsmb/libsmb_setget.c         c->options.browse_max_lmb_count = count;
count             368 source3/libsmb/namequery.c 	int count, i;
count             405 source3/libsmb/namequery.c 	status = node_status_query(sock, &nname, to_ss, &count, NULL);
count             410 source3/libsmb/namequery.c 	for (i=0;i<count;i++) {
count             415 source3/libsmb/namequery.c 	if (i == count)
count             554 source3/libsmb/namequery.c static void sort_addr_list(struct sockaddr_storage *sslist, int count)
count             556 source3/libsmb/namequery.c 	if (count <= 1) {
count             560 source3/libsmb/namequery.c 	qsort(sslist, count, sizeof(struct sockaddr_storage),
count             564 source3/libsmb/namequery.c static void sort_service_list(struct ip_service *servlist, int count)
count             566 source3/libsmb/namequery.c 	if (count <= 1) {
count             570 source3/libsmb/namequery.c 	qsort(servlist, count, sizeof(struct ip_service),
count             578 source3/libsmb/namequery.c static int remove_duplicate_addrs2(struct ip_service *iplist, int count )
count             586 source3/libsmb/namequery.c 	for ( i=0; i<count; i++ ) {
count             591 source3/libsmb/namequery.c 		for ( j=i+1; j<count; j++ ) {
count             601 source3/libsmb/namequery.c 	for (i = 0; i<count; ) {
count             603 source3/libsmb/namequery.c 			if (i != count-1) {
count             605 source3/libsmb/namequery.c 					(count - i - 1)*sizeof(iplist[i]));
count             607 source3/libsmb/namequery.c 			count--;
count             613 source3/libsmb/namequery.c 	return count;
count             629 source3/libsmb/namequery.c 			int *count,
count             657 source3/libsmb/namequery.c 	(*count) = 0;
count             768 source3/libsmb/namequery.c 						(*count) +
count             784 source3/libsmb/namequery.c 				in_addr_to_sockaddr_storage(&ss_list[(*count)],
count             787 source3/libsmb/namequery.c 				(*count)++;
count             824 source3/libsmb/namequery.c 	sort_addr_list(ss_list, *count);
count             863 source3/libsmb/namequery.c 		int count = 0;
count             878 source3/libsmb/namequery.c 			++count;
count             880 source3/libsmb/namequery.c 			++count;
count             882 source3/libsmb/namequery.c 			++count;
count             884 source3/libsmb/namequery.c 			++count;
count             886 source3/libsmb/namequery.c 		if (count <= 0)
count             889 source3/libsmb/namequery.c 		if (count > 0 && count < 2) {
count             895 source3/libsmb/namequery.c 		if (count >= 4) {
count             964 source3/libsmb/namequery.c 		int count)
count             968 source3/libsmb/namequery.c 	if ( count==0 || !ss_list )
count             972 source3/libsmb/namequery.c 	if ((*return_iplist = SMB_MALLOC_ARRAY(struct ip_service, count)) ==
count             975 source3/libsmb/namequery.c 			"for %d enetries!\n", count ));
count             979 source3/libsmb/namequery.c 	for ( i=0; i<count; i++ ) {
count            1683 source3/libsmb/namequery.c 	int count = 0;
count            1692 source3/libsmb/namequery.c 						  &ss_list, &count,
count            1697 source3/libsmb/namequery.c 		for (i=0; i<count; i++) {
count            1728 source3/libsmb/namequery.c 	int count = 0;
count            1752 source3/libsmb/namequery.c 						  &ss_list, &count,
count            1761 source3/libsmb/namequery.c 	for (i=0, num_entries = 0; i<count; i++) {
count            1780 source3/libsmb/namequery.c 	for (i=0, num_entries = 0; i<count; i++) {
count            1801 source3/libsmb/namequery.c 	int count = 0;
count            1809 source3/libsmb/namequery.c 	status = internal_resolve_name(group, 0x1D, NULL, &ip_list, &count,
count            1817 source3/libsmb/namequery.c 	status = internal_resolve_name(group, 0x1B, NULL, &ip_list, &count,
count            1837 source3/libsmb/namequery.c 	int count = 0;
count            1844 source3/libsmb/namequery.c 					       &count, "ads");
count            1847 source3/libsmb/namequery.c 	if (!NT_STATUS_IS_OK(status) || count == 0) {
count            1849 source3/libsmb/namequery.c 					       &count,
count            1859 source3/libsmb/namequery.c 	if ( count > 1 ) {
count            1860 source3/libsmb/namequery.c 		DEBUG(6,("get_pdc_ip: PDC has %d IP addresses!\n", count));
count            1861 source3/libsmb/namequery.c 		sort_service_list(ip_list, count);
count            1881 source3/libsmb/namequery.c 			int *count,
count            1902 source3/libsmb/namequery.c 	*count = 0;
count            1968 source3/libsmb/namequery.c 					     count, resolve_order);
count            2009 source3/libsmb/namequery.c 					     count, resolve_order);
count            2118 source3/libsmb/namequery.c 	*count = local_count;
count            2120 source3/libsmb/namequery.c 	status = ( *count != 0 ? NT_STATUS_OK : NT_STATUS_NO_LOGON_SERVERS );
count            2127 source3/libsmb/namequery.c 		*count = 0;
count            2142 source3/libsmb/namequery.c 			int *count,
count            2150 source3/libsmb/namequery.c 	*count = 0;
count            2163 source3/libsmb/namequery.c 			count, lookup_type, &ordered);
count            2170 source3/libsmb/namequery.c 				     count, lookup_type, &ordered);
count            2175 source3/libsmb/namequery.c 		*count = 0;
count            2181 source3/libsmb/namequery.c 		sort_service_list(*ip_list, *count);
count            2194 source3/libsmb/namequery.c 			int *count)
count            2199 source3/libsmb/namequery.c 	*count = 0;
count            2203 source3/libsmb/namequery.c 			count, DC_KDC_ONLY, &ordered);
count            2207 source3/libsmb/namequery.c 		*count = 0;
count            2213 source3/libsmb/namequery.c 		sort_service_list(*ip_list, *count);
count             159 source3/libsmb/namequery_dc.c 	int count, i;
count             165 source3/libsmb/namequery_dc.c 	if (!NT_STATUS_IS_OK(get_sorted_dc_list(domain, NULL, &ip_list, &count,
count             173 source3/libsmb/namequery_dc.c 	for (i = 0; i < count; i++) {
count             367 source3/libsmb/nmblib.c 				struct res_rec **recs, int count)
count             371 source3/libsmb/nmblib.c 	*recs = SMB_MALLOC_ARRAY(struct res_rec, count);
count             375 source3/libsmb/nmblib.c 	memset((char *)*recs,'\0',sizeof(**recs)*count);
count             377 source3/libsmb/nmblib.c 	for (i=0;i<count;i++) {
count             406 source3/libsmb/nmblib.c static int put_res_rec(char *buf,int offset,struct res_rec *recs,int count)
count             411 source3/libsmb/nmblib.c 	for (i=0;i<count;i++) {
count             156 source3/libsmb/smbdes.c static void lshift(char *d, int count, int n)
count             161 source3/libsmb/smbdes.c 		out[i] = d[(i+count)%n];
count             157 source3/libsmb/trusts_util.c 	*num_domains = dom_list.count;
count              29 source3/libsmb/unexpected.c 	int count;
count              40 source3/libsmb/unexpected.c 	static int count;
count              70 source3/libsmb/unexpected.c 	key.count = count++;
count             687 source3/locking/brlock.c 	unsigned int i, count, posix_count;
count             714 source3/locking/brlock.c 	count = posix_count = 0;
count             736 source3/locking/brlock.c 			memcpy(&tp[count], curr_lock, sizeof(struct lock_struct));
count             737 source3/locking/brlock.c 			count++;
count             752 source3/locking/brlock.c 			tmp_count += brlock_posix_split_merge(&tp[count], curr_lock, plock);
count             754 source3/locking/brlock.c 			count += tmp_count;
count             774 source3/locking/brlock.c 	for (i=0; i < count; i++) {
count             782 source3/locking/brlock.c 	if (i < count) {
count             784 source3/locking/brlock.c 			(count - i)*sizeof(struct lock_struct));
count             787 source3/locking/brlock.c 	count++;
count             823 source3/locking/brlock.c 	if (count < br_lck->num_locks + 2) {
count             824 source3/locking/brlock.c 		tp = (struct lock_struct *)SMB_REALLOC(tp, count * sizeof(*locks));
count             831 source3/locking/brlock.c 	br_lck->num_locks = count;
count            1042 source3/locking/brlock.c 	unsigned int i, j, count;
count            1069 source3/locking/brlock.c 	count = 0;
count            1077 source3/locking/brlock.c 			memcpy(&tp[count], lock, sizeof(struct lock_struct));
count            1078 source3/locking/brlock.c 			count++;
count            1089 source3/locking/brlock.c 			memcpy(&tp[count], lock, sizeof(struct lock_struct));
count            1090 source3/locking/brlock.c 			count++;
count            1095 source3/locking/brlock.c 		tmp_count = brlock_posix_split_merge(&tp[count], lock, plock);
count            1105 source3/locking/brlock.c 			if (tp[count].size != lock->size) {
count            1108 source3/locking/brlock.c 			count += tmp_count;
count            1112 source3/locking/brlock.c 			count += tmp_count;
count            1119 source3/locking/brlock.c 				memcpy(&tp[count], &locks[i+1],
count            1121 source3/locking/brlock.c 				count += ((br_lck->num_locks-1) - i);
count            1142 source3/locking/brlock.c 						count);
count            1146 source3/locking/brlock.c 	if (count) {
count            1147 source3/locking/brlock.c 		tp = (struct lock_struct *)SMB_REALLOC(tp, count * sizeof(*locks));
count            1161 source3/locking/brlock.c 	br_lck->num_locks = count;
count             235 source3/locking/locking.c 			uint64_t count,
count             261 source3/locking/locking.c 		(double)offset, (double)count, blocking_lock ? "true" :
count             275 source3/locking/locking.c 			count, 
count             295 source3/locking/locking.c 			uint64_t count,
count             311 source3/locking/locking.c 		  (double)offset, (double)count, fsp->fnum, fsp->fsp_name ));
count             323 source3/locking/locking.c 			count,
count             343 source3/locking/locking.c 			uint64_t count,
count             361 source3/locking/locking.c 		  (double)offset, (double)count, fsp->fnum, fsp->fsp_name ));
count             372 source3/locking/locking.c 			count,
count              85 source3/locking/posix.c 	SMB_OFF_T count = (SMB_OFF_T)u_count;
count             125 source3/locking/posix.c 	if (count == (SMB_OFF_T)0) {
count             146 source3/locking/posix.c 		count = max_positive_lock_offset;
count             153 source3/locking/posix.c 	if (offset + count < 0 || offset + count > max_positive_lock_offset) {
count             154 source3/locking/posix.c 		count = max_positive_lock_offset - offset;
count             161 source3/locking/posix.c 	if (count == 0) {
count             172 source3/locking/posix.c 			(double)offset, (double)count ));
count             175 source3/locking/posix.c 	*count_out = count;
count             185 source3/locking/posix.c static bool posix_fcntl_lock(files_struct *fsp, int op, SMB_OFF_T offset, SMB_OFF_T count, int type)
count             189 source3/locking/posix.c 	DEBUG(8,("posix_fcntl_lock %d %d %.0f %.0f %d\n",fsp->fh->fd,op,(double)offset,(double)count,type));
count             191 source3/locking/posix.c 	ret = SMB_VFS_LOCK(fsp, op, offset, count, type);
count             196 source3/locking/posix.c 					(double)offset,(double)count));
count             210 source3/locking/posix.c 		if (count & ~((SMB_OFF_T)0x7fffffff)) {
count             214 source3/locking/posix.c 			count &= 0x7fffffff;
count             215 source3/locking/posix.c 			ret = SMB_VFS_LOCK(fsp, op, offset, count, type);
count             280 source3/locking/posix.c 	SMB_OFF_T count;
count             291 source3/locking/posix.c 	if(!posix_lock_in_range(&offset, &count, *pu_offset, *pu_count)) {
count             295 source3/locking/posix.c 	if (!posix_fcntl_getlock(fsp,&offset,&count,&posix_lock_type)) {
count             306 source3/locking/posix.c 		*pu_count = (uint64_t)count;
count             615 source3/locking/posix.c 	size_t count, i;
count             645 source3/locking/posix.c 	count = get_posix_pending_close_entries(talloc_tos(), fsp, &fd_array);
count             647 source3/locking/posix.c 	if (count) {
count             649 source3/locking/posix.c 			  (unsigned int)count));
count             651 source3/locking/posix.c 		for(i = 0; i < count; i++) {
count             940 source3/locking/posix.c 	SMB_OFF_T count;
count             956 source3/locking/posix.c 	if(!posix_lock_in_range(&offset, &count, u_offset, u_count)) {
count             997 source3/locking/posix.c 	ll->size = count;
count            1024 source3/locking/posix.c 		count = ll->size;
count            1027 source3/locking/posix.c 			posix_lock_type_name(posix_lock_type), (double)offset, (double)count ));
count            1029 source3/locking/posix.c 		if (!posix_fcntl_lock(fsp,SMB_F_SETLK,offset,count,posix_lock_type)) {
count            1032 source3/locking/posix.c 				posix_lock_type_name(posix_lock_type), (double)offset, (double)count, strerror(errno) ));
count            1046 source3/locking/posix.c 			count = ll->size;
count            1049 source3/locking/posix.c 				posix_lock_type_name(posix_lock_type), (double)offset, (double)count ));
count            1051 source3/locking/posix.c 			posix_fcntl_lock(fsp,SMB_F_SETLK,offset,count,F_UNLCK);
count            1076 source3/locking/posix.c 	SMB_OFF_T count;
count            1093 source3/locking/posix.c 	if(!posix_lock_in_range(&offset, &count, u_offset, u_count)) {
count            1115 source3/locking/posix.c 	ul->size = count;
count            1144 source3/locking/posix.c 			(!ulist || ulist->next != NULL || ulist->start != offset || ulist->size != count)) {
count            1147 source3/locking/posix.c 			(double)offset, (double)count ));
count            1149 source3/locking/posix.c 		if (!posix_fcntl_lock(fsp,SMB_F_SETLK,offset,count,F_RDLCK)) {
count            1162 source3/locking/posix.c 		count = ulist->size;
count            1165 source3/locking/posix.c 			(double)offset, (double)count ));
count            1167 source3/locking/posix.c 		if (!posix_fcntl_lock(fsp,SMB_F_SETLK,offset,count,F_UNLCK)) {
count            1197 source3/locking/posix.c 	SMB_OFF_T count;
count            1208 source3/locking/posix.c 	if(!posix_lock_in_range(&offset, &count, u_offset, u_count)) {
count            1212 source3/locking/posix.c 	if (!posix_fcntl_lock(fsp,SMB_F_SETLK,offset,count,posix_lock_type)) {
count            1215 source3/locking/posix.c 			posix_lock_type_name(posix_lock_type), (double)offset, (double)count, strerror(errno) ));
count            1239 source3/locking/posix.c 	SMB_OFF_T count;
count            1252 source3/locking/posix.c 	if(!posix_lock_in_range(&offset, &count, u_offset, u_count)) {
count            1274 source3/locking/posix.c 	ul->size = count;
count            1296 source3/locking/posix.c 		count = ulist->size;
count            1299 source3/locking/posix.c 			(double)offset, (double)count ));
count            1301 source3/locking/posix.c 		if (!posix_fcntl_lock(fsp,SMB_F_SETLK,offset,count,F_UNLCK)) {
count            2494 source3/modules/getdate.c   int count;
count            2554 source3/modules/getdate.c       count = 0;
count            2561 source3/modules/getdate.c 	    count++;
count            2563 source3/modules/getdate.c 	    count--;
count            2565 source3/modules/getdate.c       while (count > 0);
count             793 source3/modules/getdate.y   int count;
count             853 source3/modules/getdate.y       count = 0;
count             860 source3/modules/getdate.y 	    count++;
count             862 source3/modules/getdate.y 	    count--;
count             864 source3/modules/getdate.y       while (count > 0);
count             168 source3/modules/onefs.h 			   size_t count);
count             171 source3/modules/onefs.h 			   size_t count);
count             471 source3/modules/onefs_notify.c 	int count = 0;
count             489 source3/modules/onefs_notify.c 	count = nread / sizeof(struct ifs_event);
count             491 source3/modules/onefs_notify.c 	DEBUG(5, ("Got %d notification events in %d bytes.\n", count, nread));
count             494 source3/modules/onefs_notify.c 	for (i=0; i < count; i++) {
count             217 source3/modules/onefs_system.c     const DATA_BLOB *header, SMB_OFF_T offset, size_t count, bool atomic)
count             243 source3/modules/onefs_system.c 	total = count;
count             306 source3/modules/onefs_system.c 	return count + hdr_len;
count             314 source3/modules/onefs_system.c 			   size_t count)
count             319 source3/modules/onefs_system.c 	START_PROFILE_BYTES(syscall_sendfile, count);
count             328 source3/modules/onefs_system.c 	ret = onefs_sys_do_sendfile(tofd, fromfd, header, offset, count,
count             417 source3/modules/onefs_system.c 				  "%lu bytes\n", count));
count             422 source3/modules/onefs_system.c 		if (count < 0x10000) {
count             424 source3/modules/onefs_system.c 				  count));
count             428 source3/modules/onefs_system.c 			   count));
count             432 source3/modules/onefs_system.c 					    count, false);
count             436 source3/modules/onefs_system.c 				  "(%lu bytes): %s\n", count,
count             443 source3/modules/onefs_system.c 		if (ret != count + header->length) {
count             445 source3/modules/onefs_system.c 				  "(%lu of %lu bytes): %s\n", ret, count,
count             472 source3/modules/onefs_system.c 			  count, strerror(errno)));
count             520 source3/modules/onefs_system.c 			   size_t count)
count             530 source3/modules/onefs_system.c 	START_PROFILE_BYTES(syscall_recvfile, count);
count             533 source3/modules/onefs_system.c 		  "%lu\n", fromfd, tofd, offset, count));
count             535 source3/modules/onefs_system.c 	if (count == 0) {
count             544 source3/modules/onefs_system.c 	spill_buffer = get_spill_buffer(count);
count             563 source3/modules/onefs_system.c 			   offset + total_wbytes, count - total_rbytes));
count             566 source3/modules/onefs_system.c 			       count - total_wbytes, &rbytes, &wbytes, 0,
count             577 source3/modules/onefs_system.c 	} while ((count - total_rbytes) && (rbytes == wbytes) &&
count             594 source3/modules/onefs_system.c 	while (total_rbytes < count) {
count             597 source3/modules/onefs_system.c 			  strerror(errno), count - total_rbytes));
count             606 source3/modules/onefs_system.c 			       count - total_rbytes);
count             624 source3/modules/onefs_system.c 	if (total_rbytes != count) {
count             631 source3/modules/onefs_system.c 	while (total_wbytes < count) {
count             633 source3/modules/onefs_system.c 		DEBUG(3, ("partial recvfile, writing %llu\n", count - total_wbytes));
count             635 source3/modules/onefs_system.c 		ret = sys_pwrite(tofd, spill_buffer, count - total_wbytes,
count             656 source3/modules/onefs_system.c 	if (!socket_drained && count - total_rbytes) {
count             659 source3/modules/onefs_system.c 		if (drain_socket(fromfd, count - total_rbytes) !=
count             660 source3/modules/onefs_system.c 		    count - total_rbytes) {
count              39 source3/modules/perfcount_test.c 	int count;
count              55 source3/modules/perfcount_test.c int count;
count              79 source3/modules/perfcount_test.c 				head->count++;
count              93 source3/modules/perfcount_test.c 			ptc->count = 1;
count             163 source3/modules/perfcount_test.c 	DEBUG(lvl, ("Count: %d\n\n", ptc->count));
count             174 source3/modules/perfcount_test.c 	if ((count++ % count_mod) != 0)
count              66 source3/modules/vfs_aixacl_util.c 				      (result->count+1)));
count              75 source3/modules/vfs_aixacl_util.c 			ace = &result->acl[result->count];
count             121 source3/modules/vfs_aixacl_util.c 			result->count++;
count             143 source3/modules/vfs_aixacl_util.c 				      (result->count+1)));
count             151 source3/modules/vfs_aixacl_util.c 		ace = &result->acl[result->count];
count             181 source3/modules/vfs_aixacl_util.c 		memcpy(&result->acl[result->count],ace,sizeof(struct smb_acl_entry));
count             182 source3/modules/vfs_aixacl_util.c 		result->count++;
count             235 source3/modules/vfs_aixacl_util.c 	for(i=0; i<theacl->count; i++ ) {
count              52 source3/modules/vfs_cacheprime.c 			size_t			            count)
count              67 source3/modules/vfs_cacheprime.c         if ((*last + g_readsz) > (offset + count)) {
count             130 source3/modules/vfs_cacheprime.c                 size_t                      count)
count             133 source3/modules/vfs_cacheprime.c                 prime_cache(handle, fromfsp, offset, count);
count             137 source3/modules/vfs_cacheprime.c                                      header, offset, count);
count             144 source3/modules/vfs_cacheprime.c                 size_t              count)
count             150 source3/modules/vfs_cacheprime.c                 prime_cache(handle, fsp, offset, count);
count             154 source3/modules/vfs_cacheprime.c         return SMB_VFS_NEXT_READ(handle, fsp, data, count);
count             161 source3/modules/vfs_cacheprime.c 		        size_t              count,
count             165 source3/modules/vfs_cacheprime.c                 prime_cache(handle, fsp, offset, count);
count             168 source3/modules/vfs_cacheprime.c         return SMB_VFS_NEXT_PREAD(handle, fsp, data, count, offset);
count             233 source3/modules/vfs_commit.c         size_t              count)
count             236 source3/modules/vfs_commit.c         ret = SMB_VFS_NEXT_WRITE(handle, fsp, data, count);
count             251 source3/modules/vfs_commit.c         size_t              count,
count             256 source3/modules/vfs_commit.c         ret = SMB_VFS_NEXT_PWRITE(handle, fsp, data, count, offset);
count             957 source3/modules/vfs_default.c static bool vfswrap_lock(vfs_handle_struct *handle, files_struct *fsp, int op, SMB_OFF_T offset, SMB_OFF_T count, int type)
count             962 source3/modules/vfs_default.c 	result =  fcntl_lock(fsp->fh->fd, op, offset, count, type);
count            1348 source3/modules/vfs_default.c static SMB_ACL_T vfswrap_sys_acl_init(vfs_handle_struct *handle,  int count)
count            1350 source3/modules/vfs_default.c 	return sys_acl_init(count);
count             184 source3/modules/vfs_full_audit.c 		       int op, SMB_OFF_T offset, SMB_OFF_T count, int type);
count             281 source3/modules/vfs_full_audit.c 				    int count);
count            1537 source3/modules/vfs_full_audit.c 		       int op, SMB_OFF_T offset, SMB_OFF_T count, int type)
count            1541 source3/modules/vfs_full_audit.c 	result = SMB_VFS_NEXT_LOCK(handle, fsp, op, offset, count, type);
count            2011 source3/modules/vfs_full_audit.c 				    int count)
count            2015 source3/modules/vfs_full_audit.c 	result = SMB_VFS_NEXT_SYS_ACL_INIT(handle, count);
count             474 source3/modules/vfs_gpfs.c 	result->count = pacl->acl_nace;
count             607 source3/modules/vfs_gpfs.c 	DEBUG(10, ("smb2gpfs_acl: Got ACL with %d entries\n", pacl->count));
count             610 source3/modules/vfs_gpfs.c 		(pacl->count)*sizeof(gpfs_ace_v1_t);
count             623 source3/modules/vfs_gpfs.c 	result->acl_nace = pacl->count;
count             625 source3/modules/vfs_gpfs.c 	for (i=0; i<pacl->count; i++) {
count             106 source3/modules/vfs_hpuxacl.c static HPUX_ACL_T hpux_acl_init(int count);
count             108 source3/modules/vfs_hpuxacl.c 		HPUX_ACL_T *solariacl, int *count, 
count             110 source3/modules/vfs_hpuxacl.c static SMB_ACL_T hpux_acl_to_smb_acl(HPUX_ACL_T hpuxacl, int count,
count             114 source3/modules/vfs_hpuxacl.c static bool hpux_add_to_acl(HPUX_ACL_T *hpux_acl, int *count,
count             117 source3/modules/vfs_hpuxacl.c 		int *count);
count             121 source3/modules/vfs_hpuxacl.c static bool hpux_acl_check(HPUX_ACL_T hpux_acl, int count);
count             124 source3/modules/vfs_hpuxacl.c static bool hpux_acl_sort(HPUX_ACL_T acl, int count);
count             142 source3/modules/vfs_hpuxacl.c 	int count;
count             164 source3/modules/vfs_hpuxacl.c 	if (!hpux_acl_get_file(path_p, &hpux_acl, &count)) {
count             167 source3/modules/vfs_hpuxacl.c 	result = hpux_acl_to_smb_acl(hpux_acl, count, type);
count             217 source3/modules/vfs_hpuxacl.c 	int count;
count             238 source3/modules/vfs_hpuxacl.c 	if(!smb_acl_to_hpux_acl(theacl, &hpux_acl, &count, type)) {
count             278 source3/modules/vfs_hpuxacl.c 		if (!hpux_add_to_acl(&hpux_acl, &count, other_acl,
count             292 source3/modules/vfs_hpuxacl.c 	if (!hpux_acl_sort(hpux_acl, count)) {
count             298 source3/modules/vfs_hpuxacl.c 	ret = acl(CONST_DISCARD(char *, name), ACL_SET, count, hpux_acl);
count             361 source3/modules/vfs_hpuxacl.c 	int count;
count             371 source3/modules/vfs_hpuxacl.c 	if (!smb_acl_to_hpux_acl(smb_acl, &hpux_acl, &count, 
count             377 source3/modules/vfs_hpuxacl.c 	if (!hpux_acl_sort(hpux_acl, count)) {
count             381 source3/modules/vfs_hpuxacl.c 	ret = acl(CONST_DISCARD(char *, path), ACL_SET, count, hpux_acl);
count             398 source3/modules/vfs_hpuxacl.c static HPUX_ACL_T hpux_acl_init(int count)
count             401 source3/modules/vfs_hpuxacl.c 		(HPUX_ACL_T)SMB_MALLOC(sizeof(HPUX_ACE_T) * count);
count             413 source3/modules/vfs_hpuxacl.c 				   HPUX_ACL_T *hpux_acl, int *count, 
count             423 source3/modules/vfs_hpuxacl.c 	*count = 0;
count             425 source3/modules/vfs_hpuxacl.c 	for (i = 0; i < smb_acl->count; i++) {
count             461 source3/modules/vfs_hpuxacl.c 		if (!hpux_add_to_acl(hpux_acl, count, &hpux_entry, 
count             467 source3/modules/vfs_hpuxacl.c 		DEBUG(10, ("count after adding: %d (i: %d)\n", *count, i));
count             470 source3/modules/vfs_hpuxacl.c 			      (*hpux_acl)[(*count)-1].a_type));
count             472 source3/modules/vfs_hpuxacl.c 			      (*hpux_acl)[(*count)-1].a_id));
count             474 source3/modules/vfs_hpuxacl.c 			      (*hpux_acl)[(*count)-1].a_perm));
count             492 source3/modules/vfs_hpuxacl.c static SMB_ACL_T hpux_acl_to_smb_acl(HPUX_ACL_T hpux_acl, int count, 
count             502 source3/modules/vfs_hpuxacl.c 	for (i = 0; i < count; i++) {
count             512 source3/modules/vfs_hpuxacl.c 				      (result->count + 1)));
count             517 source3/modules/vfs_hpuxacl.c 		smb_entry = &result->acl[result->count];
count             533 source3/modules/vfs_hpuxacl.c 		result->count += 1;
count             649 source3/modules/vfs_hpuxacl.c 				 int *count)
count             669 source3/modules/vfs_hpuxacl.c 	*count = acl(CONST_DISCARD(char *, name), ACL_CNT, 0, &dummy_ace);
count             670 source3/modules/vfs_hpuxacl.c 	if (*count < 0) {
count             674 source3/modules/vfs_hpuxacl.c 	*hpux_acl = hpux_acl_init(*count);
count             679 source3/modules/vfs_hpuxacl.c 	*count = acl(CONST_DISCARD(char *, name), ACL_GET, *count, *hpux_acl);
count             680 source3/modules/vfs_hpuxacl.c 	if (*count < 0) {
count             711 source3/modules/vfs_hpuxacl.c static bool hpux_add_to_acl(HPUX_ACL_T *hpux_acl, int *count,
count             728 source3/modules/vfs_hpuxacl.c 			     hpux_acl, count);
count             757 source3/modules/vfs_hpuxacl.c static bool hpux_acl_sort(HPUX_ACL_T hpux_acl, int count)
count             759 source3/modules/vfs_hpuxacl.c 	int fixmask = (count <= 4);
count             761 source3/modules/vfs_hpuxacl.c 	if (hpux_internal_aclsort(count, fixmask, hpux_acl) != 0) {
count            1130 source3/modules/vfs_hpuxacl.c static bool hpux_acl_check(HPUX_ACL_T hpux_acl, int count)
count            1135 source3/modules/vfs_hpuxacl.c 	check_rc = aclcheck(hpux_acl, count, &check_which);
count             115 source3/modules/vfs_netatalk.c 	int i, count = 0;
count             122 source3/modules/vfs_netatalk.c 		for (i = 0, count = 0; cur_list[i].name; i ++, count ++) {
count             128 source3/modules/vfs_netatalk.c 	if (!(new_list = SMB_CALLOC_ARRAY(name_compare_entry, (count == 0 ? 1 : count + 1))))
count             131 source3/modules/vfs_netatalk.c 	for (i = 0; i < count; i ++) {
count              60 source3/modules/vfs_onefs.c 			      SMB_OFF_T offset, size_t count)
count              64 source3/modules/vfs_onefs.c 	START_PROFILE_BYTES(syscall_sendfile, count);
count              66 source3/modules/vfs_onefs.c 				    header, offset, count);
count              73 source3/modules/vfs_onefs.c 			      size_t count)
count              77 source3/modules/vfs_onefs.c 	START_PROFILE_BYTES(syscall_recvfile, count);
count              78 source3/modules/vfs_onefs.c 	result = onefs_sys_recvfile(fromfd, tofsp->fh->fd, offset, count);
count             228 source3/modules/vfs_posixacl.c 			(sizeof(struct smb_acl_entry) * (result->count+1)));
count             235 source3/modules/vfs_posixacl.c 		if (!smb_ace_to_internal(e, &result->acl[result->count])) {
count             240 source3/modules/vfs_posixacl.c 		result->count += 1;
count             276 source3/modules/vfs_posixacl.c 	result = acl_init(acl->count);
count             282 source3/modules/vfs_posixacl.c 	for (i=0; i<acl->count; i++) {
count              41 source3/modules/vfs_readahead.c 					size_t count)
count              72 source3/modules/vfs_readahead.c 					count);
count              82 source3/modules/vfs_readahead.c 				size_t count,
count             109 source3/modules/vfs_readahead.c         return SMB_VFS_NEXT_PREAD(handle, fsp, data, count, offset);
count              41 source3/modules/vfs_solarisacl.c static SOLARIS_ACL_T solaris_acl_init(int count);
count              43 source3/modules/vfs_solarisacl.c 		SOLARIS_ACL_T *solariacl, int *count, 
count              45 source3/modules/vfs_solarisacl.c static SMB_ACL_T solaris_acl_to_smb_acl(SOLARIS_ACL_T solarisacl, int count,
count              49 source3/modules/vfs_solarisacl.c static bool solaris_add_to_acl(SOLARIS_ACL_T *solaris_acl, int *count,
count              52 source3/modules/vfs_solarisacl.c 		int *count);
count              53 source3/modules/vfs_solarisacl.c static bool solaris_acl_get_fd(int fd, SOLARIS_ACL_T *solarisacl, int *count);
count              54 source3/modules/vfs_solarisacl.c static bool solaris_acl_sort(SOLARIS_ACL_T theacl, int count);
count              58 source3/modules/vfs_solarisacl.c static bool solaris_acl_check(SOLARIS_ACL_T solaris_acl, int count);
count              68 source3/modules/vfs_solarisacl.c 	int count;
count              83 source3/modules/vfs_solarisacl.c 	if (!solaris_acl_get_file(path_p, &solaris_acl, &count)) {
count              86 source3/modules/vfs_solarisacl.c 	result = solaris_acl_to_smb_acl(solaris_acl, count, type);
count             107 source3/modules/vfs_solarisacl.c 	int count;
count             112 source3/modules/vfs_solarisacl.c 	if (!solaris_acl_get_fd(fsp->fh->fd, &solaris_acl, &count)) {
count             120 source3/modules/vfs_solarisacl.c 	result = solaris_acl_to_smb_acl(solaris_acl, count,
count             142 source3/modules/vfs_solarisacl.c 	int count;
count             155 source3/modules/vfs_solarisacl.c 	if(!smb_acl_to_solaris_acl(theacl, &solaris_acl, &count, type)) {
count             189 source3/modules/vfs_solarisacl.c 		if (!solaris_add_to_acl(&solaris_acl, &count, other_acl,
count             203 source3/modules/vfs_solarisacl.c 	if (!solaris_acl_sort(solaris_acl, count)) {
count             208 source3/modules/vfs_solarisacl.c 	ret = acl(name, SETACL, count, solaris_acl);
count             226 source3/modules/vfs_solarisacl.c 	int count, default_count;
count             238 source3/modules/vfs_solarisacl.c 	if (!smb_acl_to_solaris_acl(theacl, &solaris_acl, &count, 
count             249 source3/modules/vfs_solarisacl.c 	if (!solaris_add_to_acl(&solaris_acl, &count,
count             256 source3/modules/vfs_solarisacl.c 	if (!solaris_acl_sort(solaris_acl, count)) {
count             261 source3/modules/vfs_solarisacl.c 	ret = facl(fsp->fh->fd, SETACL, count, solaris_acl);
count             296 source3/modules/vfs_solarisacl.c 	int count;
count             306 source3/modules/vfs_solarisacl.c 	if (!smb_acl_to_solaris_acl(smb_acl, &solaris_acl, &count, 
count             312 source3/modules/vfs_solarisacl.c 	if (!solaris_acl_sort(solaris_acl, count)) {
count             316 source3/modules/vfs_solarisacl.c 	ret = acl(path, SETACL, count, solaris_acl);
count             331 source3/modules/vfs_solarisacl.c static SOLARIS_ACL_T solaris_acl_init(int count)
count             334 source3/modules/vfs_solarisacl.c 		(SOLARIS_ACL_T)SMB_MALLOC(sizeof(aclent_t) * count);
count             346 source3/modules/vfs_solarisacl.c 				   SOLARIS_ACL_T *solaris_acl, int *count, 
count             355 source3/modules/vfs_solarisacl.c 	*count = 0;
count             357 source3/modules/vfs_solarisacl.c 	for (i = 0; i < smb_acl->count; i++) {
count             393 source3/modules/vfs_solarisacl.c 		if (!solaris_add_to_acl(solaris_acl, count, &solaris_entry, 
count             399 source3/modules/vfs_solarisacl.c 		DEBUG(10, ("count after adding: %d (i: %d)\n", *count, i));
count             402 source3/modules/vfs_solarisacl.c 			      (*solaris_acl)[(*count)-1].a_type));
count             404 source3/modules/vfs_solarisacl.c 			      (unsigned int)(*solaris_acl)[(*count)-1].a_id));
count             406 source3/modules/vfs_solarisacl.c 			      (*solaris_acl)[(*count)-1].a_perm));
count             424 source3/modules/vfs_solarisacl.c static SMB_ACL_T solaris_acl_to_smb_acl(SOLARIS_ACL_T solaris_acl, int count, 
count             434 source3/modules/vfs_solarisacl.c 	for (i = 0; i < count; i++) {
count             444 source3/modules/vfs_solarisacl.c 				      (result->count + 1)));
count             449 source3/modules/vfs_solarisacl.c 		smb_entry = &result->acl[result->count];
count             465 source3/modules/vfs_solarisacl.c 		result->count += 1;
count             576 source3/modules/vfs_solarisacl.c 				 int *count)
count             588 source3/modules/vfs_solarisacl.c 	*count = acl(name, GETACLCNT, 0, NULL);
count             589 source3/modules/vfs_solarisacl.c 	if (*count < 0) {
count             593 source3/modules/vfs_solarisacl.c 	*solaris_acl = solaris_acl_init(*count);
count             598 source3/modules/vfs_solarisacl.c 	*count = acl(name, GETACL, *count, *solaris_acl);
count             599 source3/modules/vfs_solarisacl.c 	if (*count < 0) {
count             612 source3/modules/vfs_solarisacl.c static bool solaris_acl_get_fd(int fd, SOLARIS_ACL_T *solaris_acl, int *count)
count             622 source3/modules/vfs_solarisacl.c 	*count = facl(fd, GETACLCNT, 0, NULL);
count             623 source3/modules/vfs_solarisacl.c 	if (*count < 0) {
count             627 source3/modules/vfs_solarisacl.c 	*solaris_acl = solaris_acl_init(*count);
count             632 source3/modules/vfs_solarisacl.c 	*count = facl(fd, GETACL, *count, *solaris_acl);
count             633 source3/modules/vfs_solarisacl.c 	if (*count < 0) {
count             663 source3/modules/vfs_solarisacl.c static bool solaris_add_to_acl(SOLARIS_ACL_T *solaris_acl, int *count,
count             680 source3/modules/vfs_solarisacl.c 			     solaris_acl, count);
count             709 source3/modules/vfs_solarisacl.c static bool solaris_acl_sort(SOLARIS_ACL_T solaris_acl, int count)
count             711 source3/modules/vfs_solarisacl.c 	int fixmask = (count <= 4);
count             713 source3/modules/vfs_solarisacl.c 	if (aclsort(count, fixmask, solaris_acl) != 0) {
count             727 source3/modules/vfs_solarisacl.c static bool solaris_acl_check(SOLARIS_ACL_T solaris_acl, int count)
count             732 source3/modules/vfs_solarisacl.c 	check_rc = aclcheck(solaris_acl, count, &check_which);
count             173 source3/modules/vfs_tru64acl.c 					 (result->count + 1)));
count             180 source3/modules/vfs_tru64acl.c 		if (!tru64_ace_to_smb_ace(entry, &result->acl[result->count])) {
count             184 source3/modules/vfs_tru64acl.c 		result->count += 1;
count             269 source3/modules/vfs_tru64acl.c 	for (i = 0; i < smb_acl->count; i++) {
count              93 source3/nmbd/nmbd.c 				  int count,
count             126 source3/nmbd/nmbd.c 				 int count,
count             622 source3/nmbd/nmbd_browsesync.c 	int count=0;
count             643 source3/nmbd/nmbd_browsesync.c 			count++;
count             652 source3/nmbd/nmbd_browsesync.c 			if (((unsigned)sys_random()) % count != 0)
count             546 source3/nmbd/nmbd_incomingdgrams.c 	unsigned int count = 0;
count             570 source3/nmbd/nmbd_incomingdgrams.c 	count = 1;
count             596 source3/nmbd/nmbd_incomingdgrams.c     if(count >= (unsigned int)max_number_requested)
count             607 source3/nmbd/nmbd_incomingdgrams.c     count++;
count             610 source3/nmbd/nmbd_incomingdgrams.c               p, count));
count             616 source3/nmbd/nmbd_incomingdgrams.c 	SCVAL(countptr, 0, count);
count             621 source3/nmbd/nmbd_incomingdgrams.c 		send_to_namestr, inet_ntoa(sendto_ip), count));
count            1673 source3/nmbd/nmbd_packets.c 	int count = 0;
count            1684 source3/nmbd/nmbd_packets.c 		count++;
count            1686 source3/nmbd/nmbd_packets.c 	if((count*2) + 2 > FD_SETSIZE) {
count            1688 source3/nmbd/nmbd_packets.c only use %d.\n", (count*2) + 2, FD_SETSIZE));
count            1693 source3/nmbd/nmbd_packets.c 	if((sock_array = SMB_MALLOC_ARRAY(int, (count*2) + 2)) == NULL) {
count            1725 source3/nmbd/nmbd_packets.c 	*listen_number = (count*2) + 2;
count             267 source3/nmbd/nmbd_synclists.c 	int count=0;
count             294 source3/nmbd/nmbd_synclists.c 		count++;
count             302 source3/nmbd/nmbd_synclists.c 		 s->server, inet_ntoa(s->ip), s->workgroup, count));
count             126 source3/pam_smbpass/general.h     int count;                  /* number of failures so far */
count             319 source3/pam_smbpass/support.c             if (failure->count != 0) {
count             324 source3/pam_smbpass/support.c                           , failure->count
count             325 source3/pam_smbpass/support.c                           , failure->count == 1 ? "failure" : "failures"
count             329 source3/pam_smbpass/support.c                 if (failure->count > SMB_MAX_RETRIES) {
count             333 source3/pam_smbpass/support.c                               , failure->count
count             426 source3/pam_smbpass/support.c                     newauth->count = old->count + 1;
count             427 source3/pam_smbpass/support.c                     if (newauth->count >= SMB_MAX_RETRIES) {
count             435 source3/pam_smbpass/support.c                     newauth->count = 1;
count            6783 source3/param/loadparm.c 	uint32_t count;
count            6794 source3/param/loadparm.c 	for (count = 0; count < service->num_params; count++) {
count            6795 source3/param/loadparm.c 		ret = do_parameter(service->param_names[count],
count            6796 source3/param/loadparm.c 				   service->param_values[count],
count            6872 source3/param/loadparm.c 	uint32_t count;
count            6890 source3/param/loadparm.c 	for (count = 0; count < num_shares; count++) {
count            6891 source3/param/loadparm.c 		if (strequal(service[count]->name, GLOBAL_NAME)) {
count            6894 source3/param/loadparm.c 		ret = process_smbconf_service(service[count]);
count              30 source3/param/test_lp_load.c 	int i, count = 1;
count              60 source3/param/test_lp_load.c 		count = atoi(count_str);
count              67 source3/param/test_lp_load.c 	for (i=0; i < count; i++) {
count            1500 source3/passdb/pdb_ldap.c 	int count;
count            1516 source3/passdb/pdb_ldap.c 	count = ldap_count_entries(ldap_state->smbldap_state->ldap_struct, result);
count            1518 source3/passdb/pdb_ldap.c 	if (count < 1) {
count            1519 source3/passdb/pdb_ldap.c 		DEBUG(4, ("ldapsam_getsampwnam: Unable to locate user [%s] count=%d\n", sname, count));
count            1522 source3/passdb/pdb_ldap.c 	} else if (count > 1) {
count            1523 source3/passdb/pdb_ldap.c 		DEBUG(1, ("ldapsam_getsampwnam: Duplicate entries for this user [%s] Failing. count=%d\n", sname, count));
count            1601 source3/passdb/pdb_ldap.c 	int count;
count            1609 source3/passdb/pdb_ldap.c 	count = ldap_count_entries(ldap_state->smbldap_state->ldap_struct, result);
count            1611 source3/passdb/pdb_ldap.c 	if (count < 1) {
count            1613 source3/passdb/pdb_ldap.c 			  "count=%d\n", sid_string_dbg(sid), count));
count            1616 source3/passdb/pdb_ldap.c 	}  else if (count > 1) {
count            1619 source3/passdb/pdb_ldap.c 			  count));
count            2457 source3/passdb/pdb_ldap.c 	int count;
count            2464 source3/passdb/pdb_ldap.c 	count = ldap_count_entries(priv2ld(ldap_state), result);
count            2466 source3/passdb/pdb_ldap.c 	if (count < 1) {
count            2473 source3/passdb/pdb_ldap.c 	if (count > 1) {
count            2475 source3/passdb/pdb_ldap.c 			  "count=%d\n", filter, count));
count            2621 source3/passdb/pdb_ldap.c 	int rc, count;
count            2647 source3/passdb/pdb_ldap.c 	count = ldap_count_entries(conn->ldap_struct, result);
count            2649 source3/passdb/pdb_ldap.c 	if (count > 1) {
count            2656 source3/passdb/pdb_ldap.c 	if (count == 0) {
count            2714 source3/passdb/pdb_ldap.c 		count = ldap_count_entries(conn->ldap_struct, result);
count            2715 source3/passdb/pdb_ldap.c 		DEBUG(10,("ldapsam_enum_group_members: found %d accounts\n", count));
count            2817 source3/passdb/pdb_ldap.c 	int rc, count;
count            2854 source3/passdb/pdb_ldap.c 	count = ldap_count_entries(priv2ld(ldap_state), result);
count            2856 source3/passdb/pdb_ldap.c 	switch (count) {
count            3472 source3/passdb/pdb_ldap.c 	int count;
count            3507 source3/passdb/pdb_ldap.c 	count = ldap_count_entries(ldap_state->smbldap_state->ldap_struct,
count            3510 source3/passdb/pdb_ldap.c 	if (count < 1) {
count            3517 source3/passdb/pdb_ldap.c 	if (count > 1) {
count            3519 source3/passdb/pdb_ldap.c 			  "filter %s: count=%d\n", filter, count));
count            3591 source3/passdb/pdb_ldap.c 	int count;
count            3629 source3/passdb/pdb_ldap.c 	count = ldap_count_entries(ldap_state->smbldap_state->ldap_struct,
count            3632 source3/passdb/pdb_ldap.c 	if (count < 1) {
count            3639 source3/passdb/pdb_ldap.c 	if (count > 1) {
count            3641 source3/passdb/pdb_ldap.c 			  "filter %s: count=%d\n", filter, count));
count            3667 source3/passdb/pdb_ldap.c 	count = ldap_count_values(values);
count            3669 source3/passdb/pdb_ldap.c 	for (i=0; i<count; i++) {
count            3844 source3/passdb/pdb_ldap.c 	int count;
count            3878 source3/passdb/pdb_ldap.c 	count = ldap_count_entries(priv2ld(ldap_state), result);
count            3879 source3/passdb/pdb_ldap.c 	if (count < 1) {
count              30 source3/printing/lpq_parse.c static time_t EntryTime(char *tok[], int ptr, int count, int minimum)
count              35 source3/printing/lpq_parse.c 	if (count >= minimum) {
count             113 source3/printing/lpq_parse.c #define	TOTALTOK (count - 2)
count             121 source3/printing/lpq_parse.c #define	TOTALTOK (count - 2)
count             127 source3/printing/lpq_parse.c 	int  count = 0;
count             149 source3/printing/lpq_parse.c 	count++;
count             151 source3/printing/lpq_parse.c 	while ((count < MAXTOK)
count             152 source3/printing/lpq_parse.c 	       && ((tok[count] = strtok_r(NULL, " \t", &saveptr)) != NULL)) {
count             153 source3/printing/lpq_parse.c 		count++;
count             157 source3/printing/lpq_parse.c 	if (count < NTOK) {
count             346 source3/printing/lpq_parse.c 	int count=0;
count             355 source3/printing/lpq_parse.c 	for (count=0; count<10 &&
count             356 source3/printing/lpq_parse.c 			next_token_talloc(frame,&cline,&tok[count],NULL); count++) {
count             361 source3/printing/lpq_parse.c 	if (count < 10) {
count             362 source3/printing/lpq_parse.c 		if ((count == 7) && ((strcmp(tok[0],"QUEUED") == 0) || (strcmp(tok[0],"HELD") == 0))) {
count             393 source3/printing/lpq_parse.c 			DEBUG(6,("parse_lpq_aix count=%d\n", count));
count             457 source3/printing/lpq_parse.c 	int count;
count             482 source3/printing/lpq_parse.c 		for (count=0; count<2 &&
count             483 source3/printing/lpq_parse.c 				next_token_talloc(frame, &cline, &tok[count],NULL);
count             484 source3/printing/lpq_parse.c 				count++) {
count             488 source3/printing/lpq_parse.c 		if (count < 2) {
count             538 source3/printing/lpq_parse.c 		for (count=0; count<12 &&
count             539 source3/printing/lpq_parse.c 				next_token_talloc(frame, &cline, &tok[count],NULL);
count             540 source3/printing/lpq_parse.c 				count++) {
count             545 source3/printing/lpq_parse.c 		if (count < 8) {
count             562 source3/printing/lpq_parse.c 		jobtime=EntryTime(tok, 5, count, 8);
count             569 source3/printing/lpq_parse.c 			if ((count >8) && (((strequal(tok[8],"on")) ||
count             571 source3/printing/lpq_parse.c 					((count > 10)&&(strequal(tok[10],"on"))))))) {
count             595 source3/printing/lpq_parse.c 	int count=0;
count             626 source3/printing/lpq_parse.c 	for (count=0; count<9 &&
count             627 source3/printing/lpq_parse.c 			next_token_talloc(frame, &cline, &tok[count],NULL);
count             628 source3/printing/lpq_parse.c 			count++) {
count             633 source3/printing/lpq_parse.c 	if (count < 7) {
count             655 source3/printing/lpq_parse.c 	if (count > 7 && strequal(tok[7],"on")) {
count             657 source3/printing/lpq_parse.c 	} else if (count > 8 && strequal(tok[7],"being") && strequal(tok[8],"held")) {
count             663 source3/printing/lpq_parse.c 	buf->time = EntryTime(tok, 4, count, 7);
count             684 source3/printing/lpq_parse.c 	int count=0;
count             702 source3/printing/lpq_parse.c 	for (count=0; count<7 &&
count             703 source3/printing/lpq_parse.c 			next_token_talloc(frame,&cline,&tok[count],NULL);
count             704 source3/printing/lpq_parse.c 			count++) {
count             709 source3/printing/lpq_parse.c 	if (count < 7) {
count             756 source3/printing/lpq_parse.c 	int count=0;
count             765 source3/printing/lpq_parse.c 	for (count=0; count<11 &&
count             766 source3/printing/lpq_parse.c 			next_token_talloc(frame,&cline,&tok[count],NULL);
count             767 source3/printing/lpq_parse.c 			count++) {
count             772 source3/printing/lpq_parse.c 	if (count < 11) {
count             853 source3/printing/nt_printing.c bool add_a_form(nt_forms_struct **list, struct spoolss_AddFormInfo1 *form, int *count)
count             866 source3/printing/nt_printing.c 	for (n=0; n<*count; n++) {
count             879 source3/printing/nt_printing.c 		(*count)++;
count             900 source3/printing/nt_printing.c bool delete_a_form(nt_forms_struct **list, const char *del_name, int *count, WERROR *ret)
count             907 source3/printing/nt_printing.c 	for (n=0; n<*count; n++) {
count             914 source3/printing/nt_printing.c 	if (n == *count) {
count             937 source3/printing/nt_printing.c void update_a_form(nt_forms_struct **list, struct spoolss_AddFormInfo1 *form, int count)
count             942 source3/printing/nt_printing.c 	for (n=0; n<count; n++) {
count             948 source3/printing/nt_printing.c 	if (n==count) return;
count            2752 source3/printing/printing.c 	int count = 0;
count            2794 source3/printing/printing.c 	if (!get_stored_queue_info(pdb, snum, &count, ppqueue)) {
count            2800 source3/printing/printing.c 	return count;
count             126 source3/rpc_client/cli_lsarpc.c 	uint32_t count = 0;
count             162 source3/rpc_client/cli_lsarpc.c 						&count,
count             167 source3/rpc_client/cli_lsarpc.c 			lsa_names.count	= lsa_names2.count;
count             168 source3/rpc_client/cli_lsarpc.c 			lsa_names.names = talloc_array(mem_ctx, struct lsa_TranslatedName, lsa_names.count);
count             172 source3/rpc_client/cli_lsarpc.c 			for (n=0; n < lsa_names.count; n++) {
count             186 source3/rpc_client/cli_lsarpc.c 					       &count);
count             190 source3/rpc_client/cli_lsarpc.c 		   nt_errstr(result), count));
count             203 source3/rpc_client/cli_lsarpc.c 	    (count == 0))
count             420 source3/rpc_client/cli_lsarpc.c 	uint32_t count = 0;
count             441 source3/rpc_client/cli_lsarpc.c 						 &count,
count             452 source3/rpc_client/cli_lsarpc.c 						&count);
count             465 source3/rpc_client/cli_lsarpc.c 	if (count == 0) {
count             291 source3/rpc_client/cli_spoolss.c 				uint32_t *count,
count             309 source3/rpc_client/cli_spoolss.c 					  count,
count             324 source3/rpc_client/cli_spoolss.c 						  count,
count             343 source3/rpc_client/cli_spoolss.c 					  uint32_t *count,
count             362 source3/rpc_client/cli_spoolss.c 						    count,
count             378 source3/rpc_client/cli_spoolss.c 							    count,
count             397 source3/rpc_client/cli_spoolss.c 						  uint32_t *count,
count             416 source3/rpc_client/cli_spoolss.c 						       count,
count             432 source3/rpc_client/cli_spoolss.c 							       count,
count             450 source3/rpc_client/cli_spoolss.c 				uint32_t *count,
count             468 source3/rpc_client/cli_spoolss.c 					  count,
count             483 source3/rpc_client/cli_spoolss.c 						  count,
count             501 source3/rpc_client/cli_spoolss.c 				   uint32_t *count,
count             519 source3/rpc_client/cli_spoolss.c 					     count,
count             534 source3/rpc_client/cli_spoolss.c 						     count,
count             554 source3/rpc_client/cli_spoolss.c 			       uint32_t *count,
count             574 source3/rpc_client/cli_spoolss.c 					 count,
count             591 source3/rpc_client/cli_spoolss.c 						 count,
count             610 source3/rpc_client/cli_spoolss.c 					 uint32_t *count,
count             629 source3/rpc_client/cli_spoolss.c 						   count,
count             645 source3/rpc_client/cli_spoolss.c 						   count,
count             664 source3/rpc_client/cli_spoolss.c 				   uint32_t *count,
count             683 source3/rpc_client/cli_spoolss.c 					     count,
count             699 source3/rpc_client/cli_spoolss.c 						     count,
count             796 source3/rpc_client/cli_spoolss.c 					uint32_t *count,
count             807 source3/rpc_client/cli_spoolss.c 						  count,
count             819 source3/rpc_client/cli_spoolss.c 							  count,
count             275 source3/rpc_client/init_netlogon.c 	groups.count = num_gids;
count             276 source3/rpc_client/init_netlogon.c 	groups.rids = TALLOC_ARRAY(sam3, struct samr_RidWithAttribute, groups.count);
count             281 source3/rpc_client/init_netlogon.c 	for (i=0; i < groups.count; i++) {
count             160 source3/rpc_parse/parse_prs.c char *prs_alloc_mem_(prs_struct *ps, size_t size, unsigned int count)
count             162 source3/rpc_parse/parse_prs.c char *prs_alloc_mem(prs_struct *ps, size_t size, unsigned int count)
count             167 source3/rpc_parse/parse_prs.c 	if (size && count) {
count             169 source3/rpc_parse/parse_prs.c 		ret = (char *)_talloc_zero_array(ps->mem_ctx, size, count,
count             297 source3/rpc_server/srv_dfs_nt.c 		r->out.info->e.info1->count = num_jn;
count             307 source3/rpc_server/srv_dfs_nt.c 		r->out.info->e.info2->count = num_jn;
count             317 source3/rpc_server/srv_dfs_nt.c 		r->out.info->e.info3->count = num_jn;
count             123 source3/rpc_server/srv_lsa_hnd.c 	if (p->pipe_handles->count > MAX_OPEN_POLS) {
count             125 source3/rpc_server/srv_lsa_hnd.c 				(int)p->pipe_handles->count));
count             156 source3/rpc_server/srv_lsa_hnd.c 	p->pipe_handles->count++;
count             160 source3/rpc_server/srv_lsa_hnd.c 	DEBUG(4,("Opened policy hnd[%d] ", (int)p->pipe_handles->count));
count             220 source3/rpc_server/srv_lsa_hnd.c 	p->pipe_handles->count--;
count             245 source3/rpc_server/srv_lsa_hnd.c 		p->pipe_handles->count = 0;
count              74 source3/rpc_server/srv_lsa_nt.c 		for (num = 0; num < ref->count; num++) {
count              80 source3/rpc_server/srv_lsa_nt.c 		num = ref->count;
count              88 source3/rpc_server/srv_lsa_nt.c 	ref->count = num + 1;
count              92 source3/rpc_server/srv_lsa_nt.c 					    struct lsa_DomainInfo, ref->count);
count             526 source3/rpc_server/srv_lsa_nt.c 	r->out.domains->count = num_thistime;
count             577 source3/rpc_server/srv_lsa_nt.c 		info->audit_events.count = LSA_AUDIT_NUM_CATEGORIES;
count             580 source3/rpc_server/srv_lsa_nt.c 								info->audit_events.count);
count             862 source3/rpc_server/srv_lsa_nt.c 	r->out.names->count = num_sids;
count             864 source3/rpc_server/srv_lsa_nt.c 	*r->out.count = mapped_count;
count             928 source3/rpc_server/srv_lsa_nt.c 	r->out.names->count = num_sids;
count             930 source3/rpc_server/srv_lsa_nt.c 	*r->out.count = mapped_count;
count             957 source3/rpc_server/srv_lsa_nt.c 	q.in.count		= r->in.count;
count             961 source3/rpc_server/srv_lsa_nt.c 	q.out.count		= r->out.count;
count            1064 source3/rpc_server/srv_lsa_nt.c 	*r->out.count = mapped_count;
count            1067 source3/rpc_server/srv_lsa_nt.c 	r->out.sids->count = num_entries;
count            1095 source3/rpc_server/srv_lsa_nt.c 	q.in.count		= r->in.count;
count            1102 source3/rpc_server/srv_lsa_nt.c 	q.out.count		= r->out.count;
count            1106 source3/rpc_server/srv_lsa_nt.c 	sid_array2->count = sid_array->count;
count            1107 source3/rpc_server/srv_lsa_nt.c 	sid_array2->sids = TALLOC_ARRAY(p->mem_ctx, struct lsa_TranslatedSid2, sid_array->count);
count            1112 source3/rpc_server/srv_lsa_nt.c 	for (i=0; i<sid_array->count; i++) {
count            1209 source3/rpc_server/srv_lsa_nt.c 	*r->out.count = mapped_count;
count            1212 source3/rpc_server/srv_lsa_nt.c 	r->out.sids->count = num_entries;
count            1240 source3/rpc_server/srv_lsa_nt.c 	q.in.count		= r->in.count;
count            1244 source3/rpc_server/srv_lsa_nt.c 	q.out.count		= r->out.count;
count            1396 source3/rpc_server/srv_lsa_nt.c 	r->out.privs->count = num_privs;
count            1727 source3/rpc_server/srv_lsa_nt.c 			  privileges.count));
count            1737 source3/rpc_server/srv_lsa_nt.c 					       privileges.count);
count            1743 source3/rpc_server/srv_lsa_nt.c 		for (i=0; i<privileges.count; i++) {
count            1749 source3/rpc_server/srv_lsa_nt.c 		priv_set->count = privileges.count;
count            2098 source3/rpc_server/srv_lsa_nt.c 	for ( i=0; i < r->in.rights->count; i++ ) {
count            2173 source3/rpc_server/srv_lsa_nt.c 	for ( i=0; i < r->in.rights->count; i++ ) {
count            2204 source3/rpc_server/srv_lsa_nt.c 	for (i=0; i<privileges->count; i++) {
count            2227 source3/rpc_server/srv_lsa_nt.c 		r->count = num_priv;
count            2272 source3/rpc_server/srv_lsa_nt.c 			  sid_string_dbg(&sid), privileges.count));
count            1069 source3/rpc_server/srv_samr_nt.c 	samr_array->count = num_account;
count            1183 source3/rpc_server/srv_samr_nt.c 	samr_array->count = num_groups;
count            1258 source3/rpc_server/srv_samr_nt.c 	samr_array->count = num_aliases;
count            1286 source3/rpc_server/srv_samr_nt.c 	r->count = num_entries;
count            1330 source3/rpc_server/srv_samr_nt.c 	r->count = num_entries;
count            1371 source3/rpc_server/srv_samr_nt.c 	r->count = num_entries;
count            1412 source3/rpc_server/srv_samr_nt.c 	r->count = num_entries;
count            1448 source3/rpc_server/srv_samr_nt.c 	r->count = num_entries;
count            1874 source3/rpc_server/srv_samr_nt.c 	rids.count = num_rids;
count            1877 source3/rpc_server/srv_samr_nt.c 	types.count = num_rids;
count            2307 source3/rpc_server/srv_samr_nt.c 	names_array.count = num_rids;
count            2310 source3/rpc_server/srv_samr_nt.c 	types_array.count = num_rids;
count            3376 source3/rpc_server/srv_samr_nt.c 	rids->count = num_gids;
count            4166 source3/rpc_server/srv_samr_nt.c 	sam->count = num_entries;
count            5390 source3/rpc_server/srv_samr_nt.c 	r->out.rids->count = num_alias_rids;
count            5522 source3/rpc_server/srv_samr_nt.c 	rids->count = num_members;
count              35 source3/rpc_server/srv_spoolss_nt.c #define SPOOLSS_BUFFER_UNION_ARRAY(mem_ctx,fn,ic,info,level,count) \
count              36 source3/rpc_server/srv_spoolss_nt.c 	((info)?ndr_size_##fn##_info(mem_ctx, ic, level, count, info):0)
count              38 source3/rpc_server/srv_spoolss_nt.c #define SPOOLSS_BUFFER_ARRAY(mem_ctx,fn,ic,info,count) \
count              39 source3/rpc_server/srv_spoolss_nt.c 	((info)?ndr_size_##fn##_info(mem_ctx, ic, count, info):0)
count             590 source3/rpc_server/srv_spoolss_nt.c 	DEBUG(5, ("%d printer handles active\n", (int)p->pipe_handles->count ));
count             627 source3/rpc_server/srv_spoolss_nt.c 	for (i = 0; i < option->count; i++) {
count             636 source3/rpc_server/srv_spoolss_nt.c 		for (j = 0; j < option->types[i].count; j++) {
count             966 source3/rpc_server/srv_spoolss_nt.c 		uint32_t count = 0;
count            1041 source3/rpc_server/srv_spoolss_nt.c 			construct_info_data( &notifies[count], msg->type, msg->field, id );
count            1046 source3/rpc_server/srv_spoolss_nt.c 					printer_notify_table[msg->field].fn(msg, &notifies[count], mem_ctx);
count            1051 source3/rpc_server/srv_spoolss_nt.c 					job_notify_table[msg->field].fn(msg, &notifies[count], mem_ctx);
count            1059 source3/rpc_server/srv_spoolss_nt.c 			count++;
count            1070 source3/rpc_server/srv_spoolss_nt.c 			info0.flags	= count ? 0x00020000 /* ??? */ : PRINTER_NOTIFY_INFO_DISCARDED;
count            1071 source3/rpc_server/srv_spoolss_nt.c 			info0.count	= count;
count            2727 source3/rpc_server/srv_spoolss_nt.c 	if (!option->count) {
count            2732 source3/rpc_server/srv_spoolss_nt.c 		struct spoolss_NotifyOptionType, option->count);
count            2738 source3/rpc_server/srv_spoolss_nt.c 	for (i=0; i < option->count; i++) {
count            2741 source3/rpc_server/srv_spoolss_nt.c 		if (option->types[i].count) {
count            2743 source3/rpc_server/srv_spoolss_nt.c 				union spoolss_Field, option->types[i].count);
count            2748 source3/rpc_server/srv_spoolss_nt.c 			for (k=0; k<option->types[i].count; k++) {
count            3434 source3/rpc_server/srv_spoolss_nt.c 		option_type->count, lp_servicename(snum)));
count            3439 source3/rpc_server/srv_spoolss_nt.c 	for(field_num=0; field_num < option_type->count; field_num++) {
count            3449 source3/rpc_server/srv_spoolss_nt.c 						      info->count + 1);
count            3456 source3/rpc_server/srv_spoolss_nt.c 		current_data = &info->notifies[info->count];
count            3466 source3/rpc_server/srv_spoolss_nt.c 		info->count++;
count            3498 source3/rpc_server/srv_spoolss_nt.c 		option_type->count));
count            3500 source3/rpc_server/srv_spoolss_nt.c 	for(field_num=0; field_num<option_type->count; field_num++) {
count            3508 source3/rpc_server/srv_spoolss_nt.c 						      info->count + 1);
count            3514 source3/rpc_server/srv_spoolss_nt.c 		current_data=&(info->notifies[info->count]);
count            3519 source3/rpc_server/srv_spoolss_nt.c 		info->count++;
count            3576 source3/rpc_server/srv_spoolss_nt.c 	info->count	= 0;
count            3584 source3/rpc_server/srv_spoolss_nt.c 	for (i=0; i<option->count; i++) {
count            3603 source3/rpc_server/srv_spoolss_nt.c 	DEBUGADD(1,("info->version:[%d], info->flags:[%d], info->count:[%d]\n", info->version, info->flags, info->count));
count            3606 source3/rpc_server/srv_spoolss_nt.c 	for (i=0; i<info->count; i++) {
count            3632 source3/rpc_server/srv_spoolss_nt.c 	int count,j;
count            3646 source3/rpc_server/srv_spoolss_nt.c 	info->count	= 0;
count            3656 source3/rpc_server/srv_spoolss_nt.c 	for (i=0; i<option->count; i++) {
count            3670 source3/rpc_server/srv_spoolss_nt.c 			count = print_queue_status(snum, &queue, &status);
count            3675 source3/rpc_server/srv_spoolss_nt.c 			for (j=0; j<count; j++) {
count            3788 source3/rpc_server/srv_spoolss_nt.c 	int count;
count            3799 source3/rpc_server/srv_spoolss_nt.c 	count = print_queue_length(snum, &status);
count            3820 source3/rpc_server/srv_spoolss_nt.c 	r->cjobs			= count;
count            4049 source3/rpc_server/srv_spoolss_nt.c 	int count;
count            4052 source3/rpc_server/srv_spoolss_nt.c 	count = print_queue_length(snum, &status);
count            4158 source3/rpc_server/srv_spoolss_nt.c 	int count;
count            4162 source3/rpc_server/srv_spoolss_nt.c 	count = print_queue_length(snum, &status);
count            4200 source3/rpc_server/srv_spoolss_nt.c 	r->cjobs		= count;
count            4241 source3/rpc_server/srv_spoolss_nt.c 	uint32_t count = 0;
count            4260 source3/rpc_server/srv_spoolss_nt.c 					    count + 1);
count            4275 source3/rpc_server/srv_spoolss_nt.c 							 &info[count].info0, snum);
count            4279 source3/rpc_server/srv_spoolss_nt.c 							 &info[count].info1, snum);
count            4283 source3/rpc_server/srv_spoolss_nt.c 							 &info[count].info2, snum);
count            4287 source3/rpc_server/srv_spoolss_nt.c 							 &info[count].info4, snum);
count            4291 source3/rpc_server/srv_spoolss_nt.c 							 &info[count].info5, snum);
count            4305 source3/rpc_server/srv_spoolss_nt.c 		count++;
count            4308 source3/rpc_server/srv_spoolss_nt.c 	*count_p = count;
count            4330 source3/rpc_server/srv_spoolss_nt.c 				  uint32_t *count)
count            4334 source3/rpc_server/srv_spoolss_nt.c 	return enum_all_printers_info_level(mem_ctx, 0, flags, info, count);
count            4344 source3/rpc_server/srv_spoolss_nt.c 				       uint32_t *count)
count            4348 source3/rpc_server/srv_spoolss_nt.c 	return enum_all_printers_info_level(mem_ctx, 1, flags, info, count);
count            4357 source3/rpc_server/srv_spoolss_nt.c 					     uint32_t *count)
count            4361 source3/rpc_server/srv_spoolss_nt.c 	return enum_all_printers_info_1(mem_ctx, PRINTER_ENUM_ICON8, info, count);
count            4371 source3/rpc_server/srv_spoolss_nt.c 					    uint32_t *count)
count            4385 source3/rpc_server/srv_spoolss_nt.c 	return enum_all_printers_info_1(mem_ctx, PRINTER_ENUM_ICON8, info, count);
count            4395 source3/rpc_server/srv_spoolss_nt.c 					       uint32_t *count)
count            4417 source3/rpc_server/srv_spoolss_nt.c 	return enum_all_printers_info_1(mem_ctx, PRINTER_ENUM_NAME, info, count);
count            4428 source3/rpc_server/srv_spoolss_nt.c 				       uint32_t *count)
count            4432 source3/rpc_server/srv_spoolss_nt.c 	return enum_all_printers_info_level(mem_ctx, 2, 0, info, count);
count            4443 source3/rpc_server/srv_spoolss_nt.c 				  uint32_t *count)
count            4448 source3/rpc_server/srv_spoolss_nt.c 		return enum_all_printers_info_1_local(mem_ctx, info, count);
count            4452 source3/rpc_server/srv_spoolss_nt.c 		return enum_all_printers_info_1_name(mem_ctx, name, info, count);
count            4456 source3/rpc_server/srv_spoolss_nt.c 		return enum_all_printers_info_1_network(mem_ctx, name, info, count);
count            4470 source3/rpc_server/srv_spoolss_nt.c 				  uint32_t *count)
count            4473 source3/rpc_server/srv_spoolss_nt.c 		return enum_all_printers_info_2(mem_ctx, info, count);
count            4481 source3/rpc_server/srv_spoolss_nt.c 		return enum_all_printers_info_2(mem_ctx, info, count);
count            4499 source3/rpc_server/srv_spoolss_nt.c 				  uint32_t *count)
count            4503 source3/rpc_server/srv_spoolss_nt.c 	return enum_all_printers_info_level(mem_ctx, 4, flags, info, count);
count            4515 source3/rpc_server/srv_spoolss_nt.c 				  uint32_t *count)
count            4519 source3/rpc_server/srv_spoolss_nt.c 	return enum_all_printers_info_level(mem_ctx, 5, flags, info, count);
count            4541 source3/rpc_server/srv_spoolss_nt.c 	*r->out.count = 0;
count            4563 source3/rpc_server/srv_spoolss_nt.c 					     r->out.info, r->out.count);
count            4567 source3/rpc_server/srv_spoolss_nt.c 					     r->out.info, r->out.count);
count            4571 source3/rpc_server/srv_spoolss_nt.c 					     r->out.info, r->out.count);
count            4575 source3/rpc_server/srv_spoolss_nt.c 					     r->out.info, r->out.count);
count            4579 source3/rpc_server/srv_spoolss_nt.c 					     r->out.info, r->out.count);
count            4592 source3/rpc_server/srv_spoolss_nt.c 						     *r->out.count);
count            4594 source3/rpc_server/srv_spoolss_nt.c 	*r->out.count	= SPOOLSS_BUFFER_OK(*r->out.count, 0);
count            5065 source3/rpc_server/srv_spoolss_nt.c 	uint32_t count = 0;
count            5075 source3/rpc_server/srv_spoolss_nt.c 					    count + 1);
count            5078 source3/rpc_server/srv_spoolss_nt.c 						     &info[count],
count            5084 source3/rpc_server/srv_spoolss_nt.c 		count++;
count            5090 source3/rpc_server/srv_spoolss_nt.c 					    count + 1);
count            5093 source3/rpc_server/srv_spoolss_nt.c 						     &info[count],
count            5099 source3/rpc_server/srv_spoolss_nt.c 		count++;
count            5105 source3/rpc_server/srv_spoolss_nt.c 					    count + 1);
count            5108 source3/rpc_server/srv_spoolss_nt.c 						     &info[count],
count            5114 source3/rpc_server/srv_spoolss_nt.c 		count++;
count            5120 source3/rpc_server/srv_spoolss_nt.c 					    count + 1);
count            5123 source3/rpc_server/srv_spoolss_nt.c 						     &info[count],
count            5129 source3/rpc_server/srv_spoolss_nt.c 		count++;
count            5135 source3/rpc_server/srv_spoolss_nt.c 					    count + 1);
count            5138 source3/rpc_server/srv_spoolss_nt.c 						     &info[count],
count            5144 source3/rpc_server/srv_spoolss_nt.c 		count++;
count            5148 source3/rpc_server/srv_spoolss_nt.c 	*count_p = count;
count            6494 source3/rpc_server/srv_spoolss_nt.c 			      uint32_t *count)
count            6503 source3/rpc_server/srv_spoolss_nt.c 	*count = num_queues;
count            6505 source3/rpc_server/srv_spoolss_nt.c 	for (i=0; i<*count; i++) {
count            6520 source3/rpc_server/srv_spoolss_nt.c 		*count = 0;
count            6538 source3/rpc_server/srv_spoolss_nt.c 			      uint32_t *count)
count            6547 source3/rpc_server/srv_spoolss_nt.c 	*count = num_queues;
count            6549 source3/rpc_server/srv_spoolss_nt.c 	for (i=0; i<*count; i++) {
count            6574 source3/rpc_server/srv_spoolss_nt.c 		*count = 0;
count            6595 source3/rpc_server/srv_spoolss_nt.c 	uint32_t count;
count            6606 source3/rpc_server/srv_spoolss_nt.c 	*r->out.count = 0;
count            6620 source3/rpc_server/srv_spoolss_nt.c 	count = print_queue_status(snum, &queue, &prt_status);
count            6622 source3/rpc_server/srv_spoolss_nt.c 		count, prt_status.status, prt_status.message));
count            6624 source3/rpc_server/srv_spoolss_nt.c 	if (count == 0) {
count            6632 source3/rpc_server/srv_spoolss_nt.c 		result = enumjobs_level1(p->mem_ctx, queue, count, snum,
count            6633 source3/rpc_server/srv_spoolss_nt.c 					 ntprinter, r->out.info, r->out.count);
count            6636 source3/rpc_server/srv_spoolss_nt.c 		result = enumjobs_level2(p->mem_ctx, queue, count, snum,
count            6637 source3/rpc_server/srv_spoolss_nt.c 					 ntprinter, r->out.info, r->out.count);
count            6654 source3/rpc_server/srv_spoolss_nt.c 						     *r->out.count);
count            6656 source3/rpc_server/srv_spoolss_nt.c 	*r->out.count	= SPOOLSS_BUFFER_OK(*r->out.count, 0);
count            6731 source3/rpc_server/srv_spoolss_nt.c 	uint32_t count = 0;
count            6751 source3/rpc_server/srv_spoolss_nt.c 						    count + ndrivers);
count            6771 source3/rpc_server/srv_spoolss_nt.c 				result = fill_printer_driver_info1(info, &info[count+i].info1,
count            6776 source3/rpc_server/srv_spoolss_nt.c 				result = fill_printer_driver_info2(info, &info[count+i].info2,
count            6780 source3/rpc_server/srv_spoolss_nt.c 				result = fill_printer_driver_info3(info, &info[count+i].info3,
count            6784 source3/rpc_server/srv_spoolss_nt.c 				result = fill_printer_driver_info4(info, &info[count+i].info4,
count            6788 source3/rpc_server/srv_spoolss_nt.c 				result = fill_printer_driver_info5(info, &info[count+i].info5,
count            6792 source3/rpc_server/srv_spoolss_nt.c 				result = fill_printer_driver_info6(info, &info[count+i].info6,
count            6807 source3/rpc_server/srv_spoolss_nt.c 		count += ndrivers;
count            6820 source3/rpc_server/srv_spoolss_nt.c 	*count_p = count;
count            6833 source3/rpc_server/srv_spoolss_nt.c 					uint32_t *count)
count            6836 source3/rpc_server/srv_spoolss_nt.c 					info_p, count);
count            6847 source3/rpc_server/srv_spoolss_nt.c 					uint32_t *count)
count            6850 source3/rpc_server/srv_spoolss_nt.c 					info_p, count);
count            6861 source3/rpc_server/srv_spoolss_nt.c 					uint32_t *count)
count            6864 source3/rpc_server/srv_spoolss_nt.c 					info_p, count);
count            6875 source3/rpc_server/srv_spoolss_nt.c 					uint32_t *count)
count            6878 source3/rpc_server/srv_spoolss_nt.c 					info_p, count);
count            6889 source3/rpc_server/srv_spoolss_nt.c 					uint32_t *count)
count            6892 source3/rpc_server/srv_spoolss_nt.c 					info_p, count);
count            6903 source3/rpc_server/srv_spoolss_nt.c 					uint32_t *count)
count            6906 source3/rpc_server/srv_spoolss_nt.c 					info_p, count);
count            6929 source3/rpc_server/srv_spoolss_nt.c 	*r->out.count = 0;
count            6942 source3/rpc_server/srv_spoolss_nt.c 						   r->out.info, r->out.count);
count            6947 source3/rpc_server/srv_spoolss_nt.c 						   r->out.info, r->out.count);
count            6952 source3/rpc_server/srv_spoolss_nt.c 						   r->out.info, r->out.count);
count            6957 source3/rpc_server/srv_spoolss_nt.c 						   r->out.info, r->out.count);
count            6962 source3/rpc_server/srv_spoolss_nt.c 						   r->out.info, r->out.count);
count            6967 source3/rpc_server/srv_spoolss_nt.c 						   r->out.info, r->out.count);
count            6980 source3/rpc_server/srv_spoolss_nt.c 						     *r->out.count);
count            6982 source3/rpc_server/srv_spoolss_nt.c 	*r->out.count	= SPOOLSS_BUFFER_OK(*r->out.count, 0);
count            7018 source3/rpc_server/srv_spoolss_nt.c 				       uint32_t *count)
count            7024 source3/rpc_server/srv_spoolss_nt.c 	*count = num_builtin_forms + num_user_forms;
count            7026 source3/rpc_server/srv_spoolss_nt.c 	info = TALLOC_ARRAY(mem_ctx, union spoolss_FormInfo, *count);
count            7051 source3/rpc_server/srv_spoolss_nt.c 		*count = 0;
count            7073 source3/rpc_server/srv_spoolss_nt.c 	*r->out.count = 0;
count            7106 source3/rpc_server/srv_spoolss_nt.c 						  r->out.count);
count            7123 source3/rpc_server/srv_spoolss_nt.c 						     *r->out.count);
count            7125 source3/rpc_server/srv_spoolss_nt.c 	*r->out.count	= SPOOLSS_BUFFER_OK(*r->out.count, 0);
count            7260 source3/rpc_server/srv_spoolss_nt.c WERROR enumports_hook(TALLOC_CTX *ctx, int *count, char ***lines )
count            7269 source3/rpc_server/srv_spoolss_nt.c 	*count = 0;
count            7310 source3/rpc_server/srv_spoolss_nt.c 	*count = numlines;
count            7322 source3/rpc_server/srv_spoolss_nt.c 				uint32_t *count)
count            7357 source3/rpc_server/srv_spoolss_nt.c 		*count = 0;
count            7363 source3/rpc_server/srv_spoolss_nt.c 	*count = numlines;
count            7374 source3/rpc_server/srv_spoolss_nt.c 				uint32_t *count)
count            7409 source3/rpc_server/srv_spoolss_nt.c 		*count = 0;
count            7415 source3/rpc_server/srv_spoolss_nt.c 	*count = numlines;
count            7437 source3/rpc_server/srv_spoolss_nt.c 	*r->out.count = 0;
count            7444 source3/rpc_server/srv_spoolss_nt.c 					   r->out.count);
count            7448 source3/rpc_server/srv_spoolss_nt.c 					   r->out.count);
count            7461 source3/rpc_server/srv_spoolss_nt.c 						     *r->out.count);
count            7463 source3/rpc_server/srv_spoolss_nt.c 	*r->out.count	= SPOOLSS_BUFFER_OK(*r->out.count, 0);
count            8263 source3/rpc_server/srv_spoolss_nt.c 	int count=0;
count            8308 source3/rpc_server/srv_spoolss_nt.c 	count = get_ntforms(&list);
count            8310 source3/rpc_server/srv_spoolss_nt.c 	if(!add_a_form(&list, form, &count)) {
count            8316 source3/rpc_server/srv_spoolss_nt.c 	write_ntforms(&list, count);
count            8343 source3/rpc_server/srv_spoolss_nt.c 	int count=0;
count            8390 source3/rpc_server/srv_spoolss_nt.c 	count = get_ntforms(&list);
count            8393 source3/rpc_server/srv_spoolss_nt.c 	ret = delete_a_form(&list, form_name, &count, &status);
count            8428 source3/rpc_server/srv_spoolss_nt.c 	int count=0;
count            8471 source3/rpc_server/srv_spoolss_nt.c 	count = get_ntforms(&list);
count            8472 source3/rpc_server/srv_spoolss_nt.c 	update_a_form(&list, form, count);
count            8474 source3/rpc_server/srv_spoolss_nt.c 	write_ntforms(&list, count);
count            8513 source3/rpc_server/srv_spoolss_nt.c 					  uint32_t *count)
count            8521 source3/rpc_server/srv_spoolss_nt.c 	*count = 1;
count            8531 source3/rpc_server/srv_spoolss_nt.c 		*count = 0;
count            8564 source3/rpc_server/srv_spoolss_nt.c 	*r->out.count = 0;
count            8571 source3/rpc_server/srv_spoolss_nt.c 						     r->out.count);
count            8584 source3/rpc_server/srv_spoolss_nt.c 						     *r->out.count);
count            8586 source3/rpc_server/srv_spoolss_nt.c 	*r->out.count	= SPOOLSS_BUFFER_OK(*r->out.count, 0);
count            8611 source3/rpc_server/srv_spoolss_nt.c 					     uint32_t *count)
count            8619 source3/rpc_server/srv_spoolss_nt.c 	*count = 1;
count            8629 source3/rpc_server/srv_spoolss_nt.c 		*count = 0;
count            8655 source3/rpc_server/srv_spoolss_nt.c 	*r->out.count = 0;
count            8662 source3/rpc_server/srv_spoolss_nt.c 							r->out.count);
count            8671 source3/rpc_server/srv_spoolss_nt.c 						     *r->out.count);
count            8673 source3/rpc_server/srv_spoolss_nt.c 	*r->out.count	= SPOOLSS_BUFFER_OK(*r->out.count, 0);
count            8718 source3/rpc_server/srv_spoolss_nt.c 					uint32_t *count)
count            8726 source3/rpc_server/srv_spoolss_nt.c 	*count = 2;
count            8743 source3/rpc_server/srv_spoolss_nt.c 		*count = 0;
count            8758 source3/rpc_server/srv_spoolss_nt.c 					uint32_t *count)
count            8766 source3/rpc_server/srv_spoolss_nt.c 	*count = 2;
count            8787 source3/rpc_server/srv_spoolss_nt.c 		*count = 0;
count            8820 source3/rpc_server/srv_spoolss_nt.c 	*r->out.count = 0;
count            8827 source3/rpc_server/srv_spoolss_nt.c 						   r->out.count);
count            8831 source3/rpc_server/srv_spoolss_nt.c 						   r->out.count);
count            8844 source3/rpc_server/srv_spoolss_nt.c 						     *r->out.count);
count            8846 source3/rpc_server/srv_spoolss_nt.c 	*r->out.count	= SPOOLSS_BUFFER_OK(*r->out.count, 0);
count            8856 source3/rpc_server/srv_spoolss_nt.c 			     int count, int snum,
count            8864 source3/rpc_server/srv_spoolss_nt.c 	for (i=0; i<count && found == false; i++) {
count            8888 source3/rpc_server/srv_spoolss_nt.c 			     int count, int snum,
count            8899 source3/rpc_server/srv_spoolss_nt.c 	for (i=0; i<count && found == false; i++) {
count            8949 source3/rpc_server/srv_spoolss_nt.c 	int count;
count            8972 source3/rpc_server/srv_spoolss_nt.c 	count = print_queue_status(snum, &queue, &prt_status);
count            8975 source3/rpc_server/srv_spoolss_nt.c 	             count, prt_status.status, prt_status.message));
count            8980 source3/rpc_server/srv_spoolss_nt.c 					queue, count, snum, ntprinter,
count            8985 source3/rpc_server/srv_spoolss_nt.c 					queue, count, snum, ntprinter,
count            9419 source3/rpc_server/srv_spoolss_nt.c 	uint32_t	count = 0;
count            9431 source3/rpc_server/srv_spoolss_nt.c 	*r->out.count = 0;
count            9479 source3/rpc_server/srv_spoolss_nt.c 	count = regval_ctr_numvals(p_data->keys[key_index].values);
count            9480 source3/rpc_server/srv_spoolss_nt.c 	if (!count) {
count            9487 source3/rpc_server/srv_spoolss_nt.c 				 count);
count            9499 source3/rpc_server/srv_spoolss_nt.c 	for (i=0; i < count; i++) {
count            9529 source3/rpc_server/srv_spoolss_nt.c 	*r->out.count	= count;
count            9545 source3/rpc_server/srv_spoolss_nt.c 					       *r->out.count);
count            9547 source3/rpc_server/srv_spoolss_nt.c 	*r->out.count	= SPOOLSS_BUFFER_OK(*r->out.count, *r->out.count);
count              46 source3/rpc_server/srv_srvsvc_nt.c 	int count;
count              58 source3/rpc_server/srv_srvsvc_nt.c 	int i = fenum->ctr3->count;
count              99 source3/rpc_server/srv_srvsvc_nt.c 	fenum->ctr3->count++;
count             140 source3/rpc_server/srv_srvsvc_nt.c 	int i = fenum->ctr3->count;
count             202 source3/rpc_server/srv_srvsvc_nt.c 	fenum->ctr3->count++;
count             562 source3/rpc_server/srv_srvsvc_nt.c 		ctr.ctr0->count = alloc_entries;
count             579 source3/rpc_server/srv_srvsvc_nt.c 		ctr.ctr1->count = alloc_entries;
count             596 source3/rpc_server/srv_srvsvc_nt.c 		ctr.ctr2->count = alloc_entries;
count             613 source3/rpc_server/srv_srvsvc_nt.c 		ctr.ctr501->count = alloc_entries;
count             630 source3/rpc_server/srv_srvsvc_nt.c 		ctr.ctr502->count = alloc_entries;
count             647 source3/rpc_server/srv_srvsvc_nt.c 		ctr.ctr1004->count = alloc_entries;
count             664 source3/rpc_server/srv_srvsvc_nt.c 		ctr.ctr1005->count = alloc_entries;
count             681 source3/rpc_server/srv_srvsvc_nt.c 		ctr.ctr1006->count = alloc_entries;
count             698 source3/rpc_server/srv_srvsvc_nt.c 		ctr.ctr1007->count = alloc_entries;
count             715 source3/rpc_server/srv_srvsvc_nt.c 		ctr.ctr1501->count = alloc_entries;
count             785 source3/rpc_server/srv_srvsvc_nt.c 	ctr0->count = num_entries;
count             808 source3/rpc_server/srv_srvsvc_nt.c 		sess->count++;
count             821 source3/rpc_server/srv_srvsvc_nt.c 	s_file_cnt.count = 0;
count             827 source3/rpc_server/srv_srvsvc_nt.c 	return s_file_cnt.count;
count             887 source3/rpc_server/srv_srvsvc_nt.c 	ctr1->count = num_entries;
count             940 source3/rpc_server/srv_srvsvc_nt.c 	ctr0->count = num_entries;
count            1000 source3/rpc_server/srv_srvsvc_nt.c 	ctr1->count = num_entries;
count            1054 source3/rpc_server/srv_srvsvc_nt.c 	*r->out.totalentries = ctr3->count;
count            1056 source3/rpc_server/srv_srvsvc_nt.c 	r->out.info_ctr->ctr.ctr3->count = ctr3->count;
count            2347 source3/rpc_server/srv_srvsvc_nt.c 	r->out.info->count = 0;
count            2351 source3/rpc_server/srv_srvsvc_nt.c 		r->out.info->count++;
count            2361 source3/rpc_server/srv_srvsvc_nt.c 	r->out.info->count++;
count             172 source3/rpcclient/cmd_dfs.c 	for (i = 0; i < ctr->e.info1->count; i++) {
count              50 source3/rpcclient/cmd_drsuapi.c 	req.req1.count		= argc;
count             116 source3/rpcclient/cmd_drsuapi.c 	for (i=0; i < ctr.ctr1->count; i++) {
count             199 source3/rpcclient/cmd_drsuapi.c 			for (i=0; i<ctr->ctr01.count; i++) {
count             205 source3/rpcclient/cmd_drsuapi.c 			for (i=0; i<ctr->ctr1.count; i++) {
count             211 source3/rpcclient/cmd_drsuapi.c 			for (i=0; i<ctr->ctr2.count; i++) {
count             217 source3/rpcclient/cmd_drsuapi.c 			for (i=0; i<ctr->ctr3.count; i++) {
count             431 source3/rpcclient/cmd_drsuapi.c 		if (crack_ctr.ctr1->count != 1) {
count              75 source3/rpcclient/cmd_lsarpc.c 	d_printf("Auditing categories:\t%d\n", r->count);
count              77 source3/rpcclient/cmd_lsarpc.c 	for (i=0; i<r->count; i++) {
count             420 source3/rpcclient/cmd_lsarpc.c 		for (i = 0; i < domain_list.count; i++) {
count             477 source3/rpcclient/cmd_lsarpc.c 	printf("found %d privileges\n\n", priv_array.count);
count             479 source3/rpcclient/cmd_lsarpc.c 	for (i = 0; i < priv_array.count; i++) {
count             691 source3/rpcclient/cmd_lsarpc.c 	printf("found %d privileges for SID %s\n\n", privs->count, argv[1]);
count             694 source3/rpcclient/cmd_lsarpc.c 	for (i = 0; i < privs->count; i++) {
count             744 source3/rpcclient/cmd_lsarpc.c 	printf("found %d privileges for SID %s\n", rights.count,
count             747 source3/rpcclient/cmd_lsarpc.c 	for (i = 0; i < rights.count; i++) {
count             785 source3/rpcclient/cmd_lsarpc.c 	rights.count = argc-2;
count             787 source3/rpcclient/cmd_lsarpc.c 				    rights.count);
count             838 source3/rpcclient/cmd_lsarpc.c 	rights.count = argc-2;
count             840 source3/rpcclient/cmd_lsarpc.c 				    rights.count);
count            1249 source3/rpcclient/cmd_lsarpc.c 		privs.count++;
count            1252 source3/rpcclient/cmd_lsarpc.c 					   privs.count);
count            1257 source3/rpcclient/cmd_lsarpc.c 		set[privs.count-1].luid = luid;
count            1258 source3/rpcclient/cmd_lsarpc.c 		set[privs.count-1].attribute = 0;
count            1333 source3/rpcclient/cmd_lsarpc.c 		privs.count++;
count            1336 source3/rpcclient/cmd_lsarpc.c 					   privs.count);
count            1341 source3/rpcclient/cmd_lsarpc.c 		set[privs.count-1].luid = luid;
count            1342 source3/rpcclient/cmd_lsarpc.c 		set[privs.count-1].attribute = 0;
count             834 source3/rpcclient/cmd_netlogon.c 		printf("%d domains returned\n", trusts.count);
count             836 source3/rpcclient/cmd_netlogon.c 		for (i=0; i<trusts.count; i++ ) {
count             608 source3/rpcclient/cmd_samr.c 	for (i = 0; i < rid_array->count; i++) {
count             696 source3/rpcclient/cmd_samr.c 	for (i = 0; i < alias_rids.count; i++) {
count             768 source3/rpcclient/cmd_samr.c 	for (i = 0; i < rids->count; i++) {
count            1433 source3/rpcclient/cmd_samr.c 				num_entries = info.info1.count;
count            1436 source3/rpcclient/cmd_samr.c 				num_entries = info.info2.count;
count            1439 source3/rpcclient/cmd_samr.c 				num_entries = info.info3.count;
count            1442 source3/rpcclient/cmd_samr.c 				num_entries = info.info4.count;
count            1445 source3/rpcclient/cmd_samr.c 				num_entries = info.info5.count;
count             285 source3/rpcclient/cmd_spoolss.c 	uint32_t		i, count;
count             313 source3/rpcclient/cmd_spoolss.c 					     &count,
count             317 source3/rpcclient/cmd_spoolss.c 		if (!count) {
count             322 source3/rpcclient/cmd_spoolss.c 		for (i = 0; i < count; i++) {
count             410 source3/rpcclient/cmd_spoolss.c 	uint32_t		count;
count             428 source3/rpcclient/cmd_spoolss.c 					  &count,
count             433 source3/rpcclient/cmd_spoolss.c 		for (i = 0; i < count; i++) {
count            1281 source3/rpcclient/cmd_spoolss.c 	uint32_t count = 0;
count            1290 source3/rpcclient/cmd_spoolss.c 						   &count,
count            1299 source3/rpcclient/cmd_spoolss.c 	if (count == 0) {
count            1313 source3/rpcclient/cmd_spoolss.c 		for (j=0; j < count; j++) {
count            1318 source3/rpcclient/cmd_spoolss.c 		for (j=0; j < count; j++) {
count            1323 source3/rpcclient/cmd_spoolss.c 		for (j=0; j < count; j++) {
count            1328 source3/rpcclient/cmd_spoolss.c 		for (j=0; j < count; j++) {
count            1333 source3/rpcclient/cmd_spoolss.c 		for (j=0; j < count; j++) {
count            1338 source3/rpcclient/cmd_spoolss.c 		for (j=0; j < count; j++) {
count            1343 source3/rpcclient/cmd_spoolss.c 		for (j=0; j < count; j++) {
count            1539 source3/rpcclient/cmd_spoolss.c 	int count = 0;
count            1573 source3/rpcclient/cmd_spoolss.c 		add_string_to_array(deps, str, &file_array, &count);
count            1577 source3/rpcclient/cmd_spoolss.c 	deps->string = talloc_zero_array(deps, const char *, count + 1);
count            1582 source3/rpcclient/cmd_spoolss.c 	for (i=0; i < count; i++) {
count            2569 source3/rpcclient/cmd_spoolss.c 	uint32_t level = 1, count, i;
count            2602 source3/rpcclient/cmd_spoolss.c 					 &count,
count            2608 source3/rpcclient/cmd_spoolss.c 	for (i = 0; i < count; i++) {
count            2863 source3/rpcclient/cmd_spoolss.c 	uint32_t count;
count            2889 source3/rpcclient/cmd_spoolss.c 						  &count,
count            2895 source3/rpcclient/cmd_spoolss.c 	for (i=0; i < count; i++) {
count            3007 source3/rpcclient/cmd_spoolss.c 	option.count = 2;
count            3016 source3/rpcclient/cmd_spoolss.c 	option.types[0].count = 1;
count            3025 source3/rpcclient/cmd_spoolss.c 	option.types[1].count = 1;
count            3390 source3/rpcclient/cmd_spoolss.c 	uint32_t count, level = 1, i;
count            3410 source3/rpcclient/cmd_spoolss.c 					     &count,
count            3418 source3/rpcclient/cmd_spoolss.c 	for (i = 0; i < count; i++) {
count             154 source3/rpcclient/cmd_wkssvc.c 		for (i = 0; i < ctr->count; i++) {
count              51 source3/rpcclient/rpcclient.c 	int i, count=0;
count              72 source3/rpcclient/rpcclient.c 	matches[count++] = SMB_STRDUP(text);
count              78 source3/rpcclient/rpcclient.c 	while (commands && count < MAX_COMPLETIONS-1) {
count              89 source3/rpcclient/rpcclient.c 				matches[count] = SMB_STRDUP(commands->cmd_set[i].name);
count              90 source3/rpcclient/rpcclient.c 				if (!matches[count]) {
count              91 source3/rpcclient/rpcclient.c 					for (i = 0; i < count; i++) {
count              92 source3/rpcclient/rpcclient.c 						SAFE_FREE(matches[count]);
count              97 source3/rpcclient/rpcclient.c 				count++;
count             104 source3/rpcclient/rpcclient.c 	if (count == 2) {
count             108 source3/rpcclient/rpcclient.c 	matches[count] = NULL;
count             550 source3/smbd/aio.c 				    int signum, int count,
count             135 source3/smbd/blocking.c 		uint64_t count,
count             174 source3/smbd/blocking.c 	blr->count = count;
count             185 source3/smbd/blocking.c 			count,
count             264 source3/smbd/blocking.c 			fsp->last_lock_failure.size = blr->count;
count             288 source3/smbd/blocking.c 	uint64_t count = (uint64_t)0, offset = (uint64_t) 0;
count             313 source3/smbd/blocking.c 		count = get_lock_count( data, i, large_file_format);
count             324 source3/smbd/blocking.c 			count,
count             380 source3/smbd/blocking.c 	uint64_t count = (uint64_t)0, offset = (uint64_t)0;
count             399 source3/smbd/blocking.c 		count = get_lock_count( data, blr->lock_num, large_file_format);
count             410 source3/smbd/blocking.c 				count,
count             473 source3/smbd/blocking.c 						blr->count,
count             552 source3/smbd/blocking.c 				     blr->count,
count             563 source3/smbd/blocking.c 				blr->count,
count             604 source3/smbd/blocking.c 					blr->count,
count             685 source3/smbd/blocking.c 					blr->count,
count             723 source3/smbd/blocking.c 					blr->count,
count             786 source3/smbd/blocking.c 			uint64_t count,
count             807 source3/smbd/blocking.c 				count == blr->count &&
count             327 source3/smbd/chgpasswd.c 	int count = 0;
count             339 source3/smbd/chgpasswd.c 		count++;
count             342 source3/smbd/chgpasswd.c 			DEBUG(3, ("Response %d incorrect\n", count));
count             370 source3/smbd/chgpasswd.c 	return (count > 0);
count              67 source3/smbd/conn.c 	int count=0;
count              70 source3/smbd/conn.c 	for (conn=Connections;conn;conn=conn->next,count++) {
count              72 source3/smbd/conn.c 			if (count > 10) {
count             215 source3/smbd/conn.c 		if (plist->pipe_handles && plist->pipe_handles->count) {
count             235 source3/smbd/files.c 	int count=0;
count             238 source3/smbd/files.c 	for (fsp=Files;fsp;fsp=fsp->next,count++) {
count             240 source3/smbd/files.c 			count, fsp->fnum, fsp->fsp_name, fsp->fh->fd, (unsigned long)fsp->fh->gen_id,
count             251 source3/smbd/files.c 	int count=0;
count             254 source3/smbd/files.c 	for (fsp=Files;fsp;fsp=fsp->next,count++) {
count             256 source3/smbd/files.c 			if (count > 10) {
count             272 source3/smbd/files.c 	int count=0;
count             275 source3/smbd/files.c 	for (fsp=Files;fsp;fsp=fsp->next,count++) {
count             279 source3/smbd/files.c 			if (count > 10) {
count             508 source3/smbd/files.c 	int count=0;
count             510 source3/smbd/files.c 	for (fsp=Files;fsp;fsp=fsp->next, count++) {
count             512 source3/smbd/files.c 			if (count > 10) {
count             269 source3/smbd/lanman.c static bool init_package(struct pack_desc *p, int count, int subcount)
count             278 source3/smbd/lanman.c 	i = count * getlen(p->format);
count             644 source3/smbd/lanman.c 				struct pack_desc* desc,	int count )
count             692 source3/smbd/lanman.c 	PACKI(desc,"N",count);                     /* number of files to copy */
count             694 source3/smbd/lanman.c 	for ( i=0; i<count && driver.info_3->dependentfiles && *driver.info_3->dependentfiles[i]; i++) 
count             702 source3/smbd/lanman.c 	if ( i != count )
count             704 source3/smbd/lanman.c 			count, i));
count             726 source3/smbd/lanman.c  			     int count, print_queue_struct* queue,
count             764 source3/smbd/lanman.c 		PACKI(desc,(uLevel == 1 ? "W" : "N"),count);
count             785 source3/smbd/lanman.c 		PACKI(desc,(uLevel == 3 ? "W" : "N"),count);	/* cJobs */
count             797 source3/smbd/lanman.c 		for (i=0;i<count;i++)
count             802 source3/smbd/lanman.c 		fill_printq_info_52( conn, snum, desc, count );
count             854 source3/smbd/lanman.c 	int count=0;
count             908 source3/smbd/lanman.c 		count = get_printerdrivernumber(snum);
count             909 source3/smbd/lanman.c 		DEBUG(3,("api_DosPrintQGetInfo: Driver files count: %d\n",count));
count             911 source3/smbd/lanman.c 		count = print_queue_status(snum, &queue,&status);
count             931 source3/smbd/lanman.c 	if (init_package(&desc,1,count)) {
count             932 source3/smbd/lanman.c 		desc.subcount = count;
count             933 source3/smbd/lanman.c 		fill_printq_info(conn,snum,uLevel,&desc,count,queue,&status);
count            1151 source3/smbd/lanman.c 	int count=0;
count            1184 source3/smbd/lanman.c 		if (count == alloced) {
count            1192 source3/smbd/lanman.c 			memset((char *)((*servers)+count),'\0',sizeof(**servers)*(alloced-count));
count            1194 source3/smbd/lanman.c 		s = &(*servers)[count];
count            1264 source3/smbd/lanman.c 			count++;
count            1272 source3/smbd/lanman.c 	return count;
count            1787 source3/smbd/lanman.c 	int count = 0;
count            1808 source3/smbd/lanman.c 	count = load_usershare_shares();
count            1812 source3/smbd/lanman.c 	for (i=0;i<count;i++) {
count            1843 source3/smbd/lanman.c 	for( i = 0; i < count; i++ ) {
count            2197 source3/smbd/lanman.c 	int count=0;
count            2309 source3/smbd/lanman.c 	for (i=0; i<rids->count; i++) {
count            2315 source3/smbd/lanman.c 		if (NT_STATUS_IS_OK(status) && (names.count == 1)) {
count            2318 source3/smbd/lanman.c 			count++;
count            2324 source3/smbd/lanman.c 	SSVAL(*rparam,4,count);	/* is this right?? */
count            2325 source3/smbd/lanman.c 	SSVAL(*rparam,6,count);	/* is this right?? */
count            3095 source3/smbd/lanman.c 		int i,count;
count            3105 source3/smbd/lanman.c 		if ((count=get_server_info(SV_TYPE_ALL,&servers,lp_workgroup()))>0) {
count            3106 source3/smbd/lanman.c 			for (i=0;i<count;i++) {
count            3865 source3/smbd/lanman.c 	int count;
count            3903 source3/smbd/lanman.c 	count = print_queue_status(snum,&queue,&status);
count            3904 source3/smbd/lanman.c 	for (i = 0; i < count; i++) {
count            3927 source3/smbd/lanman.c 		if (i < count) {
count            3965 source3/smbd/lanman.c 	int count;
count            4005 source3/smbd/lanman.c 	count = print_queue_status(snum,&queue,&status);
count            4015 source3/smbd/lanman.c 	if (init_package(&desc,count,0)) {
count            4017 source3/smbd/lanman.c 		for (i = 0; i < count; i++) {
count            4035 source3/smbd/lanman.c 	SSVAL(*rparam,6,count);
count             333 source3/smbd/msdfs.c 	int count = 0, i;
count             353 source3/smbd/msdfs.c 	while((count<MAX_REFERRAL_COUNT) &&
count             354 source3/smbd/msdfs.c 	      ((alt_path[count] = strtok_r(NULL, ",", &saveptr)) != NULL)) {
count             355 source3/smbd/msdfs.c 		count++;
count             358 source3/smbd/msdfs.c 	DEBUG(10,("parse_msdfs_symlink: count=%d\n", count));
count             360 source3/smbd/msdfs.c 	if (count) {
count             362 source3/smbd/msdfs.c 				struct referral, count);
count             371 source3/smbd/msdfs.c 	for(i=0;i<count;i++) {
count             397 source3/smbd/msdfs.c 	*refcount = count;
count              93 source3/smbd/oplock_linux.c 					int signum, int count,
count              32 source3/smbd/password.c 	int count=0;
count              37 source3/smbd/password.c 	for (usp=validated_users;usp;usp=usp->next,count++) {
count              52 source3/smbd/password.c 			if (count > 10) {
count             725 source3/smbd/posix_acls.c 	size_t count = 0;
count             729 source3/smbd/posix_acls.c 		count++;
count             731 source3/smbd/posix_acls.c 	return count;
count             815 source3/smbd/posix_acls.c 	int count = 0;
count             819 source3/smbd/posix_acls.c 		for (;ace_list; ace_list = ace_list->next, count++)
count             820 source3/smbd/posix_acls.c 			print_canon_ace(ace_list, count );
count             727 source3/smbd/process.c 				  int count,
count             751 source3/smbd/process.c 				  int count,
count             846 source3/smbd/process.c 	int count = 0;
count             853 source3/smbd/process.c 		count += 1;
count             855 source3/smbd/process.c 	if (count > 5) {
count            2422 source3/smbd/reply.c 	int count=0;
count            2487 source3/smbd/reply.c 		count++;
count            2557 source3/smbd/reply.c 			count++;
count            2566 source3/smbd/reply.c 	if (count == 0 && NT_STATUS_IS_OK(status) && errno != 0) {
count            4617 source3/smbd/reply.c 	uint64_t count,offset;
count            4637 source3/smbd/reply.c 	count = (uint64_t)IVAL(req->vwv+1, 0);
count            4641 source3/smbd/reply.c 		 fsp->fh->fd, fsp->fnum, (double)offset, (double)count));
count            4646 source3/smbd/reply.c 			count,
count            4676 source3/smbd/reply.c 	uint64_t count,offset;
count            4695 source3/smbd/reply.c 	count = (uint64_t)IVAL(req->vwv+1, 0);
count            4701 source3/smbd/reply.c 			count,
count            4712 source3/smbd/reply.c 		    fsp->fh->fd, fsp->fnum, (double)offset, (double)count ) );
count            4957 source3/smbd/reply.c 		int count = print_queue_status(SNUM(conn), &queue, &status);
count            4962 source3/smbd/reply.c 		if (first >= count)
count            4965 source3/smbd/reply.c 			num_to_get = MIN(num_to_get,count-first);
count            4990 source3/smbd/reply.c 		if (count > 0) {
count            4991 source3/smbd/reply.c 			SSVAL(req->outbuf,smb_vwv0,count);
count            4993 source3/smbd/reply.c 			      (max_count>0?first+count:first-1));
count            4995 source3/smbd/reply.c 			SSVAL(smb_buf(req->outbuf),1,28*count);
count            5000 source3/smbd/reply.c 		DEBUG(3,("%d entries returned in queue\n",count));
count            5876 source3/smbd/reply.c 	int count=0;
count            6164 source3/smbd/reply.c 		count++;
count            6174 source3/smbd/reply.c 	if (count == 0 && NT_STATUS_IS_OK(status) && errno != 0) {
count            6292 source3/smbd/reply.c 			int count,
count            6327 source3/smbd/reply.c 	if (!target_is_directory && count) {
count            6444 source3/smbd/reply.c 	int count=0;
count            6632 source3/smbd/reply.c 				count,target_is_directory);
count            6639 source3/smbd/reply.c 			count++;
count            6725 source3/smbd/reply.c 					count,target_is_directory);
count            6727 source3/smbd/reply.c 				count++;
count            6735 source3/smbd/reply.c 	if (count == 0) {
count            6750 source3/smbd/reply.c 	SSVAL(req->outbuf,smb_vwv0,count);
count            6779 source3/smbd/reply.c 	uint64_t count = 0;
count            6782 source3/smbd/reply.c 		count = (uint64_t)IVAL(data,SMB_LKLEN_OFFSET(data_offset));
count            6786 source3/smbd/reply.c 		count = (((uint64_t) IVAL(data,SMB_LARGE_LKLEN_OFFSET_HIGH(data_offset))) << 32) |
count            6804 source3/smbd/reply.c 		count = (uint64_t)IVAL(data,SMB_LARGE_LKLEN_OFFSET_LOW(data_offset));
count            6808 source3/smbd/reply.c 	return count;
count            6907 source3/smbd/reply.c 	uint64_t count = 0, offset = 0;
count            7031 source3/smbd/reply.c 		count = get_lock_count( data, i, large_file_format);
count            7044 source3/smbd/reply.c 			  "pid %u, file %s\n", (double)offset, (double)count,
count            7050 source3/smbd/reply.c 				count,
count            7080 source3/smbd/reply.c 		count = get_lock_count( data, i, large_file_format);
count            7094 source3/smbd/reply.c 			  (double)count, (unsigned int)lock_pid,
count            7109 source3/smbd/reply.c 						count,
count            7126 source3/smbd/reply.c 						count,
count            7139 source3/smbd/reply.c 					count,
count            7183 source3/smbd/reply.c 							count,
count            7214 source3/smbd/reply.c 			count = get_lock_count( data, i, large_file_format);
count            7231 source3/smbd/reply.c 				count,
count             258 source3/smbd/server.c 				  int count,
count             281 source3/smbd/session.c 	int count;
count             293 source3/smbd/session.c 		sesslist->count+1);
count             296 source3/smbd/session.c 		sesslist->count = 0;
count             300 source3/smbd/session.c 	memcpy(&sesslist->sessions[sesslist->count], current,
count             303 source3/smbd/session.c 	sesslist->count++;
count             319 source3/smbd/session.c 	sesslist.count = 0;
count             330 source3/smbd/session.c 	return sesslist.count;
count            4729 source3/smbd/trans2.c 			uint64_t count;
count            4760 source3/smbd/trans2.c 			count = (((uint64_t) IVAL(pdata,(POSIX_LOCK_LEN_OFFSET+4))) << 32) |
count            4764 source3/smbd/trans2.c 			count = (uint64_t)IVAL(pdata,POSIX_LOCK_LEN_OFFSET);
count            4769 source3/smbd/trans2.c 					&count,
count            4784 source3/smbd/trans2.c 				SIVAL(pdata, POSIX_LOCK_LEN_OFFSET, (uint32)(count & 0xFFFFFFFF));
count            4785 source3/smbd/trans2.c 				SIVAL(pdata, POSIX_LOCK_LEN_OFFSET + 4, (uint32)((count >> 32) & 0xFFFFFFFF));
count            4788 source3/smbd/trans2.c 				SIVAL(pdata, POSIX_LOCK_LEN_OFFSET, count);
count            5549 source3/smbd/trans2.c 	uint64_t count;
count            5599 source3/smbd/trans2.c 	count = (((uint64_t) IVAL(pdata,(POSIX_LOCK_LEN_OFFSET+4))) << 32) |
count            5603 source3/smbd/trans2.c 	count = (uint64_t)IVAL(pdata,POSIX_LOCK_LEN_OFFSET);
count            5611 source3/smbd/trans2.c 		(double)count,
count            5618 source3/smbd/trans2.c 				count,
count            5627 source3/smbd/trans2.c 							count,
count            5651 source3/smbd/trans2.c 						count,
count             880 source3/torture/cmd_vfs.c 	long count;
count             921 source3/torture/cmd_vfs.c 	if (sscanf(argv[4], "%ld", &count) == 0) {
count             946 source3/torture/cmd_vfs.c 	printf("lock: debug lock(fd=%d, op=%d, offset=%ld, count=%ld, type=%d))\n", fd, op, offset, count, type);
count             948 source3/torture/cmd_vfs.c 	if (SMB_VFS_LOCK(vfs->files[fd], op, offset, count, type) == False) {
count             168 source3/torture/locktest.c 	static int count;
count             181 source3/torture/locktest.c 	slprintf(myname,sizeof(myname), "lock-%lu-%u", (unsigned long)getpid(), count++);
count             165 source3/torture/locktest2.c 	static int count;
count             183 source3/torture/locktest2.c 	slprintf(myname,sizeof(myname), "lock-%lu-%u", (unsigned long)getpid(), count++);
count             317 source3/torture/masktest.c 	static int count;
count             321 source3/torture/masktest.c 	count++;
count             349 source3/torture/masktest.c 			 res1, res2, count, mask, file, long_name, short_name));
count             355 source3/torture/masktest.c 	if (count % 100 == 0) DEBUG(0,("%d\n", count));
count              34 source3/torture/t_push_ucs2.c 	int count = 1;
count              47 source3/torture/t_push_ucs2.c 		count = atoi(argv[2]);
count              49 source3/torture/t_push_ucs2.c 	for (i = 0; ((i < count) && (!ret)); i++)
count             531 source3/torture/torture.c 	unsigned count;
count             568 source3/torture/torture.c 	for (count = 0; count < sizeof(buf); count += sent)
count             570 source3/torture/torture.c 		if (count >= countprev) {
count             571 source3/torture/torture.c 			printf("%d %8d\r", i, count);
count             580 source3/torture/torture.c 			if (sent > sizeof(buf) - count)
count             582 source3/torture/torture.c 				sent = sizeof(buf) - count;
count             585 source3/torture/torture.c 			if (cli_write(c, fnum, 0, buf+count, count, (size_t)sent) != sent) {
count             592 source3/torture/torture.c 			sent = cli_read(c, fnum, buf_rd+count, count,
count             593 source3/torture/torture.c 						  sizeof(buf)-count);
count             597 source3/torture/torture.c 				       count, (unsigned long)sizeof(buf)-count,
count             604 source3/torture/torture.c 				if (memcmp(buf_rd+count, buf+count, sent) != 0)
count             607 source3/torture/torture.c 					printf("offset: %d req %ld recvd %ld\n", count, (unsigned long)sizeof(buf)-count, (unsigned long)sent);
count            2382 source3/torture/torture.c 	int count = 50000;
count            2390 source3/torture/torture.c 	for (i=0;i<count;i++) {
count            2404 source3/torture/torture.c 			printf("%d/%d\r", i,count);
count            2407 source3/torture/torture.c 	printf("%d/%d\n", i, count);
count              47 source3/torture/vfstest.c 	int i, count=0;
count              60 source3/torture/vfstest.c 	matches[count++] = SMB_STRDUP(text);
count              63 source3/torture/vfstest.c 	while (commands && count < MAX_COMPLETIONS-1) 
count              73 source3/torture/vfstest.c 				matches[count] = SMB_STRDUP(commands->cmd_set[i].name);
count              74 source3/torture/vfstest.c 				if (!matches[count]) 
count              76 source3/torture/vfstest.c 				count++;
count              84 source3/torture/vfstest.c 	if (count == 2) {
count              88 source3/torture/vfstest.c 	matches[count] = NULL;
count             200 source3/utils/dbwrap_tool.c 	uint16_t count;
count             313 source3/utils/dbwrap_tool.c 	for (count = 0; dispatch_table[count].cmd != NULL; count++) {
count             314 source3/utils/dbwrap_tool.c 		if ((op == dispatch_table[count].op) &&
count             315 source3/utils/dbwrap_tool.c 		    (type == dispatch_table[count].type))
count             317 source3/utils/dbwrap_tool.c 			ret = dispatch_table[count].cmd(db, keyname, &value);
count             171 source3/utils/eventlogadm.c 	uint32_t count = 1;
count             180 source3/utils/eventlogadm.c 		count = atoi(argv[1]);
count             194 source3/utils/eventlogadm.c 		r = evlog_pull_record_tdb(mem_ctx, etdb->tdb, count);
count             199 source3/utils/eventlogadm.c 		printf("displaying record: %d\n", count);
count             206 source3/utils/eventlogadm.c 		count++;
count             441 source3/utils/net_conf.c 	uint32_t count, num_shares = 0;
count             458 source3/utils/net_conf.c 	for (count = 0; count < num_shares; count++)
count             460 source3/utils/net_conf.c 		d_printf("%s\n", share_names[count]);
count             502 source3/utils/net_conf.c 	uint32_t count;
count             527 source3/utils/net_conf.c 	for (count = 0; count < service->num_params; count++) {
count             528 source3/utils/net_conf.c 		d_printf("\t%s = %s\n", service->param_names[count],
count             529 source3/utils/net_conf.c 			 service->param_values[count]);
count             938 source3/utils/net_conf.c 	uint32_t count;
count             962 source3/utils/net_conf.c 	for (count = 0; count < num_includes; count++) {
count             963 source3/utils/net_conf.c 		d_printf("include = %s\n", includes[count]);
count             150 source3/utils/net_dns.c 	int count = 0;
count             176 source3/utils/net_dns.c 		memcpy(&list[count++], nic_sa_storage, sizeof(struct sockaddr_storage));
count             180 source3/utils/net_dns.c 	return count;
count             181 source3/utils/net_lookup.c 	int count, i;
count             206 source3/utils/net_lookup.c 					&ip_list, &count, sec_ads))) {
count             212 source3/utils/net_lookup.c 	for (i=0;i<count;i++) {
count             126 source3/utils/net_registry.c 	uint32_t count;
count             144 source3/utils/net_registry.c 	for (count = 0;
count             145 source3/utils/net_registry.c 	     werr = reg_enumkey(ctx, key, count, &subkey_name, &modtime),
count             147 source3/utils/net_registry.c 	     count++)
count             155 source3/utils/net_registry.c 	for (count = 0;
count             156 source3/utils/net_registry.c 	     werr = reg_enumvalue(ctx, key, count, &valname, &valvalue),
count             158 source3/utils/net_registry.c 	     count++)
count            1468 source3/utils/net_rpc.c 				argv[0],group_rid, rids->count);
count            1472 source3/utils/net_rpc.c                 for (i = 0; i < rids->count; i++)
count            1516 source3/utils/net_rpc.c 		for (i = 0; i < rids->count; i++)
count            2220 source3/utils/net_rpc.c 		num_entries = info.info3.count;
count            2221 source3/utils/net_rpc.c 		start_idx += info.info3.count;
count            2396 source3/utils/net_rpc.c 	num_members = rids->count;
count            2617 source3/utils/net_rpc.c 	if (rids.count != 1) {
count            2942 source3/utils/net_rpc.c 		ctr1->count = 1;
count            2954 source3/utils/net_rpc.c 		ctr2->count = 1;
count            2966 source3/utils/net_rpc.c 		ctr502->count = 1;
count            3105 source3/utils/net_rpc.c 	for (i = 0; i < ctr_src.ctr.ctr502->count; i++) {
count            3406 source3/utils/net_rpc.c 	for (i = 0; i < ctr_src.ctr.ctr502->count; i++) {
count            3556 source3/utils/net_rpc.c 	for (i = 0; i < ctr_src.ctr.ctr502->count; i++) {
count            5903 source3/utils/net_rpc.c 		for (i = 0; i < dom_list.count; i++) {
count            5922 source3/utils/net_rpc.c 		if (!dom_list.count) d_printf("none\n");
count            6059 source3/utils/net_rpc.c 		for (i = 0; i < dom_list.count; i++) {
count            6068 source3/utils/net_rpc.c 		if (!dom_list.count) d_printf("none\n");
count             107 source3/utils/net_rpc_audit.c 	for (i=0; i < info->audit_events.count; i++) {
count             346 source3/utils/net_rpc_audit.c 	printf("Auditing categories:\t%d\n", info->audit_events.count);
count             349 source3/utils/net_rpc_audit.c 	for (i=0; i < info->audit_events.count; i++) {
count             862 source3/utils/net_rpc_printer.c 					uint32_t *count,
count             872 source3/utils/net_rpc_printer.c 						  count,
count             938 source3/utils/net_rpc_printer.c 					uint32_t *count,
count             949 source3/utils/net_rpc_printer.c 						   count,
count            2369 source3/utils/net_rpc_printer.c 			uint32_t count;
count            2375 source3/utils/net_rpc_printer.c 							   &count, &info)) {
count            2379 source3/utils/net_rpc_printer.c 			for (j=0; j < count; j++) {
count             116 source3/utils/net_rpc_rights.c 	for (i = 0; i < priv_array.count; i++) {
count             168 source3/utils/net_rpc_rights.c 	if (rights.count == 0) {
count             172 source3/utils/net_rpc_rights.c 	for (i = 0; i < rights.count; i++) {
count             201 source3/utils/net_rpc_rights.c 	if (rights.count == 0) {
count             205 source3/utils/net_rpc_rights.c 	for (i = 0; i < rights.count; i++) {
count             465 source3/utils/net_rpc_rights.c 	rights.count = argc-1;
count             467 source3/utils/net_rpc_rights.c 				    rights.count);
count             531 source3/utils/net_rpc_rights.c 	rights.count = argc-1;
count             533 source3/utils/net_rpc_rights.c 				    rights.count);
count             484 source3/utils/net_sam.c                 int i, count;
count             486 source3/utils/net_sam.c                 account_policy_names_list(&names, &count);
count             490 source3/utils/net_sam.c 		for (i=0; i<count; i++) {
count             535 source3/utils/net_sam.c 		int count;
count             537 source3/utils/net_sam.c                 account_policy_names_list(&names, &count);
count             539 source3/utils/net_sam.c                 if (count != 0) {
count             542 source3/utils/net_sam.c 			for (i=0; i<count; i++) {
count             566 source3/utils/net_sam.c 	int count;
count             576 source3/utils/net_sam.c 	account_policy_names_list(&names, &count);
count             577 source3/utils/net_sam.c         if (count != 0) {
count             580 source3/utils/net_sam.c 		for (i = 0; i < count ; i++) {
count             116 source3/utils/nmblookup.c 	int count, i, j;
count             125 source3/utils/nmblookup.c 	status = node_status_query(fd, &nname, pss, &count, &extra);
count             127 source3/utils/nmblookup.c 		for (i=0;i<count;i++) {
count             156 source3/utils/nmblookup.c 	int j, count, flags = 0;
count             165 source3/utils/nmblookup.c 				     &bcast_addr, &count, &flags, NULL);
count             185 source3/utils/nmblookup.c 					     &bcast_ss,&count, &flags, NULL);
count             197 source3/utils/nmblookup.c 	for (j=0;j<count;j++) {
count            1111 source3/utils/pdbedit.c 			int count;
count            1113 source3/utils/pdbedit.c 			account_policy_names_list(&names, &count);
count            1115 source3/utils/pdbedit.c 			if (count !=0) {
count            1117 source3/utils/pdbedit.c 				for (i = 0; i < count ; i++) {
count             184 source3/utils/smbcontrol.c static void print_stack_trace(pid_t pid, int * count)
count             222 source3/utils/smbcontrol.c 	if (*count > 0) {
count             248 source3/utils/smbcontrol.c 	(*count)++;
count             277 source3/utils/smbcontrol.c 	int	count = 0;
count             292 source3/utils/smbcontrol.c 		print_stack_trace(dest, &count);
count             294 source3/utils/smbcontrol.c 		connections_forall(stack_trace_connection, &count);
count             108 source3/utils/status.c 	static int count;
count             118 source3/utils/status.c 	if (count==0) {
count             123 source3/utils/status.c 	count++;
count             180 source3/utils/status.c 	static int count;
count             197 source3/utils/status.c 	if (count==0) {
count             202 source3/utils/status.c 	count++;
count             429 source3/utils/status_profile.c 	int count = 0;
count             444 source3/utils/status_profile.c 		step = current->count[i] - last->count[i];
count             448 source3/utils/status_profile.c 			++count;
count             466 source3/utils/status_profile.c 	return count;
count              38 source3/web/diagnose.c 	int fd, count, flags;
count              49 source3/web/diagnose.c 					  &count, &flags, NULL)) != NULL) {
count              71 source3/web/neg_lang.c 	char **lang_list, **count;
count              81 source3/web/neg_lang.c 	count = lang_list;
count              82 source3/web/neg_lang.c 	while (*count && **count) {
count              83 source3/web/neg_lang.c 		count++;
count             302 source3/winbindd/idmap_ad.c 	int count;
count             397 source3/winbindd/idmap_ad.c 	if ( (count = ads_count_replies(ctx->ads, res)) == 0 ) {
count             402 source3/winbindd/idmap_ad.c 	for (i = 0; (i < count) && entry; i++) {
count             520 source3/winbindd/idmap_ad.c 	int count;
count             590 source3/winbindd/idmap_ad.c 	if ( (count = ads_count_replies(ctx->ads, res)) == 0 ) {
count             595 source3/winbindd/idmap_ad.c 	for (i = 0; (i < count) && entry; i++) {
count             754 source3/winbindd/idmap_adex/gc_util.c 	int count = *size;
count             769 source3/winbindd/idmap_adex/gc_util.c 	if (count == 0) {
count             777 source3/winbindd/idmap_adex/gc_util.c 					       count+1);
count             781 source3/winbindd/idmap_adex/gc_util.c 					       count+1);
count             785 source3/winbindd/idmap_adex/gc_util.c 	ads_tmp[count] = ads;
count             786 source3/winbindd/idmap_adex/gc_util.c 	msg_tmp[count] = msg;
count             787 source3/winbindd/idmap_adex/gc_util.c 	count++;
count             791 source3/winbindd/idmap_adex/gc_util.c 	*size = count;
count             830 source3/winbindd/idmap_adex/gc_util.c 	int count;
count             832 source3/winbindd/idmap_adex/gc_util.c 	count = ads_count_replies(ads, msg);
count             834 source3/winbindd/idmap_adex/gc_util.c 	if (count <= 0) {
count             839 source3/winbindd/idmap_adex/gc_util.c 	if (count > 1) {
count             182 source3/winbindd/idmap_adex/provider_unified.c 	int count;
count             221 source3/winbindd/idmap_adex/provider_unified.c 	count = ads_count_replies(c->conn, *msg);
count             222 source3/winbindd/idmap_adex/provider_unified.c 	if (count < 1) {
count             227 source3/winbindd/idmap_adex/provider_unified.c 	if ( count > 1) {
count             251 source3/winbindd/idmap_adex/provider_unified.c 	int count;
count             258 source3/winbindd/idmap_adex/provider_unified.c 	count = ads_count_replies(cell_connection(*cell), *msg);
count             259 source3/winbindd/idmap_adex/provider_unified.c 	if (count < 1) {
count             264 source3/winbindd/idmap_adex/provider_unified.c 	if ( count > 1) {
count             349 source3/winbindd/idmap_adex/provider_unified.c 	int count = 0;
count             375 source3/winbindd/idmap_adex/provider_unified.c 				count++;
count             380 source3/winbindd/idmap_adex/provider_unified.c 				if (count > 1) {
count             163 source3/winbindd/idmap_ldap.c 	int count;
count             196 source3/winbindd/idmap_ldap.c 	count = ldap_count_entries(idmap_alloc_ldap->smbldap_state->ldap_struct,
count             201 source3/winbindd/idmap_ldap.c 	if ( count > 1 ) {
count             207 source3/winbindd/idmap_ldap.c 	else if (count == 0) {
count             361 source3/winbindd/idmap_ldap.c 	int count = 0;
count             425 source3/winbindd/idmap_ldap.c 	count = ldap_count_entries(idmap_alloc_ldap->smbldap_state->ldap_struct,
count             427 source3/winbindd/idmap_ldap.c 	if (count != 1) {
count             523 source3/winbindd/idmap_ldap.c 	int count = 0;
count             582 source3/winbindd/idmap_ldap.c 	count = ldap_count_entries(idmap_alloc_ldap->smbldap_state->ldap_struct,
count             584 source3/winbindd/idmap_ldap.c 	if (count != 1) {
count             620 source3/winbindd/idmap_ldap.c 	int count = 0;
count             681 source3/winbindd/idmap_ldap.c 	count = ldap_count_entries(idmap_alloc_ldap->smbldap_state->ldap_struct,
count             683 source3/winbindd/idmap_ldap.c 	if (count != 1) {
count             942 source3/winbindd/idmap_ldap.c 	int count;
count            1015 source3/winbindd/idmap_ldap.c 	count = ldap_count_entries(ctx->smbldap_state->ldap_struct, result);
count            1017 source3/winbindd/idmap_ldap.c 	if (count == 0) {
count            1021 source3/winbindd/idmap_ldap.c 	for (i = 0; i < count; i++) {
count            1174 source3/winbindd/idmap_ldap.c 	int count;
count            1249 source3/winbindd/idmap_ldap.c 	count = ldap_count_entries(ctx->smbldap_state->ldap_struct, result);
count            1251 source3/winbindd/idmap_ldap.c 	if (count == 0) {
count            1255 source3/winbindd/idmap_ldap.c 	for (i = 0; i < count; i++) {
count             206 source3/winbindd/winbindd.c 				      int count,
count             268 source3/winbindd/winbindd.c 				     int count,
count             307 source3/winbindd/winbindd.c 				      int count,
count             337 source3/winbindd/winbindd.c 				      int count,
count             160 source3/winbindd/winbindd_ads.c 	int i, count;
count             189 source3/winbindd/winbindd_ads.c 	count = ads_count_replies(ads, res);
count             190 source3/winbindd/winbindd_ads.c 	if (count == 0) {
count             195 source3/winbindd/winbindd_ads.c 	(*info) = TALLOC_ZERO_ARRAY(mem_ctx, WINBIND_USERINFO, count);
count             270 source3/winbindd/winbindd_ads.c 	int i, count;
count             333 source3/winbindd/winbindd_ads.c 	count = ads_count_replies(ads, res);
count             334 source3/winbindd/winbindd_ads.c 	if (count == 0) {
count             339 source3/winbindd/winbindd_ads.c 	(*info) = TALLOC_ZERO_ARRAY(mem_ctx, struct acct_info, count);
count             459 source3/winbindd/winbindd_ads.c 	int count;
count             541 source3/winbindd/winbindd_ads.c 	count = ads_count_replies(ads, msg);
count             542 source3/winbindd/winbindd_ads.c 	if (count != 1) {
count             587 source3/winbindd/winbindd_ads.c 	int count;
count             637 source3/winbindd/winbindd_ads.c 	count = ads_count_replies(ads, res);
count             649 source3/winbindd/winbindd_ads.c 	if (count > 0) {
count             807 source3/winbindd/winbindd_ads.c 	int count;
count             852 source3/winbindd/winbindd_ads.c 	count = ads_count_replies(ads, msg);
count             853 source3/winbindd/winbindd_ads.c 	if (count != 1) {
count             857 source3/winbindd/winbindd_ads.c 			 sid_string_dbg(sid), count));
count             883 source3/winbindd/winbindd_ads.c 	count = ads_pull_sids(ads, mem_ctx, msg, "tokenGroups", &sids);
count             891 source3/winbindd/winbindd_ads.c 	if (count == 0) {
count             925 source3/winbindd/winbindd_ads.c 	for (i=0;i<count;i++) {
count            1305 source3/winbindd/winbindd_ads.c 	if ( NT_STATUS_IS_OK(result) && trusts.count) {
count            1309 source3/winbindd/winbindd_ads.c 		if ( !(*names = TALLOC_ARRAY(mem_ctx, char *, trusts.count)) ) {
count            1314 source3/winbindd/winbindd_ads.c 		if ( !(*alt_names = TALLOC_ARRAY(mem_ctx, char *, trusts.count)) ) {
count            1319 source3/winbindd/winbindd_ads.c 		if ( !(*dom_sids = TALLOC_ARRAY(mem_ctx, DOM_SID, trusts.count)) ) {
count            1328 source3/winbindd/winbindd_ads.c 		for (i = 0; i < trusts.count; i++) {
count            2923 source3/winbindd/winbindd_cache.c NTSTATUS wcache_count_cached_creds(struct winbindd_domain *domain, int *count)
count            2927 source3/winbindd/winbindd_cache.c 	*count = 0;
count            2933 source3/winbindd/winbindd_cache.c 	tdb_traverse(cache->tdb, traverse_fn_cached_creds, (void *)count);
count            1732 source3/winbindd/winbindd_cm.c 	for ( i=0; i<trusts.count; i++ ) {
count              97 source3/winbindd/winbindd_creds.c 		int count = 0;
count              99 source3/winbindd/winbindd_creds.c 		status = wcache_count_cached_creds(domain, &count);
count             104 source3/winbindd/winbindd_creds.c 		DEBUG(11,("we have %d cached creds\n", count));
count             106 source3/winbindd/winbindd_creds.c 		if (count + 1 > MAX_CACHED_LOGINS) {
count              60 source3/winbindd/winbindd_pam.c 	state->response.data.auth.info3.num_groups = info3->base.groups.count;
count              87 source3/winbindd/winbindd_pam.c 	for (i=0; i < info3->base.groups.count; i++) {
count             192 source3/winbindd/winbindd_proto.h NTSTATUS wcache_count_cached_creds(struct winbindd_domain *domain, int *count);
count              85 source3/winbindd/winbindd_rpc.c 		num_dom_users = disp_info.info1.count;
count              86 source3/winbindd/winbindd_rpc.c 		start_idx += disp_info.info1.count;
count             155 source3/winbindd/winbindd_rpc.c 		uint32 count = 0;
count             167 source3/winbindd/winbindd_rpc.c 						      &count);
count             177 source3/winbindd/winbindd_rpc.c 					       (*num_entries) + count);
count             183 source3/winbindd/winbindd_rpc.c 		for (g=0; g < count; g++) {
count             190 source3/winbindd/winbindd_rpc.c 		(*num_entries) += count;
count             225 source3/winbindd/winbindd_rpc.c 		uint32 count = 0, start = *num_entries;
count             236 source3/winbindd/winbindd_rpc.c 						       &count);
count             246 source3/winbindd/winbindd_rpc.c 					       (*num_entries) + count);
count             252 source3/winbindd/winbindd_rpc.c 		for (g=0; g < count; g++) {
count             259 source3/winbindd/winbindd_rpc.c 		(*num_entries) += count;
count             607 source3/winbindd/winbindd_rpc.c 	*num_groups = rid_array->count;
count             704 source3/winbindd/winbindd_rpc.c 		for (i=0; i<alias_rids_query.count; i++) {
count             792 source3/winbindd/winbindd_rpc.c 	if (!rids || !rids->count) {
count             799 source3/winbindd/winbindd_rpc.c 	*num_names = rids->count;
count             843 source3/winbindd/winbindd_rpc.c 		if (tmp_names.count != tmp_types.count) {
count             847 source3/winbindd/winbindd_rpc.c 		for (r=0; r<tmp_names.count; r++) {
count            1076 source3/winbindd/winbindd_rpc.c 		*num_domains += dom_list.count;
count            1087 source3/winbindd/winbindd_rpc.c 		for (i=0; i<dom_list.count; i++) {
count            1394 source3/winbindd/winbindd_util.c 	if (info3->base.groups.count == 0) {
count              73 source3/winbindd/winbindd_wins.c static NODE_STATUS_STRUCT *lookup_byaddr_backend(const char *addr, int *count)
count              88 source3/winbindd/winbindd_wins.c 	status = node_status_query(fd, &nname, &ss, count, NULL);
count              95 source3/winbindd/winbindd_wins.c 					int *count)
count             102 source3/winbindd/winbindd_wins.c 	*count = 0;
count             105 source3/winbindd/winbindd_wins.c 	if (NT_STATUS_IS_OK(resolve_wins(name,0x20,&ret,count))) {
count             106 source3/winbindd/winbindd_wins.c 		if ( *count == 0 )
count             108 source3/winbindd/winbindd_wins.c 		if ( (return_ss = SMB_MALLOC_ARRAY(struct sockaddr_storage, *count)) == NULL ) {
count             114 source3/winbindd/winbindd_wins.c 		for ( i=0; i<(*count); i++ )
count             134 source3/winbindd/winbindd_wins.c 		return_ss = name_query(fd,name,0x20,True,True,bcast_ss,count, &flags, NULL);
count             149 source3/winbindd/winbindd_wins.c 	int i, count, maxlen, size;
count             161 source3/winbindd/winbindd_wins.c 	if ((status = lookup_byaddr_backend(state->request.data.winsreq, &count))){
count             170 source3/winbindd/winbindd_wins.c 	    for (i = 0; i < count; i++) {
count             197 source3/winbindd/winbindd_wins.c 	int i, count, maxlen, size;
count             210 source3/winbindd/winbindd_wins.c 	if ((ip_list = lookup_byname_backend(state->request.data.winsreq,&count))){
count             211 source3/winbindd/winbindd_wins.c 		for (i = count; i ; i--) {
count              59 source4/auth/auth_sam_reply.c 	sam->groups.count = 0;
count              76 source4/auth/auth_sam_reply.c 			sam->groups.rids[sam->groups.count].rid =
count              79 source4/auth/auth_sam_reply.c 			sam->groups.rids[sam->groups.count].attributes = 
count              81 source4/auth/auth_sam_reply.c 			sam->groups.count += 1;
count             201 source4/auth/auth_sam_reply.c 	server_info->n_domain_groups = base->groups.count;
count             202 source4/auth/auth_sam_reply.c 	if (base->groups.count) {
count             203 source4/auth/auth_sam_reply.c 		server_info->domain_groups = talloc_array(server_info, struct dom_sid*, base->groups.count);
count             209 source4/auth/auth_sam_reply.c 	for (i = 0; i < base->groups.count; i++) {
count             251 source4/auth/gensec/schannel_state.c 	if (res->count != 1) {
count             252 source4/auth/gensec/schannel_state.c 		DEBUG(3,("schannel: Failed to find a record for client: %s (found %d records)\n", computer_name, res->count));
count              98 source4/cldap_server/netlogon.c 		} else if (ref_res->count == 1) {
count             110 source4/cldap_server/netlogon.c 			if (dom_res->count != 1) {
count             114 source4/cldap_server/netlogon.c 		} else if (ref_res->count > 1) {
count             135 source4/cldap_server/netlogon.c 		} else if (ref_res->count == 1) {
count             147 source4/cldap_server/netlogon.c 			if (dom_res->count != 1) {
count             151 source4/cldap_server/netlogon.c 		} else if (ref_res->count > 1) {
count             157 source4/cldap_server/netlogon.c 	if ((dom_res == NULL || dom_res->count == 0) && (domain_guid || domain_sid)) {
count             207 source4/cldap_server/netlogon.c 		} else if (dom_res->count == 1) {
count             221 source4/cldap_server/netlogon.c 			} else if (ref_res->count != 1) {
count             226 source4/cldap_server/netlogon.c 		} else if (dom_res->count > 1) {
count             233 source4/cldap_server/netlogon.c 	if ((ref_res == NULL || ref_res->count == 0)) {
count             238 source4/cldap_server/netlogon.c 	if ((dom_res == NULL || dom_res->count == 0)) {
count             272 source4/cldap_server/netlogon.c 		} else if (user_res->count == 1) {
count              96 source4/cldap_server/rootdse.c 	if (res->count > 1) {
count             100 source4/cldap_server/rootdse.c 	} else if (res->count == 1) {
count             419 source4/client/cifsdd.c 	uint64_t	count;
count             429 source4/client/cifsdd.c 	count = check_arg_numeric("count");
count             514 source4/client/cifsdd.c 		if (dd_stats.in.bytes >= (ibs * count)) {
count             207 source4/client/cifsddio.c 	w.writex.in.count	= wanted;
count            2027 source4/client/client.c 	for (i=0;i<rights.count;i++) {
count            2064 source4/client/client.c 					      struct lsa_StringLarge, rights.count+1);
count            2065 source4/client/client.c 		rights.names[rights.count].string = talloc_strdup(ctx, args[i]);
count            2066 source4/client/client.c 		rights.count++;
count            2108 source4/client/client.c 					      struct lsa_StringLarge, rights.count+1);
count            2109 source4/client/client.c 		rights.names[rights.count].string = talloc_strdup(ctx, args[i]);
count            2110 source4/client/client.c 		rights.count++;
count            2544 source4/client/client.c 	for (i=0;i<ctr1->count;i++) {
count            2609 source4/client/client.c 			resume_handle += r.out.info_ctr->ctr.ctr1->count;
count            2788 source4/client/client.c 	int count, samelen;
count            2797 source4/client/client.c 	if ((info->count < MAX_COMPLETIONS - 1) && (strncmp(info->text, f->name, info->len) == 0) && (!ISDOT(f->name)) && (!ISDOTDOT(f->name))) {
count            2799 source4/client/client.c 			info->matches[info->count] = strdup(f->name);
count            2810 source4/client/client.c 			info->matches[info->count] = tmp;
count            2812 source4/client/client.c 		if (info->matches[info->count] == NULL)
count            2817 source4/client/client.c 		if (info->count == 1)
count            2818 source4/client/client.c 			info->samelen = strlen(info->matches[info->count]);
count            2820 source4/client/client.c 			while (strncmp(info->matches[info->count], info->matches[info->count-1], info->samelen) != 0)
count            2822 source4/client/client.c 		info->count++;
count            2861 source4/client/client.c 	if (info.count == 2)
count            2870 source4/client/client.c 	info.matches[info.count] = NULL;
count            2874 source4/client/client.c 	for (i = 0; i < info.count; i++)
count            2917 source4/client/client.c 		int i, len, samelen = 0, count=1;
count            2924 source4/client/client.c 		for (i=0;commands[i].fn && count < MAX_COMPLETIONS-1;i++) {
count            2926 source4/client/client.c 				matches[count] = strdup(commands[i].name);
count            2927 source4/client/client.c 				if (!matches[count])
count            2929 source4/client/client.c 				if (count == 1)
count            2930 source4/client/client.c 					samelen = strlen(matches[count]);
count            2932 source4/client/client.c 					while (strncmp(matches[count], matches[count-1], samelen) != 0)
count            2934 source4/client/client.c 				count++;
count            2938 source4/client/client.c 		switch (count) {
count            2952 source4/client/client.c 		matches[count] = NULL;
count            2956 source4/client/client.c 		count--;
count            2957 source4/client/client.c 		while (count >= 0) {
count            2958 source4/client/client.c 			free(matches[count]);
count            2959 source4/client/client.c 			count--;
count              53 source4/dsdb/common/util.c 	int i, count;
count              56 source4/dsdb/common/util.c 	count = gendb_search_v(sam_ldb, mem_ctx, basedn,
count              62 source4/dsdb/common/util.c 	while (i<count) {
count              70 source4/dsdb/common/util.c 			(*res)[i] = (*res)[count-1];
count              71 source4/dsdb/common/util.c 			count -= 1;
count              79 source4/dsdb/common/util.c 	return count;
count              91 source4/dsdb/common/util.c 	int count;
count              97 source4/dsdb/common/util.c 	count = gendb_search_v(sam_ldb, mem_ctx, basedn, &res, attrs, format, ap);
count              98 source4/dsdb/common/util.c 	if (count > 1) {		
count             100 source4/dsdb/common/util.c 			 attr_name, format, count));
count             102 source4/dsdb/common/util.c 	if (count != 1) {
count             138 source4/dsdb/common/util.c 	int count;
count             141 source4/dsdb/common/util.c 	count = gendb_search_v(sam_ldb, mem_ctx, basedn, &res, NULL, format, ap);
count             144 source4/dsdb/common/util.c 	if (count != 1) return NULL;
count             162 source4/dsdb/common/util.c 	int count;
count             170 source4/dsdb/common/util.c 	count = gendb_search_v(sam_ldb, mem_ctx, basedn, &res, attrs, format, ap);
count             172 source4/dsdb/common/util.c 	if (count > 1) {		
count             174 source4/dsdb/common/util.c 			 attr_name, format, count));
count             176 source4/dsdb/common/util.c 	if (count != 1) {
count             217 source4/dsdb/common/util.c 	int count;
count             224 source4/dsdb/common/util.c 	count = gendb_search_v(sam_ldb, mem_ctx, basedn, &res, attrs, format, ap);
count             227 source4/dsdb/common/util.c 	if (count != 1) {
count             245 source4/dsdb/common/util.c 	int count;
count             252 source4/dsdb/common/util.c 	count = gendb_search_v(sam_ldb, mem_ctx, basedn, &res, attrs, format, ap);
count             255 source4/dsdb/common/util.c 	if (count != 1) {
count             274 source4/dsdb/common/util.c 	int count, i;
count             281 source4/dsdb/common/util.c 	count = gendb_search_v(sam_ldb, mem_ctx, basedn, &res, attrs, format, ap);
count             284 source4/dsdb/common/util.c 	if (count <= 0) {
count             285 source4/dsdb/common/util.c 		return count;
count             289 source4/dsdb/common/util.c 	for (i=0;i<count;i++) {
count             298 source4/dsdb/common/util.c 	*strs = talloc_array(mem_ctx, const char *, count+1);
count             304 source4/dsdb/common/util.c 	for (i=0;i<count;i++) {
count             307 source4/dsdb/common/util.c 	(*strs)[count] = NULL;
count             309 source4/dsdb/common/util.c 	return count;
count             550 source4/dsdb/common/util.c 	uint_t count = 0;
count             558 source4/dsdb/common/util.c 	count = val->length / 16;
count             559 source4/dsdb/common/util.c 	if (count == 0) {
count             563 source4/dsdb/common/util.c 	*hashes = talloc_array(mem_ctx, struct samr_Password, count);
count             568 source4/dsdb/common/util.c 	for (i=0;i<count;i++) {
count             572 source4/dsdb/common/util.c 	return count;
count             885 source4/dsdb/common/util.c 			 const char *attr_name, struct samr_Password *hashes, uint_t count)
count             889 source4/dsdb/common/util.c 	val.data = talloc_array_size(mem_ctx, 16, count);
count             890 source4/dsdb/common/util.c 	val.length = count*16;
count             894 source4/dsdb/common/util.c 	for (i=0;i<count;i++) {
count            1074 source4/dsdb/common/util.c 	if (res->count != 1) {
count            1188 source4/dsdb/common/util.c 	if (root_res->count != 1) {
count            1237 source4/dsdb/common/util.c 	if (res->count != 1) {
count            1330 source4/dsdb/common/util.c 	if (res->count != 1) {
count            1445 source4/dsdb/common/util.c 	if (dom_res->count != 1) {
count            1489 source4/dsdb/common/util.c 	if (res->count != 1) {
count            1521 source4/dsdb/common/util.c 			if (res->count == 1) {
count            1537 source4/dsdb/common/util.c 	if (res->count != 1) {
count            1600 source4/dsdb/common/util.c 	int count;
count            1609 source4/dsdb/common/util.c 	count = gendb_search_dn(ctx, mem_ctx, user_dn, &res, user_attrs);
count            1610 source4/dsdb/common/util.c 	if (count != 1) {
count            1631 source4/dsdb/common/util.c 		count = gendb_search_dn(ctx, mem_ctx, domain_dn, &res, domain_attrs);
count            1632 source4/dsdb/common/util.c 		if (count != 1) {
count            1645 source4/dsdb/common/util.c 		count = gendb_search(ctx, mem_ctx, NULL, &res, domain_attrs, 
count            1648 source4/dsdb/common/util.c 		if (count != 1) {
count            2011 source4/dsdb/common/util.c 	if (res_domain_ref->count == 0) {
count            2022 source4/dsdb/common/util.c 		if (res_domain_ref->count == 1) {
count            2028 source4/dsdb/common/util.c 	if (res_domain_ref->count > 1) {
count              56 source4/dsdb/repl/drepl_partitions.c 	} else if (r->count != 1) {
count             207 source4/dsdb/repl/drepl_partitions.c 	} else if (r->count != 1) {
count             236 source4/dsdb/repl/drepl_partitions.c 		p->uptodatevector.count		= ouv.ctr.ctr2.count;
count             231 source4/dsdb/repl/replicated_objects.c 	if (in->object.attribute_ctr.num_attributes != in->meta_data_ctr->count) {
count             264 source4/dsdb/repl/replicated_objects.c 	md->ctr.ctr1.count	= in->meta_data_ctr->count;
count             268 source4/dsdb/repl/replicated_objects.c 					       md->ctr.ctr1.count + 1); /* +1 because of the RDN attribute */
count             271 source4/dsdb/repl/replicated_objects.c 	for (i=0; i < in->meta_data_ctr->count; i++) {
count             302 source4/dsdb/repl/replicated_objects.c 			rdn_m = &md->ctr.ctr1.array[md->ctr.ctr1.count];
count             318 source4/dsdb/repl/replicated_objects.c 		md->ctr.ctr1.count++;
count             119 source4/dsdb/samdb/cracknames.c 	} else if (res->count != 1) {
count             308 source4/dsdb/samdb/cracknames.c 	switch (domain_res->count) {
count             787 source4/dsdb/samdb/cracknames.c 		switch (domain_res->count) {
count             820 source4/dsdb/samdb/cracknames.c 			ldb_ret = res->count;
count             866 source4/dsdb/samdb/cracknames.c 			ldb_ret = res->count;
count             985 source4/dsdb/samdb/cracknames.c 			switch (domain_res->count) {
count            1026 source4/dsdb/samdb/cracknames.c 				switch (domain_res->count) {
count            1049 source4/dsdb/samdb/cracknames.c 				switch (domain_res2->count) {
count             487 source4/dsdb/samdb/ldb_modules/kludge_acl.c 	if (res->count == 0) {
count             491 source4/dsdb/samdb/ldb_modules/kludge_acl.c 	if (res->count > 1) {
count              84 source4/dsdb/samdb/ldb_modules/naming_fsmo.c 	if (naming_res->count == 0) {
count              89 source4/dsdb/samdb/ldb_modules/naming_fsmo.c 	} else if (naming_res->count > 1) {
count              92 source4/dsdb/samdb/ldb_modules/naming_fsmo.c 			      naming_res->count);
count            1106 source4/dsdb/samdb/ldb_modules/partition.c 	if (res->count == 0) {
count            1111 source4/dsdb/samdb/ldb_modules/partition.c 	if (res->count > 1) {
count              82 source4/dsdb/samdb/ldb_modules/pdc_fsmo.c 	if (pdc_res->count == 0) {
count              87 source4/dsdb/samdb/ldb_modules/pdc_fsmo.c 	} else if (pdc_res->count > 1) {
count              90 source4/dsdb/samdb/ldb_modules/pdc_fsmo.c 			      pdc_res->count);
count              56 source4/dsdb/samdb/ldb_modules/proxy.c 	int count;
count              84 source4/dsdb/samdb/ldb_modules/proxy.c 	if (ret != LDB_SUCCESS || res->count != 1) {
count             281 source4/dsdb/samdb/ldb_modules/proxy.c 		ac->count++;
count             295 source4/dsdb/samdb/ldb_modules/proxy.c 		printf("# record %d\n", ac->count+1);
count             341 source4/dsdb/samdb/ldb_modules/proxy.c 	ac->count = 0;
count             169 source4/dsdb/samdb/ldb_modules/repl_meta_data.c 	ldb_qsort(ctr1->array, ctr1->count, sizeof(struct replPropertyMetaData1),
count             337 source4/dsdb/samdb/ldb_modules/repl_meta_data.c 	nmd.ctr.ctr1.count	= msg->num_elements;
count             340 source4/dsdb/samdb/ldb_modules/repl_meta_data.c 					       nmd.ctr.ctr1.count);
count             382 source4/dsdb/samdb/ldb_modules/repl_meta_data.c 	nmd.ctr.ctr1.count = ni;
count             643 source4/dsdb/samdb/ldb_modules/repl_meta_data.c 	for (i=0; i < md->ctr.ctr1.count; i++) {
count             788 source4/dsdb/samdb/ldb_modules/repl_meta_data.c 	nmd.ctr.ctr1.count = omd.ctr.ctr1.count + rmd->ctr.ctr1.count;
count             791 source4/dsdb/samdb/ldb_modules/repl_meta_data.c 					  nmd.ctr.ctr1.count);
count             795 source4/dsdb/samdb/ldb_modules/repl_meta_data.c 	for (i=0; i < omd.ctr.ctr1.count; i++) {
count             801 source4/dsdb/samdb/ldb_modules/repl_meta_data.c 	for (i=0; i < rmd->ctr.ctr1.count; i++) {
count             839 source4/dsdb/samdb/ldb_modules/repl_meta_data.c 	nmd.ctr.ctr1.count = ni;
count             850 source4/dsdb/samdb/ldb_modules/repl_meta_data.c 		uint32_t rdn_idx = omd.ctr.ctr1.count - 1;
count            1100 source4/dsdb/samdb/ldb_modules/repl_meta_data.c 	nuv.ctr.ctr2.count = 1 + ouv.ctr.ctr2.count;
count            1101 source4/dsdb/samdb/ldb_modules/repl_meta_data.c 	if (ruv) nuv.ctr.ctr2.count += ruv->count;
count            1104 source4/dsdb/samdb/ldb_modules/repl_meta_data.c 					    nuv.ctr.ctr2.count);
count            1108 source4/dsdb/samdb/ldb_modules/repl_meta_data.c 	for (i=0; i < ouv.ctr.ctr2.count; i++) {
count            1117 source4/dsdb/samdb/ldb_modules/repl_meta_data.c 	for (i=0; (ruv && i < ruv->count); i++) {
count            1191 source4/dsdb/samdb/ldb_modules/repl_meta_data.c 	nuv.ctr.ctr2.count = ni;
count            1196 source4/dsdb/samdb/ldb_modules/repl_meta_data.c 	qsort(nuv.ctr.ctr2.cursors, nuv.ctr.ctr2.count,
count             103 source4/dsdb/samdb/ldb_modules/update_keytab.c 	if (res->count != 1) {
count             184 source4/dsdb/samdb/samdb.c 	if (res->count != 1) {
count             187 source4/dsdb/samdb/samdb.c 					     res->count);
count             855 source4/dsdb/schema/schema_init.c 	for (i=0; i < attrs_res->count; i++) {
count             876 source4/dsdb/schema/schema_init.c 	for (i=0; i < objectclass_res->count; i++) {
count             925 source4/dsdb/schema/schema_init.c 	for (i=0; i < search_from->count; i++) {
count             939 source4/dsdb/schema/schema_init.c 						struct ldb_message *, res_list->count + 2);
count             943 source4/dsdb/schema/schema_init.c 		res_list->msgs[res_list->count] = talloc_move(res_list, 
count             945 source4/dsdb/schema/schema_init.c 		res_list->count++;
count             946 source4/dsdb/schema/schema_init.c 		res_list->msgs[res_list->count] = NULL;
count             948 source4/dsdb/schema/schema_init.c 		if (res->count > 0) {
count             981 source4/dsdb/schema/schema_init.c 	if (top_res->count != 1) {
count            1043 source4/dsdb/schema/schema_init.c 	if (schema_res->count != 1) {
count            1046 source4/dsdb/schema/schema_init.c 			      schema_res->count);
count             122 source4/dsdb/schema/schema_set.c 	} else if (res->count != 1) {
count             150 source4/dsdb/schema/schema_set.c 	} else if (res->count != 1) {
count              66 source4/heimdal/lib/com_err/com_err.c init_error_table(const char **msgs, long base, int count)
count              68 source4/heimdal/lib/com_err/com_err.c     initialize_error_table_r(&_et_list, msgs, count, base);
count              77 source4/heimdal/lib/gssapi/gssapi/gssapi.h       size_t     count;
count             101 source4/heimdal/lib/gssapi/gssapi/gssapi.h       size_t count;
count              67 source4/heimdal/lib/gssapi/mech/gss_acquire_cred.c 		for (i = 0; i < mechs->count; i++) {
count              74 source4/heimdal/lib/gssapi/mech/gss_acquire_cred.c 		if (i == mechs->count) {
count              99 source4/heimdal/lib/gssapi/mech/gss_acquire_cred.c 	set.count = 1;
count             101 source4/heimdal/lib/gssapi/mech/gss_acquire_cred.c 	for (i = 0; i < mechs->count; i++) {
count              56 source4/heimdal/lib/gssapi/mech/gss_add_oid_set_member.c     n = (*oid_set)->count + 1;
count              63 source4/heimdal/lib/gssapi/mech/gss_add_oid_set_member.c     (*oid_set)->count = n;
count              49 source4/heimdal/lib/gssapi/mech/gss_buffer_set.c     set->count = 0;
count              78 source4/heimdal/lib/gssapi/mech/gss_buffer_set.c 			    (set->count + 1) * sizeof(set->elements[0]));
count              84 source4/heimdal/lib/gssapi/mech/gss_buffer_set.c     p = &set->elements[set->count];
count              94 source4/heimdal/lib/gssapi/mech/gss_buffer_set.c     set->count++;
count             112 source4/heimdal/lib/gssapi/mech/gss_buffer_set.c     for (i = 0; i < (*buffer_set)->count; i++)
count             118 source4/heimdal/lib/gssapi/mech/gss_buffer_set.c     (*buffer_set)->count = 0;
count              47 source4/heimdal/lib/gssapi/mech/gss_create_empty_oid_set.c 	set->count = 0;
count              53 source4/heimdal/lib/gssapi/mech/gss_indicate_mechs.c 			for (i = 0; i < set->count; i++)
count              73 source4/heimdal/lib/gssapi/mech/gss_inquire_cred_by_oid.c 		for (i = 0; i < rset->count; i++) {
count              55 source4/heimdal/lib/gssapi/mech/gss_krb5.c     if (data_set == GSS_C_NO_BUFFER_SET || data_set->count < 1) {
count             293 source4/heimdal/lib/gssapi/mech/gss_krb5.c     if (data_set == GSS_C_NO_BUFFER_SET || data_set->count != 1) {
count             578 source4/heimdal/lib/gssapi/mech/gss_krb5.c     if (data_set->count != 1) {
count             680 source4/heimdal/lib/gssapi/mech/gss_krb5.c     if (data_set == GSS_C_NO_BUFFER_SET || data_set->count != 1) {
count             736 source4/heimdal/lib/gssapi/mech/gss_krb5.c     if (data_set == GSS_C_NO_BUFFER_SET || data_set->count != 1) {
count             857 source4/heimdal/lib/gssapi/mech/gss_krb5.c 	data_set->count != 1 ||
count              41 source4/heimdal/lib/gssapi/mech/gss_test_oid_set_member.c 	for (i = 0; i < set->count; i++)
count             412 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c     for (i = 0; i < mechs->count; i++)
count             416 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c     if (i == mechs->count) {
count             266 source4/heimdal/lib/gssapi/spnego/compat.c     if (supported_mechs->count == 0) {
count             282 source4/heimdal/lib/gssapi/spnego/compat.c     for (i = 0; i < supported_mechs->count; i++) {
count              54 source4/heimdal/lib/gssapi/spnego/context_stubs.c     for (i = 0; i < m->count; i++) {
count             581 source4/heimdal/lib/gssapi/spnego/context_stubs.c     for (i = 0; i < mechs->count; i++) {
count             588 source4/heimdal/lib/gssapi/spnego/context_stubs.c 	for (j = 0; j < n->count; j++)
count             125 source4/heimdal/lib/gssapi/spnego/cred_stubs.c     actual_desired_mechs.count = mechs->count;
count             126 source4/heimdal/lib/gssapi/spnego/cred_stubs.c     actual_desired_mechs.elements = malloc(actual_desired_mechs.count *
count             134 source4/heimdal/lib/gssapi/spnego/cred_stubs.c     for (i = 0, j = 0; i < mechs->count; i++) {
count             141 source4/heimdal/lib/gssapi/spnego/cred_stubs.c     actual_desired_mechs.count = j;
count            1555 source4/heimdal/lib/hcrypto/evp.c 	       unsigned int count,
count            1594 source4/heimdal/lib/hcrypto/evp.c 	for (i = 1; i < count; i++) {
count             388 source4/heimdal/lib/hcrypto/rand-fortuna.c extract_data(FState * st, unsigned count, unsigned char *dst)
count             409 source4/heimdal/lib/hcrypto/rand-fortuna.c     while (count > 0)
count             415 source4/heimdal/lib/hcrypto/rand-fortuna.c 	if (count > CIPH_BLOCK)
count             418 source4/heimdal/lib/hcrypto/rand-fortuna.c 	    n = count;
count             421 source4/heimdal/lib/hcrypto/rand-fortuna.c 	count -= n;
count              94 source4/heimdal/lib/hcrypto/rand-unix.c     ssize_t count;
count             105 source4/heimdal/lib/hcrypto/rand-unix.c 	count = read (fd, outdata, size);
count             106 source4/heimdal/lib/hcrypto/rand-unix.c 	if (count < 0 && errno == EINTR)
count             108 source4/heimdal/lib/hcrypto/rand-unix.c 	else if (count <= 0) {
count             112 source4/heimdal/lib/hcrypto/rand-unix.c 	outdata += count;
count             113 source4/heimdal/lib/hcrypto/rand-unix.c 	size -= count;
count              60 source4/heimdal/lib/hx509/ks_keychain.c     attrInfo.count = 1;
count             438 source4/heimdal/lib/hx509/ks_keychain.c     attrInfo.count = 1;
count             464 source4/heimdal/lib/hx509/ks_keychain.c 	attrList.count = 1;
count              59 source4/heimdal/lib/krb5/krbhst.c srv_find_realm(krb5_context context, krb5_krbhst_info ***res, int *count,
count              71 source4/heimdal/lib/krb5/krbhst.c     *count = 0;
count             135 source4/heimdal/lib/krb5/krbhst.c     *count = num_srv;
count             380 source4/heimdal/lib/krb5/krbhst.c     int count, i;
count             382 source4/heimdal/lib/krb5/krbhst.c     if (srv_find_realm(context, &res, &count, kd->realm, "SRV", proto, service,
count             385 source4/heimdal/lib/krb5/krbhst.c     for(i = 0; i < count; i++)
count             313 source4/heimdal/lib/roken/getarg.c 	    size_t count = 0;
count             316 source4/heimdal/lib/roken/getarg.c 		count += fprintf (stderr, "-%c", args[i].short_name);
count             318 source4/heimdal/lib/roken/getarg.c 		count += fprintf(stderr, "%s", buf);
count             321 source4/heimdal/lib/roken/getarg.c 		count += fprintf (stderr, ", ");
count             323 source4/heimdal/lib/roken/getarg.c 		count += fprintf (stderr, "--");
count             325 source4/heimdal/lib/roken/getarg.c 		    count += fprintf (stderr, "no-");
count             326 source4/heimdal/lib/roken/getarg.c 		count += fprintf (stderr, "%s", args[i].long_name);
count             328 source4/heimdal/lib/roken/getarg.c 		count += fprintf(stderr, "%s", buf);
count             330 source4/heimdal/lib/roken/getarg.c 	    while(count++ <= max_len)
count              53 source4/heimdal/lib/roken/net_read.c     ssize_t count;
count              58 source4/heimdal/lib/roken/net_read.c 	count = recv (fd, cbuf, rem, 0);
count              60 source4/heimdal/lib/roken/net_read.c 	count = read (fd, cbuf, rem);
count              62 source4/heimdal/lib/roken/net_read.c 	if (count < 0) {
count              66 source4/heimdal/lib/roken/net_read.c 		return count;
count              67 source4/heimdal/lib/roken/net_read.c 	} else if (count == 0) {
count              68 source4/heimdal/lib/roken/net_read.c 	    return count;
count              70 source4/heimdal/lib/roken/net_read.c 	cbuf += count;
count              71 source4/heimdal/lib/roken/net_read.c 	rem -= count;
count              53 source4/heimdal/lib/roken/net_write.c     ssize_t count;
count              58 source4/heimdal/lib/roken/net_write.c 	count = send (fd, cbuf, rem, 0);
count              60 source4/heimdal/lib/roken/net_write.c 	count = write (fd, cbuf, rem);
count              62 source4/heimdal/lib/roken/net_write.c 	if (count < 0) {
count              66 source4/heimdal/lib/roken/net_write.c 		return count;
count              68 source4/heimdal/lib/roken/net_write.c 	cbuf += count;
count              69 source4/heimdal/lib/roken/net_write.c 	rem -= count;
count             650 source4/heimdal/lib/roken/resolve.c 	int sum, rnd, count;
count             665 source4/heimdal/lib/roken/resolve.c 	    for(count = 0, tt = ss; ; tt++) {
count             668 source4/heimdal/lib/roken/resolve.c 		count += (*tt)->u.srv->weight;
count             669 source4/heimdal/lib/roken/resolve.c 		if(count >= rnd)
count             767 source4/kdc/hdb-samba4.c 	for (i=0; i < password_blob.count; i++) {
count             773 source4/kdc/hdb-samba4.c 	for (i=0; i < password_blob.count; i++) {
count             793 source4/kdc/hdb-samba4.c 	if (i < password_blob.count) {
count             945 source4/kdc/hdb-samba4.c 	} else if (res->count == 0 || res->count > 1) {
count             946 source4/kdc/hdb-samba4.c 		DEBUG(3, ("Failed find a single entry for %s: got %d\n", filter, res->count));
count             980 source4/kdc/hdb-samba4.c 	} else if (res->count == 0 || res->count > 1) {
count             981 source4/kdc/hdb-samba4.c 		DEBUG(3, ("Failed find a single entry for %s: got %d\n", filter, res->count));
count            1009 source4/kdc/hdb-samba4.c 	} else if (cross_ref_res->count == 0 || cross_ref_res->count > 1) {
count            1010 source4/kdc/hdb-samba4.c 		DEBUG(3, ("Failed find a single entry for realm %s: got %d\n", realm, cross_ref_res->count));
count            1343 source4/kdc/hdb-samba4.c 	int count;
count            1367 source4/kdc/hdb-samba4.c 	if (priv->index < priv->count) {
count            1414 source4/kdc/hdb-samba4.c 	priv->count = 0;
count            1453 source4/kdc/hdb-samba4.c 	priv->count = res->count;
count             274 source4/ldap_server/ldap_backend.c 		for (i = 0; i < res->count; i++) {
count             319 source4/ldap_server/ldap_backend.c 		if (res->count >= success_limit) {
count             320 source4/ldap_server/ldap_backend.c 			DEBUG(10,("SearchRequest: results: [%d]\n", res->count));
count             707 source4/ldap_server/ldap_backend.c 		} else if (res->count == 0) {
count             711 source4/ldap_server/ldap_backend.c 		} else if (res->count == 1) {
count             715 source4/ldap_server/ldap_backend.c 		} else if (res->count > 1) {
count             718 source4/ldap_server/ldap_backend.c 			DEBUG(10,("CompareRequest: %d results: %s\n", res->count, errstr));
count             261 source4/ldap_server/ldap_server.c 	if (res->count != 1) {
count             281 source4/ldap_server/ldap_server.c 	if (res->count != 1) {
count             150 source4/lib/ldb/common/ldb.c 	if (res->count != 1) {
count             645 source4/lib/ldb/common/ldb.c 					struct ldb_message *, res->count + 2);
count             650 source4/lib/ldb/common/ldb.c 		res->msgs[res->count + 1] = NULL;
count             652 source4/lib/ldb/common/ldb.c 		res->msgs[res->count] = talloc_move(res->msgs, &ares->message);
count             653 source4/lib/ldb/common/ldb.c 		res->count++;
count              48 source4/lib/ldb/common/ldb_ldif.c 	int count, size, bytes;
count              80 source4/lib/ldb/common/ldb_ldif.c 	count = 0;
count              83 source4/lib/ldb/common/ldb_ldif.c 	while (count < statbuf.st_size) {
count              90 source4/lib/ldb/common/ldb_ldif.c 		count += bytes;
count             436 source4/lib/ldb/common/ldb_modules.c 			if (res->count == 0) {
count             438 source4/lib/ldb/common/ldb_modules.c 			} else if (res->count > 1) {
count             439 source4/lib/ldb/common/ldb_modules.c 				ldb_debug(ldb, LDB_DEBUG_FATAL, "Too many records found (%d), bailing out\n", res->count);
count             874 source4/lib/ldb/common/ldb_msg.c 	for (i = 0; i < result->count; i++) {
count              96 source4/lib/ldb/examples/ldbreader.c 	printf("%i records returned\n", resultMsg->count);
count             103 source4/lib/ldb/examples/ldbreader.c 	for (i = 0; i < resultMsg->count; ++i) {
count             714 source4/lib/ldb/include/ldb.h 	unsigned int count;
count             141 source4/lib/ldb/ldb_ldap/ldb_ldap.c 	int count, i;
count             144 source4/lib/ldb/ldb_ldap/ldb_ldap.c 	count = ldap_count_values_len(bval);
count             146 source4/lib/ldb/ldb_ldap/ldb_ldap.c 	if (count <= 0) {
count             169 source4/lib/ldb/ldb_ldap/ldb_ldap.c 	el->values = talloc_array(msg->elements, struct ldb_val, count);
count             175 source4/lib/ldb/ldb_ldap/ldb_ldap.c 	for (i=0;i<count;i++) {
count            1019 source4/lib/ldb/ldb_map/ldb_map.c 	if (res->count == 0) {
count            1025 source4/lib/ldb/ldb_map/ldb_map.c 	if (res->count > 1) {
count             420 source4/lib/ldb/ldb_tdb/ldb_index.c 	unsigned int count;
count             523 source4/lib/ldb/ldb_tdb/ldb_index.c 	list->count = 0;
count             564 source4/lib/ldb/ldb_tdb/ldb_index.c 			list->dn[list->count] =
count             566 source4/lib/ldb/ldb_tdb/ldb_index.c 			if (!list->dn[list->count]) {
count             570 source4/lib/ldb/ldb_tdb/ldb_index.c 			list->count++;
count             576 source4/lib/ldb/ldb_tdb/ldb_index.c 	if (list->count > 1) {
count             577 source4/lib/ldb/ldb_tdb/ldb_index.c 		qsort(list->dn, list->count, sizeof(char *), (comparison_fn_t) list_cmp);
count             608 source4/lib/ldb/ldb_tdb/ldb_index.c 		list->count = 1;
count             626 source4/lib/ldb/ldb_tdb/ldb_index.c 	if (list->count == 0 || list2->count == 0) {
count             636 source4/lib/ldb/ldb_tdb/ldb_index.c 	list3->dn = talloc_array(list3, char *, list->count);
count             641 source4/lib/ldb/ldb_tdb/ldb_index.c 	list3->count = 0;
count             643 source4/lib/ldb/ldb_tdb/ldb_index.c 	for (i=0;i<list->count;i++) {
count             644 source4/lib/ldb/ldb_tdb/ldb_index.c 		if (ldb_list_find(list->dn[i], list2->dn, list2->count,
count             646 source4/lib/ldb/ldb_tdb/ldb_index.c 			list3->dn[list3->count] = talloc_move(list3->dn, &list->dn[i]);
count             647 source4/lib/ldb/ldb_tdb/ldb_index.c 			list3->count++;
count             655 source4/lib/ldb/ldb_tdb/ldb_index.c 	list->count = list3->count;
count             672 source4/lib/ldb/ldb_tdb/ldb_index.c 	unsigned int count = list->count;
count             674 source4/lib/ldb/ldb_tdb/ldb_index.c 	if (list->count == 0 && list2->count == 0) {
count             679 source4/lib/ldb/ldb_tdb/ldb_index.c 	d = talloc_realloc(list, list->dn, char *, list->count + list2->count);
count             685 source4/lib/ldb/ldb_tdb/ldb_index.c 	for (i=0;i<list2->count;i++) {
count             686 source4/lib/ldb/ldb_tdb/ldb_index.c 		if (ldb_list_find(list2->dn[i], list->dn, count,
count             688 source4/lib/ldb/ldb_tdb/ldb_index.c 			list->dn[list->count] = talloc_strdup(list->dn, list2->dn[i]);
count             689 source4/lib/ldb/ldb_tdb/ldb_index.c 			if (!list->dn[list->count]) {
count             692 source4/lib/ldb/ldb_tdb/ldb_index.c 			list->count++;
count             696 source4/lib/ldb/ldb_tdb/ldb_index.c 	if (list->count != count) {
count             697 source4/lib/ldb/ldb_tdb/ldb_index.c 		qsort(list->dn, list->count, sizeof(char *), (comparison_fn_t)list_cmp);
count             725 source4/lib/ldb/ldb_tdb/ldb_index.c 	list->count = 0;
count             757 source4/lib/ldb/ldb_tdb/ldb_index.c 			list->count = list2->count;
count             768 source4/lib/ldb/ldb_tdb/ldb_index.c 	if (list->count == 0) {
count             811 source4/lib/ldb/ldb_tdb/ldb_index.c 	list->count = 0;
count             840 source4/lib/ldb/ldb_tdb/ldb_index.c 			list->count = list2->count;
count             850 source4/lib/ldb/ldb_tdb/ldb_index.c 		if (list->count == 0) {
count             919 source4/lib/ldb/ldb_tdb/ldb_index.c 			list2->dn[list2->count] = talloc_strdup(list2->dn, (char *)el->values[j].data);
count             920 source4/lib/ldb/ldb_tdb/ldb_index.c 			if (!list2->dn[list2->count]) {
count             924 source4/lib/ldb/ldb_tdb/ldb_index.c 			list2->count++;
count             928 source4/lib/ldb/ldb_tdb/ldb_index.c 	if (list2->count == 0) {
count             933 source4/lib/ldb/ldb_tdb/ldb_index.c 	if (list2->count > 1) {
count             934 source4/lib/ldb/ldb_tdb/ldb_index.c 		qsort(list2->dn, list2->count, sizeof(char *), (comparison_fn_t) list_cmp);
count             937 source4/lib/ldb/ldb_tdb/ldb_index.c 	if (list->count > 0) {
count             943 source4/lib/ldb/ldb_tdb/ldb_index.c 		if (list->count == 0) {
count             950 source4/lib/ldb/ldb_tdb/ldb_index.c 		list->count = list2->count;
count            1013 source4/lib/ldb/ldb_tdb/ldb_index.c 	for (i = 0; i < dn_list->count; i++) {
count            1118 source4/lib/ldb/ldb_tdb/ldb_index.c 		dn_list->count = 1;
count             289 source4/lib/ldb/ldb_tdb/ldb_search.c 			  unsigned int *count, 
count             302 source4/lib/ldb/ldb_tdb/ldb_search.c 	res2 = talloc_realloc(mem_ctx, *res, struct ldb_message *, (*count)+2);
count             310 source4/lib/ldb/ldb_tdb/ldb_search.c 	(*res)[*count] = talloc_move(*res, &msg2);
count             311 source4/lib/ldb/ldb_tdb/ldb_search.c 	(*res)[(*count)+1] = NULL;
count             312 source4/lib/ldb/ldb_tdb/ldb_search.c 	(*count)++;
count             116 source4/lib/ldb/ldb_tdb/ldb_tdb.h 			  unsigned int *count, 
count             106 source4/lib/ldb/nssldb/ldb-grp.c 	if (_ldb_nss_ctx->gr_cur >= _ldb_nss_ctx->gr_res->count) {
count             198 source4/lib/ldb/nssldb/ldb-grp.c 	if (gr_res->count == 0) {
count             204 source4/lib/ldb/nssldb/ldb-grp.c 	if (gr_res->count != 1) {
count             296 source4/lib/ldb/nssldb/ldb-grp.c 	if (gr_res->count == 0) {
count             302 source4/lib/ldb/nssldb/ldb-grp.c 	if (gr_res->count != 1) {
count             389 source4/lib/ldb/nssldb/ldb-grp.c 	if (uid_res->count == 0) {
count             395 source4/lib/ldb/nssldb/ldb-grp.c 	if (uid_res->count != 1) {
count             238 source4/lib/ldb/nssldb/ldb-nss.c 	lsize = (members->count + 1) * sizeof(char *);
count             251 source4/lib/ldb/nssldb/ldb-nss.c 	for (i = 0; i < members->count; i++) {
count             285 source4/lib/ldb/nssldb/ldb-nss.c 	for (i = 0; i < grlist->count; i++) {
count              95 source4/lib/ldb/nssldb/ldb-pwd.c 	if (_ldb_nss_ctx->pw_cur >= _ldb_nss_ctx->pw_res->count) {
count             155 source4/lib/ldb/nssldb/ldb-pwd.c 	if (res->count == 0) {
count             161 source4/lib/ldb/nssldb/ldb-pwd.c 	if (res->count != 1) {
count             217 source4/lib/ldb/nssldb/ldb-pwd.c 	if (res->count == 0) {
count             223 source4/lib/ldb/nssldb/ldb-pwd.c 	if (res->count != 1) {
count             114 source4/lib/ldb/pyldb.c 	ret = PyList_New(result->count);
count             115 source4/lib/ldb/pyldb.c 	for (i = 0; i < result->count; i++) {
count             131 source4/lib/ldb/pyldb.c 	res->count = PyList_Size(obj);
count             132 source4/lib/ldb/pyldb.c 	res->msgs = talloc_array(res, struct ldb_message *, res->count);
count             133 source4/lib/ldb/pyldb.c 	for (i = 0; i < res->count; i++) {
count            1031 source4/lib/ldb/pyldb.c 	int count;
count            1042 source4/lib/ldb/pyldb.c 	count = result->count;
count            1046 source4/lib/ldb/pyldb.c 	return count;
count              55 source4/lib/ldb/tools/ldbadd.c static int process_file(struct ldb_context *ldb, FILE *f, int *count)
count              75 source4/lib/ldb/tools/ldbadd.c 			(*count)++;
count              88 source4/lib/ldb/tools/ldbadd.c 	int i, ret=0, count=0;
count             101 source4/lib/ldb/tools/ldbadd.c 		ret = process_file(ldb, stdin, &count);
count             111 source4/lib/ldb/tools/ldbadd.c 			ret = process_file(ldb, f, &count);
count             116 source4/lib/ldb/tools/ldbadd.c 	if (count != 0 && ldb_transaction_commit(ldb) != 0) {
count             123 source4/lib/ldb/tools/ldbadd.c 	printf("Added %d records with %d failures\n", count, failures);
count              46 source4/lib/ldb/tools/ldbdel.c 	for (i = 0; i < res->count; i++) {
count              91 source4/lib/ldb/tools/ldbedit.c 				    int count,
count              95 source4/lib/ldb/tools/ldbedit.c 	for (i=0;i<count;i++) {
count             172 source4/lib/ldb/tools/ldbedit.c 		     FILE *f, struct ldb_message **msgs, int count)
count             176 source4/lib/ldb/tools/ldbedit.c 	fprintf(f, "# editing %d records\n", count);
count             178 source4/lib/ldb/tools/ldbedit.c 	for (i=0;i<count;i++) {
count             322 source4/lib/ldb/tools/ldbedit.c 	if (result->count == 0) {
count             327 source4/lib/ldb/tools/ldbedit.c 	do_edit(ldb, result->msgs, result->count, options->editor);
count              54 source4/lib/ldb/tools/ldbmodify.c static int process_file(struct ldb_context *ldb, FILE *f, int *count)
count              77 source4/lib/ldb/tools/ldbmodify.c 			(*count)++;
count              88 source4/lib/ldb/tools/ldbmodify.c 	int count=0;
count              97 source4/lib/ldb/tools/ldbmodify.c 		ret = process_file(ldb, stdin, &count);
count             107 source4/lib/ldb/tools/ldbmodify.c 			ret = process_file(ldb, f, &count);
count             113 source4/lib/ldb/tools/ldbmodify.c 	printf("Modified %d records with %d failures\n", count, failures);
count              55 source4/lib/ldb/tools/ldbtest.c 			int count)
count              66 source4/lib/ldb/tools/ldbtest.c 	for (i=0;i<count;i++) {
count             144 source4/lib/ldb/tools/ldbtest.c 			   int count)
count             149 source4/lib/ldb/tools/ldbtest.c 	for (i=0;i<count;i++) {
count             197 source4/lib/ldb/tools/ldbtest.c 			   int count)
count             201 source4/lib/ldb/tools/ldbtest.c 	for (i=0;i<count;i++) {
count             233 source4/lib/ldb/tools/ldbtest.c 		if (ret != LDB_SUCCESS || (uid < nrecords && res->count != 1)) {
count             238 source4/lib/ldb/tools/ldbtest.c 		if (uid >= nrecords && res->count > 0) {
count             243 source4/lib/ldb/tools/ldbtest.c 		printf("testing uid %d/%d - %d  \r", i, uid, res->count);
count             363 source4/lib/ldb/tools/ldbtest.c 	if(res->count != 1) {
count             364 source4/lib/ldb/tools/ldbtest.c 		printf("Should have found 1 record - found %d\n", res->count);
count             986 source4/lib/messaging/messaging.c 	int count;
count             997 source4/lib/messaging/messaging.c 	count = rec.dsize / sizeof(struct server_id);
count             998 source4/lib/messaging/messaging.c 	rec.dptr = (unsigned char *)realloc_p(rec.dptr, struct server_id, count+1);
count            1005 source4/lib/messaging/messaging.c 	((struct server_id *)rec.dptr)[count] = msg_ctx->server_id;
count            1028 source4/lib/messaging/messaging.c 	int count, i;
count            1046 source4/lib/messaging/messaging.c 	count = rec.dsize / sizeof(struct server_id);
count            1047 source4/lib/messaging/messaging.c 	ret = talloc_array(mem_ctx, struct server_id, count+1);
count            1053 source4/lib/messaging/messaging.c 	for (i=0;i<count;i++) {
count            1071 source4/lib/messaging/messaging.c 	int count, i;
count            1091 source4/lib/messaging/messaging.c 	count = rec.dsize / sizeof(struct server_id);
count            1092 source4/lib/messaging/messaging.c 	if (count == 0) {
count            1099 source4/lib/messaging/messaging.c 	for (i=0;i<count;i++) {
count            1101 source4/lib/messaging/messaging.c 			if (i < count-1) {
count            1103 source4/lib/messaging/messaging.c 					sizeof(struct server_id) * (count-(i+1)));
count             390 source4/lib/messaging/pymessaging.c 	int count;
count             401 source4/lib/messaging/pymessaging.c 	if (iterator->current >= iterator->count) {
count             418 source4/lib/messaging/pymessaging.c 	return PyLong_FromLong(self->count);
count             448 source4/lib/messaging/pymessaging.c 	int i, count;
count             466 source4/lib/messaging/pymessaging.c 	for (count=0;p->dest_ids[count].id;count++) /* noop */ ;
count             469 source4/lib/messaging/pymessaging.c 	reqs = talloc_array(mem_ctx, struct irpc_request *, count);
count             476 source4/lib/messaging/pymessaging.c 	for (i=0;i<count;i++) {
count             489 source4/lib/messaging/pymessaging.c 	ret->count = count;
count              45 source4/lib/messaging/tests/messaging.c 	int *count = (int *)private_data;
count              46 source4/lib/messaging/tests/messaging.c 	(*count)++;
count             235 source4/lib/registry/ldb.c 	kd->subkey_count = res->count;
count             257 source4/lib/registry/ldb.c 	kd->value_count = res->count;
count             319 source4/lib/registry/ldb.c 	if (res->count == 0 || res->msgs[0]->num_elements == 0)
count             383 source4/lib/registry/ldb.c 		if (res->count == 0)
count             412 source4/lib/registry/ldb.c 	} else if (res->count == 0) {
count             628 source4/lib/registry/ldb.c 	if (res_keys->count || res_vals->count)
count             631 source4/lib/registry/ldb.c 		for (i = 0; i < res_keys->count; i++)
count             644 source4/lib/registry/ldb.c 		for (i = 0; i < res_vals->count; i++)
count             372 source4/lib/registry/tools/regshell.c 	int i, len, samelen=0, count=1;
count             379 source4/lib/registry/tools/regshell.c 	for (i=0;regshell_cmds[i].handle && count < MAX_COMPLETIONS-1;i++) {
count             381 source4/lib/registry/tools/regshell.c 			matches[count] = strdup(regshell_cmds[i].name);
count             382 source4/lib/registry/tools/regshell.c 			if (!matches[count])
count             384 source4/lib/registry/tools/regshell.c 			if (count == 1)
count             385 source4/lib/registry/tools/regshell.c 				samelen = strlen(matches[count]);
count             387 source4/lib/registry/tools/regshell.c 				while (strncmp(matches[count], matches[count-1], samelen) != 0)
count             389 source4/lib/registry/tools/regshell.c 			count++;
count             393 source4/lib/registry/tools/regshell.c 	switch (count) {
count             403 source4/lib/registry/tools/regshell.c 	matches[count] = NULL;
count             407 source4/lib/registry/tools/regshell.c 	count--;
count             408 source4/lib/registry/tools/regshell.c 	while (count >= 0) {
count             409 source4/lib/registry/tools/regshell.c 		free(matches[count]);
count             410 source4/lib/registry/tools/regshell.c 		count--;
count             110 source4/lib/wmi/tools/wmic.c 	for (i = 0; i < arr->count; ++i) {\
count             111 source4/lib/wmi/tools/wmic.c 		r = talloc_asprintf_append(r, fmt "%s", arr->item[i], (i+1 == arr->count)?"":",");\
count             140 source4/lib/wmi/wbemdata.c 	for (i = 0; i < wco->obj_methods->count; ++i)
count            2897 source4/lib/wmi/wmi_wrap.c 	l = PyList_New(arr->count);\
count            2899 source4/lib/wmi/wmi_wrap.c 	for (i = 0; i < arr->count; ++i) {\
count             155 source4/libcli/auth/smbdes.c static void lshift(char *d, int count, int n)
count             160 source4/libcli/auth/smbdes.c 		out[i] = d[(i+count)%n];
count             368 source4/libcli/clifile.c 	lock[0].count = len;
count             396 source4/libcli/clifile.c 	lock[0].count = len;
count             422 source4/libcli/clifile.c 	lock[0].count = len;
count             457 source4/libcli/clifile.c 	lock[0].count = len;
count             488 source4/libcli/clifile.c 	lock[0].count = len;
count             157 source4/libcli/clilist.c 			ff_searchcount = first_parms.t2ffirst.out.count;
count             160 source4/libcli/clilist.c 			received = first_parms.t2ffirst.out.count;
count             184 source4/libcli/clilist.c 			ff_searchcount = next_parms.t2fnext.out.count;
count             186 source4/libcli/clilist.c 			received = next_parms.t2fnext.out.count;
count             305 source4/libcli/clilist.c 			received = first_parms.search_first.out.count;
count             329 source4/libcli/clilist.c 			received = next_parms.search_next.out.count;
count             115 source4/libcli/clireadwrite.c 		parms.writex.in.count = block;
count             151 source4/libcli/clireadwrite.c 		parms.write.in.count = size;
count             215 source4/libcli/ldap/ldap_bind.c 	int count, i;
count             277 source4/libcli/ldap/ldap_bind.c 	count = ildap_count_entries(conn, sasl_mechs_msgs);
count             278 source4/libcli/ldap/ldap_bind.c 	if (count != 1) {
count             280 source4/libcli/ldap/ldap_bind.c 			  count));
count             297 source4/libcli/ldap/ldap_bind.c 			  count));
count             309 source4/libcli/ldap/ldap_bind.c 			  count, nt_errstr(status)));
count             306 source4/libcli/rap/rap.h 		uint16_t count;
count             340 source4/libcli/rap/rap.h 		uint16_t count;
count             652 source4/libcli/raw/clitransport.c 	p->out.count++;
count             663 source4/libcli/raw/clitransport.c 	if (p->out.count == p->in.repeat_count) {
count            1735 source4/libcli/raw/interfaces.h 			uint16_t count;
count            1750 source4/libcli/raw/interfaces.h 			uint16_t count;
count            1819 source4/libcli/raw/interfaces.h 			uint32_t count;
count            1833 source4/libcli/raw/interfaces.h 			uint16_t count;
count            1848 source4/libcli/raw/interfaces.h 			uint16_t count;
count            1863 source4/libcli/raw/interfaces.h 			uint16_t count;
count            1878 source4/libcli/raw/interfaces.h 			uint16_t count;
count            1937 source4/libcli/raw/interfaces.h 				uint64_t count;
count            1947 source4/libcli/raw/interfaces.h 			uint32_t count;
count            2099 source4/libcli/raw/interfaces.h 			uint16_t count;
count            2249 source4/libcli/raw/interfaces.h 		uint16_t count;
count            2397 source4/libcli/raw/interfaces.h 			int16_t count;
count            2419 source4/libcli/raw/interfaces.h 			uint16_t count;
count            2497 source4/libcli/raw/interfaces.h 			uint16_t count;
count            2518 source4/libcli/raw/interfaces.h 			uint16_t count;
count            2744 source4/libcli/raw/interfaces.h 		uint16_t count;
count             834 source4/libcli/raw/rawfile.c 		SIVAL(req->out.vwv, VWV(1), parms->lock.in.count);
count             841 source4/libcli/raw/rawfile.c 		SIVAL(req->out.vwv, VWV(1), parms->unlock.in.count);
count             869 source4/libcli/raw/rawfile.c 				SIVAL(p, 12, lockp[i].count>>32);
count             870 source4/libcli/raw/rawfile.c 				SIVAL(p, 16, lockp[i].count);
count             873 source4/libcli/raw/rawfile.c 				SIVAL(p, 6, lockp[i].count);
count              58 source4/libcli/raw/rawreadwrite.c 		SSVAL(req->out.vwv, VWV(1), parms->lockread.in.count);
count              66 source4/libcli/raw/rawreadwrite.c 		SSVAL(req->out.vwv, VWV(1), parms->read.in.count);
count             140 source4/libcli/raw/rawreadwrite.c 		if (parms->lockread.out.nread > parms->lockread.in.count ||
count             151 source4/libcli/raw/rawreadwrite.c 		if (parms->read.out.nread > parms->read.in.count ||
count             218 source4/libcli/raw/rawreadwrite.c 		SETUP_REQUEST(SMBwriteunlock, 5, 3 + parms->writeunlock.in.count);
count             220 source4/libcli/raw/rawreadwrite.c 		SSVAL(req->out.vwv, VWV(1), parms->writeunlock.in.count);
count             224 source4/libcli/raw/rawreadwrite.c 		SSVAL(req->out.data, 1, parms->writeunlock.in.count);
count             225 source4/libcli/raw/rawreadwrite.c 		if (parms->writeunlock.in.count > 0) {
count             227 source4/libcli/raw/rawreadwrite.c 			       parms->writeunlock.in.count);
count             232 source4/libcli/raw/rawreadwrite.c 		SETUP_REQUEST(SMBwrite, 5,  3 + parms->write.in.count);
count             234 source4/libcli/raw/rawreadwrite.c 		SSVAL(req->out.vwv, VWV(1), parms->write.in.count);
count             238 source4/libcli/raw/rawreadwrite.c 		SSVAL(req->out.data, 1, parms->write.in.count);
count             239 source4/libcli/raw/rawreadwrite.c 		if (parms->write.in.count > 0) {
count             240 source4/libcli/raw/rawreadwrite.c 			memcpy(req->out.data+3, parms->write.in.data, parms->write.in.count);
count             245 source4/libcli/raw/rawreadwrite.c 		SETUP_REQUEST(SMBwriteclose, 6, 1 + parms->writeclose.in.count);
count             247 source4/libcli/raw/rawreadwrite.c 		SSVAL(req->out.vwv, VWV(1), parms->writeclose.in.count);
count             252 source4/libcli/raw/rawreadwrite.c 		if (parms->writeclose.in.count > 0) {
count             254 source4/libcli/raw/rawreadwrite.c 			       parms->writeclose.in.count);
count             262 source4/libcli/raw/rawreadwrite.c 		SETUP_REQUEST(SMBwriteX, bigoffset ? 14 : 12, parms->writex.in.count);
count             270 source4/libcli/raw/rawreadwrite.c 		SSVAL(req->out.vwv, VWV(9), parms->writex.in.count>>16);
count             271 source4/libcli/raw/rawreadwrite.c 		SSVAL(req->out.vwv, VWV(10), parms->writex.in.count);
count             276 source4/libcli/raw/rawreadwrite.c 	      	if (parms->writex.in.count > 0) {
count             277 source4/libcli/raw/rawreadwrite.c 			memcpy(req->out.data, parms->writex.in.data, parms->writex.in.count);
count             282 source4/libcli/raw/rawreadwrite.c 		SETUP_REQUEST(SMBsplwr, 1, parms->splwrite.in.count);
count             284 source4/libcli/raw/rawreadwrite.c 		if (parms->splwrite.in.count > 0) {
count             285 source4/libcli/raw/rawreadwrite.c 			memcpy(req->out.data, parms->splwrite.in.data, parms->splwrite.in.count);
count             692 source4/libcli/raw/rawrequest.c static bool smbcli_req_data_oob(struct request_bufinfo *bufinfo, const uint8_t *ptr, uint32_t count)
count             697 source4/libcli/raw/rawrequest.c 	    count > bufinfo->data_size ||
count             698 source4/libcli/raw/rawrequest.c 	    (uintptr_t)ptr + count > (uintptr_t)bufinfo->data + bufinfo->data_size) {
count              30 source4/libcli/raw/rawsearch.c 				   uint16_t count, 
count              39 source4/libcli/raw/rawsearch.c 	if (req->in.data_size < 3 + count*43) {
count              46 source4/libcli/raw/rawsearch.c 	for (i=0; i < count; i++) {
count             101 source4/libcli/raw/rawsearch.c 		io->search_first.out.count = SVAL(req->in.vwv, VWV(0));	
count             102 source4/libcli/raw/rawsearch.c 		smb_raw_search_backend(req, mem_ctx, io->search_first.out.count, private_data, callback);
count             148 source4/libcli/raw/rawsearch.c 		io->search_next.out.count = SVAL(req->in.vwv, VWV(0));
count             149 source4/libcli/raw/rawsearch.c 		smb_raw_search_backend(req, mem_ctx, io->search_next.out.count, private_data, callback);
count             683 source4/libcli/raw/rawsearch.c 					 int16_t count,
count             695 source4/libcli/raw/rawsearch.c 	for (i=0; i < count; i++) {
count             757 source4/libcli/raw/rawsearch.c 	io->t2ffirst.out.count = SVAL(p_blob.data, 2);
count             762 source4/libcli/raw/rawsearch.c 					  io->t2ffirst.in.flags, io->t2ffirst.out.count,
count             806 source4/libcli/raw/rawsearch.c 	io->t2fnext.out.count = SVAL(p_blob.data, 0);
count             811 source4/libcli/raw/rawsearch.c 					  io->t2fnext.in.flags, io->t2fnext.out.count,
count              32 source4/libcli/raw/rawtrans.c 			  uint_t offset, uint_t count)
count              36 source4/libcli/raw/rawtrans.c 	if (count == 0) {
count              45 source4/libcli/raw/rawtrans.c 	    count > req->in.data_size ||
count              46 source4/libcli/raw/rawtrans.c 	    (uintptr_t)ptr + count > (uintptr_t)req->in.data + req->in.data_size) {
count              47 source4/libcli/resolve/bcast.c 	int i, count=0;
count              58 source4/libcli/resolve/bcast.c 		address_list[count] = talloc_strdup(address_list, bcast);
count              59 source4/libcli/resolve/bcast.c 		if (address_list[count] == NULL) {
count              63 source4/libcli/resolve/bcast.c 		count++;
count              65 source4/libcli/resolve/bcast.c 	address_list[count] = NULL;
count              86 source4/libcli/resolve/dns_ex.c 	uint32_t count = 0;
count             141 source4/libcli/resolve/dns_ex.c 		count++;
count             144 source4/libcli/resolve/dns_ex.c 	if (count == 0) {
count             150 source4/libcli/resolve/dns_ex.c 				   count);
count             157 source4/libcli/resolve/dns_ex.c 				     count);
count             236 source4/libcli/resolve/dns_ex.c 	for (i=0; i < count; i++) {
count              34 source4/libcli/resolve/testsuite.c 	int count = 0;
count              51 source4/libcli/resolve/testsuite.c 		count++;
count              55 source4/libcli/resolve/testsuite.c 			count/timeval_elapsed(&tv));
count              66 source4/libcli/resolve/testsuite.c 	int count = 0;
count              73 source4/libcli/resolve/testsuite.c 		count++;
count              77 source4/libcli/resolve/testsuite.c 			count/timeval_elapsed(&tv));
count              98 source4/libcli/smb2/find.c 			      uint8_t level, uint_t *count,
count             135 source4/libcli/smb2/find.c 	*count = 0;
count             140 source4/libcli/smb2/find.c 		io2 = talloc_realloc(mem_ctx, *io, union smb_search_data, (*count)+1);
count             148 source4/libcli/smb2/find.c 		status = smb_raw_search_common(*io, smb_level, &b, (*io) + (*count), 
count             158 source4/libcli/smb2/find.c 		(*count)++;
count             174 source4/libcli/smb2/find.c 			 uint_t *count, union smb_search_data **io)
count             179 source4/libcli/smb2/find.c 	return smb2_find_level_recv(req, mem_ctx, f->in.level, count, io);
count             111 source4/libcli/smb2/util.c 	uint_t count, i;
count             163 source4/libcli/smb2/util.c 	status = smb2_find_level(tree, tmp_ctx, &f, &count, &list);
count             172 source4/libcli/smb2/util.c 	for (i=0;i<count;i++) {
count             101 source4/libcli/smb_composite/savefile.c 	io_write->writex.in.count     = MIN(max_xmit - 100, io->in.size);
count             136 source4/libcli/smb_composite/savefile.c 	if (state->io_write->writex.out.nwritten != state->io_write->writex.in.count ||
count             143 source4/libcli/smb_composite/savefile.c 	state->io_write->writex.in.count = MIN(max_xmit - 100, 
count             182 source4/libcli/util/clilsa.c 	for (i=0;i<rights.count;i++) {
count             206 source4/libcli/util/clilsa.c 	uint32_t count = 1;
count             221 source4/libcli/util/clilsa.c 	names.count = 0;
count             232 source4/libcli/util/clilsa.c 	r.in.count = &count;
count             233 source4/libcli/util/clilsa.c 	r.out.count = &count;
count             242 source4/libcli/util/clilsa.c 	if (names.count != 1) {
count             268 source4/libcli/util/clilsa.c 	uint32_t count = 1;
count             279 source4/libcli/util/clilsa.c 	sids.count = 0;
count             289 source4/libcli/util/clilsa.c 	r.in.count = &count;
count             290 source4/libcli/util/clilsa.c 	r.out.count = &count;
count             299 source4/libcli/util/clilsa.c 	if (sids.count != 1) {
count              84 source4/libcli/wbclient/wbclient.c 						uint32_t count,
count             102 source4/libcli/wbclient/wbclient.c 	state->req->in.count = count;
count             149 source4/libcli/wbclient/wbclient.c 						uint32_t count,
count             167 source4/libcli/wbclient/wbclient.c 	state->req->in.count = count;
count              37 source4/libcli/wbclient/wbclient.h 						uint32_t count,
count              45 source4/libcli/wbclient/wbclient.h 						uint32_t count,
count              84 source4/libnet/groupinfo.c 		msg_lookup->count = s->lookup.out.rids->count;
count              94 source4/libnet/groupinfo.c 	if (s->lookup.out.rids->count == 0) {
count             210 source4/libnet/groupman.c 	if (!s->lookupname.out.rids->count) {
count             215 source4/libnet/groupman.c 	} else if (!s->lookupname.out.rids->count > 1) {
count             828 source4/libnet/libnet_become_dc.c 	} else if (r->count != 1) {
count             871 source4/libnet/libnet_become_dc.c 	} else if (r->count != 1) {
count             900 source4/libnet/libnet_become_dc.c 	} else if (r->count != 1) {
count             929 source4/libnet/libnet_become_dc.c 	} else if (r->count != 1) {
count             963 source4/libnet/libnet_become_dc.c 	} else if (r->count != 1) {
count            1007 source4/libnet/libnet_become_dc.c 	} else if (r->count != 1) {
count            1020 source4/libnet/libnet_become_dc.c 	} else if (r->count != 1) {
count            1044 source4/libnet/libnet_become_dc.c 	} else if (r->count != 1) {
count            1059 source4/libnet/libnet_become_dc.c 	} else if (r->count != 1) {
count            1104 source4/libnet/libnet_become_dc.c 	} else if (r->count != 1) {
count            1122 source4/libnet/libnet_become_dc.c 	} else if (r->count != 1) {
count            1146 source4/libnet/libnet_become_dc.c 	} else if (r->count != 1) {
count            1161 source4/libnet/libnet_become_dc.c 	} else if (r->count != 1) {
count            1189 source4/libnet/libnet_become_dc.c 	} else if (r->count != 1) {
count            1231 source4/libnet/libnet_become_dc.c 	} else if (r->count != 1) {
count            1269 source4/libnet/libnet_become_dc.c 	} else if (r->count != 1) {
count            1323 source4/libnet/libnet_become_dc.c 	} else if (r->count != 1) {
count            2220 source4/libnet/libnet_become_dc.c 		if (r->out.ctr->ctr3.count != 1) {
count            2259 source4/libnet/libnet_become_dc.c 		if (r->out.ctr->ctr2.count != 1) {
count            2917 source4/libnet/libnet_become_dc.c 	} else if (r->count != 1) {
count             934 source4/libnet/libnet_domain.c 	uint32_t count;
count            1126 source4/libnet/libnet_domain.c 					    s->count + *s->enumdom.out.num_entries);
count            1130 source4/libnet/libnet_domain.c 	for (i = s->count; i < s->count + *s->enumdom.out.num_entries; i++)
count            1132 source4/libnet/libnet_domain.c 		struct lsa_String *domain_name = &(*s->enumdom.out.sam)->entries[i - s->count].name;
count            1141 source4/libnet/libnet_domain.c 	s->count += *s->enumdom.out.num_entries;
count            1229 source4/libnet/libnet_domain.c 		io->out.count        = s->count;
count              56 source4/libnet/libnet_domain.h 		int count;
count             439 source4/libnet/libnet_group.c 	uint32_t count;
count             650 source4/libnet/libnet_group.c 		s->count        = *s->group_list.out.num_entries;
count             653 source4/libnet/libnet_group.c 		s->groups       = talloc_array(c, struct grouplist, (*s->group_list.out.sam)->count);
count             656 source4/libnet/libnet_group.c 		for (i = 0; i < (*s->group_list.out.sam)->count; i++) {
count             710 source4/libnet/libnet_group.c 		io->out.count        = s->count;
count              64 source4/libnet/libnet_group.h 		int count;
count             173 source4/libnet/libnet_join.c 	r_crack_names.in.req->req1.count	= 1;
count             220 source4/libnet/libnet_join.c 		   || r_crack_names.out.ctr->ctr1->count != 1) {
count             274 source4/libnet/libnet_join.c 	if (res->count != 1) {
count             276 source4/libnet/libnet_join.c 						      account_dn_str, res->count);
count             381 source4/libnet/libnet_join.c 		   || r_crack_names.out.ctr->ctr1->count != 1
count             640 source4/libnet/libnet_join.c 		if (ln.out.rids->count != 1) {
count             643 source4/libnet/libnet_join.c 							      r->in.account_name, ln.out.rids->count);
count             240 source4/libnet/libnet_lookup.c 	uint32_t count;
count             300 source4/libnet/libnet_lookup.c 	s->sids.count = 0;
count             312 source4/libnet/libnet_lookup.c 	s->lookup.in.count     = &s->count;
count             313 source4/libnet/libnet_lookup.c 	s->lookup.out.count    = &s->count;
count             376 source4/libnet/libnet_lookup.c 		if (*s->lookup.out.count > 0) {
count             386 source4/libnet/libnet_lookup.c 			if (sids->count > 0) {
count             389 source4/libnet/libnet_lookup.c 				if (domains->count > 0) {
count             625 source4/libnet/libnet_passwd.c 	if (ln.out.rids->count != 1) {
count             628 source4/libnet/libnet_passwd.c 						r->samr.in.account_name, ln.out.rids->count);
count             345 source4/libnet/libnet_unbecome_dc.c 	} else if (r->count != 1) {
count             388 source4/libnet/libnet_unbecome_dc.c 	} else if (r->count != 1) {
count             465 source4/libnet/libnet_unbecome_dc.c 	} else if (r->count != 1) {
count             901 source4/libnet/libnet_user.c 	uint32_t count;
count            1113 source4/libnet/libnet_user.c 		s->count        = *s->user_list.out.num_entries;
count            1116 source4/libnet/libnet_user.c 		s->users        = talloc_array(c, struct userlist, (*s->user_list.out.sam)->count);
count            1119 source4/libnet/libnet_user.c 		for (i = 0; i < (*s->user_list.out.sam)->count; i++) {
count            1173 source4/libnet/libnet_user.c 		r->out.count = s->count;
count             146 source4/libnet/libnet_user.h 		int count;
count              83 source4/libnet/userinfo.c 		msg_lookup->count = s->lookup.out.rids->count;
count              93 source4/libnet/userinfo.c 	if (s->lookup.out.rids->count == 0) {
count             236 source4/libnet/userman.c 	if (!s->lookupname.out.rids->count) {
count             241 source4/libnet/userman.c 	} else if (!s->lookupname.out.rids->count > 1) {
count             252 source4/libnet/userman.c 		msg_lookup.count = s->lookupname.out.rids->count;
count             504 source4/libnet/userman.c 	if (!s->lookupname.out.rids->count) {
count             509 source4/libnet/userman.c 	} else if (!s->lookupname.out.rids->count > 1) {
count             520 source4/libnet/userman.c 		msg_lookup.count = s->lookupname.out.rids->count;
count             105 source4/libnet/userman.h 	uint32_t count;
count             439 source4/librpc/ndr/ndr_string.c 	uint32_t count;
count             453 source4/librpc/ndr/ndr_string.c 		for (count = 0;; count++) {
count             456 source4/librpc/ndr/ndr_string.c 			a = talloc_realloc(ndr->current_mem_ctx, a, const char *, count + 2);
count             458 source4/librpc/ndr/ndr_string.c 			a[count]   = NULL;
count             459 source4/librpc/ndr/ndr_string.c 			a[count+1]   = NULL;
count             466 source4/librpc/ndr/ndr_string.c 				a[count] = NULL;
count             469 source4/librpc/ndr/ndr_string.c 				a[count] = s;
count             495 source4/librpc/ndr/ndr_string.c 		for (count = 0; ((ndr->data_size - ndr->offset) > 0); count++) {
count             498 source4/librpc/ndr/ndr_string.c 			a = talloc_realloc(ndr->current_mem_ctx, a, const char *, count + 2);
count             500 source4/librpc/ndr/ndr_string.c 			a[count]   = NULL;
count             501 source4/librpc/ndr/ndr_string.c 			a[count+1]   = NULL;
count             507 source4/librpc/ndr/ndr_string.c 			a[count] = s;
count             527 source4/librpc/ndr/ndr_string.c 	uint32_t count;
count             537 source4/librpc/ndr/ndr_string.c 		for (count = 0; a && a[count]; count++) {
count             538 source4/librpc/ndr/ndr_string.c 			NDR_CHECK(ndr_push_string(ndr, ndr_flags, a[count]));
count             550 source4/librpc/ndr/ndr_string.c 		for (count = 0; a && a[count]; count++) {
count             551 source4/librpc/ndr/ndr_string.c 			if (count > 0) {
count             557 source4/librpc/ndr/ndr_string.c 			NDR_CHECK(ndr_push_string(ndr, ndr_flags, a[count]));
count             573 source4/librpc/ndr/ndr_string.c 	uint32_t count;
count             576 source4/librpc/ndr/ndr_string.c 	for (count = 0; a && a[count]; count++) {}
count             578 source4/librpc/ndr/ndr_string.c 	ndr->print(ndr, "%s: ARRAY(%d)", name, count);
count             580 source4/librpc/ndr/ndr_string.c 	for (i=0;i<count;i++) {
count             590 source4/librpc/ndr/ndr_string.c _PUBLIC_ size_t ndr_size_string_array(const char **a, uint32_t count, int flags)
count             597 source4/librpc/ndr/ndr_string.c 		for (i = 0; i < count; i++) {
count             602 source4/librpc/ndr/ndr_string.c 		for (i = 0; i < count; i++) {
count             627 source4/librpc/ndr/ndr_string.c _PUBLIC_ enum ndr_err_code ndr_check_string_terminator(struct ndr_pull *ndr, uint32_t count, uint32_t element_size)
count             633 source4/librpc/ndr/ndr_string.c 	ndr_pull_advance(ndr, (count - 1) * element_size);
count             341 source4/librpc/rpc/dcerpc_smb.c 	io.writex.in.count = blob->length;
count             245 source4/librpc/rpc/dcerpc_util.c 		for (i = 0; i < table->endpoints->count; i++) {
count              50 source4/nbt_server/wins/winsdb.c 	if (res->count > 1) goto failed;
count              52 source4/nbt_server/wins/winsdb.c 	if (res->count == 1) {
count              85 source4/nbt_server/wins/winsdb.c 	if (res->count > 1) goto failed;
count              87 source4/nbt_server/wins/winsdb.c 	if (res->count == 1) {
count             142 source4/nbt_server/wins/winsdb.c 	if (res->count > 1) goto failed;
count             144 source4/nbt_server/wins/winsdb.c 	if (res->count == 1) {
count             589 source4/nbt_server/wins/winsdb.c 	if (ret != LDB_SUCCESS || res->count > 1) {
count             592 source4/nbt_server/wins/winsdb.c 	} else if (res->count== 0) {
count             957 source4/nbt_server/wins/winsdb.c 	if (res->count > 0) goto skip;
count             180 source4/ntp_signd/ntp_signd.c 	if (res->count == 0) {
count             182 source4/ntp_signd/ntp_signd.c 	} else if (res->count != 1) {
count             183 source4/ntp_signd/ntp_signd.c 		DEBUG(1, ("Found SID %s %u times in SAM for NTP signing\n", dom_sid_string(tmp_ctx, sid), res->count));
count              66 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 	int count;
count              69 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 	count = gendb_search_v(ldb, mem_ctx, basedn, res, attrs, format, ap);
count              72 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 	return count;
count             227 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 	int count;
count             231 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 	count = sptr_db_search(sptr_db, mem_ctx,
count             235 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 	if (count == 0) return WERR_OK;
count             236 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 	if (count < 0) return WERR_GENERAL_FAILURE;
count             238 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 	info = talloc_array(mem_ctx, union spoolss_FormInfo, count);
count             243 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 		for (i=0; i < count; i++) {
count             263 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 	*r->out.count	= count;
count             273 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 	int count, ret;
count             286 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 		count = sptr_db_search(sptr_db, mem_ctx,
count             291 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 		if (count == 1) return WERR_FOOBAR;
count             292 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 		if (count > 1) return WERR_FOOBAR;
count             293 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 		if (count < 0) return WERR_GENERAL_FAILURE;
count             336 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 	int count, ret;
count             351 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 		count = sptr_db_search(sptr_db, mem_ctx,
count             356 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 		if (count == 0) return WERR_FOOBAR;
count             357 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 		if (count > 1) return WERR_FOOBAR;
count             358 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 		if (count < 0) return WERR_GENERAL_FAILURE;
count             401 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 	int count, ret;
count             414 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 	count = sptr_db_search(sptr_db, mem_ctx,
count             419 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 	if (count == 0) return WERR_FOOBAR;
count             420 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 	if (count > 1) return WERR_FOOBAR;
count             421 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 	if (count < 0) return WERR_GENERAL_FAILURE;
count             490 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 	int count;
count             494 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 	count = sptr_db_search(sptr_db, mem_ctx, NULL, &msgs, NULL,
count             497 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 	if (count == 0) return WERR_OK;
count             498 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 	if (count < 0) return WERR_GENERAL_FAILURE;
count             500 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 	info = talloc_array(mem_ctx, union spoolss_PrinterInfo, count);
count             505 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 		for (i = 0; i < count; i++) {
count             518 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 		for (i = 0; i < count; i++) {
count             563 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 		for (i = 0; i < count; i++) {
count             574 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 		for (i = 0; i < count; i++) {
count             591 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 	*r->out.count	= count;
count             609 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 	int count;
count             613 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 	count = sptr_db_search(sptr_db, mem_ctx, NULL, &msgs, NULL,
count             616 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 	if (count == 0) return WERR_OK;
count             617 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 	if (count < 0) return WERR_GENERAL_FAILURE;
count             619 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 	info = talloc_array(mem_ctx, union spoolss_PortInfo, count);
count             624 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 		for (i = 0; i < count; i++) {
count             630 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 		for (i=0; i < count; i++) {
count             649 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 	*r->out.count	= count;
count             659 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 	int count;
count             663 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 	count = sptr_db_search(sptr_db, mem_ctx, NULL, &msgs, NULL,
count             666 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 	if (count == 0) return WERR_OK;
count             667 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 	if (count < 0) return WERR_GENERAL_FAILURE;
count             669 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 	info = talloc_array(mem_ctx, union spoolss_MonitorInfo, count);
count             674 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 		for (i = 0; i < count; i++) {
count             680 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 		for (i=0; i < count; i++) {
count             696 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 	*r->out.count	= count;
count             707 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 	int count;
count             719 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 	count = sptr_db_search(sptr_db, mem_ctx, base_dn, &msgs, NULL,
count             723 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 	if (count == 0) return WERR_FOOBAR;
count             724 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 	if (count > 1) return WERR_FOOBAR;
count             725 source4/ntptr/simple_ldb/ntptr_simple_ldb.c 	if (count < 0) return WERR_GENERAL_FAILURE;
count              18 source4/ntvfs/cifs_posix_cli/cifsposix.h 	unsigned int count;
count              75 source4/ntvfs/cifs_posix_cli/svfs_util.c 	dir->count = 0;
count              96 source4/ntvfs/cifs_posix_cli/svfs_util.c 		uint_t i = dir->count;
count             114 source4/ntvfs/cifs_posix_cli/svfs_util.c 		if (dir->count >= allocated) {
count             130 source4/ntvfs/cifs_posix_cli/svfs_util.c 			dir->count++;
count             230 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c 	info->generic.out.num_streams = 1 + (dir?dir->count:0);
count             241 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c 	for (i=0;dir && i<dir->count;i++) {
count             549 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c 		     wr->writex.in.count,
count             864 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c 	if (dir->count < max_count) {
count             865 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c 		max_count = dir->count;
count             886 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c 	io->t2ffirst.out.count = i;
count             888 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c 	io->t2ffirst.out.end_of_search = (i == dir->count) ? 1 : 0;
count             892 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c 	    ((io->t2ffirst.in.flags & FLAG_TRANS2_FIND_CLOSE_IF_END) && (i == dir->count))) {
count             948 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c 		for (i=search->current_index+1; i <= dir->count; i++) {
count             959 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c 	if (max_count > dir->count) {
count             960 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c 		max_count = dir->count;
count             979 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c 	io->t2fnext.out.count = i - search->current_index;
count             980 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c 	io->t2fnext.out.end_of_search = (i == dir->count) ? 1 : 0;
count             986 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c 	    ((io->t2fnext.in.flags & FLAG_TRANS2_FIND_CLOSE_IF_END) && (i == dir->count))) {
count             295 source4/ntvfs/common/brlock_tdb.c 	int count=0, i;
count             340 source4/ntvfs/common/brlock_tdb.c 		count = dbuf.dsize / sizeof(*locks);
count             341 source4/ntvfs/common/brlock_tdb.c 		for (i=0; i<count; i++) {
count             350 source4/ntvfs/common/brlock_tdb.c 	locks = realloc_p(locks, struct lock_struct, count+1);
count             357 source4/ntvfs/common/brlock_tdb.c 	locks[count] = lock;
count             391 source4/ntvfs/common/brlock_tdb.c 			      struct lock_struct *locks, int count, 
count             402 source4/ntvfs/common/brlock_tdb.c 	for (i=0;i<count;i++) {
count             423 source4/ntvfs/common/brlock_tdb.c 			   struct lock_struct *locks, int count)
count             426 source4/ntvfs/common/brlock_tdb.c 	for (i=0;i<count;i++) {
count             428 source4/ntvfs/common/brlock_tdb.c 			brl_tdb_notify_unlock(brl, locks, count, &locks[i]);
count             444 source4/ntvfs/common/brlock_tdb.c 	int count, i;
count             468 source4/ntvfs/common/brlock_tdb.c 	count = dbuf.dsize / sizeof(*locks);
count             470 source4/ntvfs/common/brlock_tdb.c 	for (i=0; i<count; i++) {
count             480 source4/ntvfs/common/brlock_tdb.c 	if (i < count) goto found;
count             482 source4/ntvfs/common/brlock_tdb.c 	for (i=0; i<count; i++) {
count             494 source4/ntvfs/common/brlock_tdb.c 	if (i < count) {
count             496 source4/ntvfs/common/brlock_tdb.c 		if (count == 1) {
count             503 source4/ntvfs/common/brlock_tdb.c 			if (i < count-1) {
count             505 source4/ntvfs/common/brlock_tdb.c 					sizeof(*locks)*((count-1) - i));
count             507 source4/ntvfs/common/brlock_tdb.c 			count--;
count             510 source4/ntvfs/common/brlock_tdb.c 			brl_tdb_notify_unlock(brl, locks, count, &removed_lock);
count             512 source4/ntvfs/common/brlock_tdb.c 			dbuf.dsize = count * sizeof(*locks);
count             545 source4/ntvfs/common/brlock_tdb.c 	int count, i;
count             564 source4/ntvfs/common/brlock_tdb.c 	count = dbuf.dsize / sizeof(*locks);
count             566 source4/ntvfs/common/brlock_tdb.c 	for (i=0; i<count; i++) {
count             573 source4/ntvfs/common/brlock_tdb.c 			if (count == 1) {
count             579 source4/ntvfs/common/brlock_tdb.c 				if (i < count-1) {
count             581 source4/ntvfs/common/brlock_tdb.c 						sizeof(*locks)*((count-1) - i));
count             583 source4/ntvfs/common/brlock_tdb.c 				count--;
count             584 source4/ntvfs/common/brlock_tdb.c 				dbuf.dsize = count * sizeof(*locks);
count             617 source4/ntvfs/common/brlock_tdb.c 	int count, i;
count             638 source4/ntvfs/common/brlock_tdb.c 	count = dbuf.dsize / sizeof(*locks);
count             640 source4/ntvfs/common/brlock_tdb.c 	for (i=0; i<count; i++) {
count             659 source4/ntvfs/common/brlock_tdb.c 	int count, i, dcount=0;
count             678 source4/ntvfs/common/brlock_tdb.c 	count = dbuf.dsize / sizeof(*locks);
count             680 source4/ntvfs/common/brlock_tdb.c 	for (i=0; i<count; i++) {
count             687 source4/ntvfs/common/brlock_tdb.c 			if (count > 1 && i < count-1) {
count             689 source4/ntvfs/common/brlock_tdb.c 					sizeof(*locks)*((count-1) - i));
count             691 source4/ntvfs/common/brlock_tdb.c 			count--;
count             699 source4/ntvfs/common/brlock_tdb.c 	if (count == 0) {
count             707 source4/ntvfs/common/brlock_tdb.c 		brl_tdb_notify_all(brl, locks, count);
count             709 source4/ntvfs/common/brlock_tdb.c 		dbuf.dsize = count * sizeof(*locks);
count             282 source4/ntvfs/ipc/ipc_rap.c 	for (r.out.count = 0; r.out.count < r.out.available; r.out.count++) {
count             284 source4/ntvfs/ipc/ipc_rap.c 		int i = r.out.count;
count             325 source4/ntvfs/ipc/ipc_rap.c 	NDR_RETURN(ndr_push_uint16(call->ndr_push_param, NDR_SCALARS, r.out.count));
count             364 source4/ntvfs/ipc/ipc_rap.c 	for (r.out.count = 0; r.out.count < r.out.available; r.out.count++) {
count             366 source4/ntvfs/ipc/ipc_rap.c 		int i = r.out.count;
count             409 source4/ntvfs/ipc/ipc_rap.c 	NDR_RETURN(ndr_push_uint16(call->ndr_push_param, NDR_SCALARS, r.out.count));
count              43 source4/ntvfs/ipc/rap_server.c 	int i, j, count;
count              54 source4/ntvfs/ipc/rap_server.c 	nterr = share_list_all(mem_ctx, sctx, &count, &snames);
count              59 source4/ntvfs/ipc/rap_server.c 	r->out.available = count;
count             470 source4/ntvfs/ipc/vfs_ipc.c 	data.length = wr->writex.in.count;
count             493 source4/ntvfs/nbench/vfs_nbench.c 			   wr->writex.in.count,
count             505 source4/ntvfs/nbench/vfs_nbench.c 			   wr->write.in.count,
count             715 source4/ntvfs/nbench/vfs_nbench.c 			   (int)lck->lockx.in.locks[0].count,
count             722 source4/ntvfs/nbench/vfs_nbench.c 			   (int)lck->lockx.in.locks[0].count,
count             829 source4/ntvfs/nbench/vfs_nbench.c 			   io->t2ffirst.out.count,
count            1023 source4/ntvfs/ntvfs_generic.c 		locks->count = lck->lock.in.count;
count            1036 source4/ntvfs/ntvfs_generic.c 		locks->count = lck->unlock.in.count;
count            1080 source4/ntvfs/ntvfs_generic.c 			lck2->generic.in.locks[i].count  = lck->smb2.in.locks[i].length;
count            1152 source4/ntvfs/ntvfs_generic.c 		lck->unlock.in.count		= wr->writeunlock.in.count;
count            1155 source4/ntvfs/ntvfs_generic.c 		if (lck->unlock.in.count != 0) {
count            1176 source4/ntvfs/ntvfs_generic.c 		if (wr2->generic.in.count != 0) {
count            1235 source4/ntvfs/ntvfs_generic.c 		wr2->writex.in.count     = wr->write.in.count;
count            1245 source4/ntvfs/ntvfs_generic.c 		wr2->writex.in.count     = wr->writeunlock.in.count;
count            1255 source4/ntvfs/ntvfs_generic.c 		wr2->writex.in.count     = wr->writeclose.in.count;
count            1265 source4/ntvfs/ntvfs_generic.c 		wr2->writex.in.count     = wr->splwrite.in.count;
count            1275 source4/ntvfs/ntvfs_generic.c 		wr2->writex.in.count     = wr->smb2.in.data.length;
count            1349 source4/ntvfs/ntvfs_generic.c 		rd2->readx.in.mincnt    = rd->read.in.count;
count            1350 source4/ntvfs/ntvfs_generic.c 		rd2->readx.in.maxcnt    = rd->read.in.count;
count            1378 source4/ntvfs/ntvfs_generic.c 		lck->lock.in.count	= rd->lockread.in.count;
count            1385 source4/ntvfs/ntvfs_generic.c 		rd2->readx.in.mincnt    = rd->lockread.in.count;
count            1386 source4/ntvfs/ntvfs_generic.c 		rd2->readx.in.maxcnt    = rd->lockread.in.count;
count             149 source4/ntvfs/posix/pvfs_aio.c 		       wr->writex.in.count, wr->writex.in.offset);
count              35 source4/ntvfs/posix/pvfs_lock.c 			 uint64_t offset, uint64_t count,
count              45 source4/ntvfs/posix/pvfs_lock.c 			    offset, count, rw);
count              77 source4/ntvfs/posix/pvfs_lock.c 			   locks[i].count);
count             130 source4/ntvfs/posix/pvfs_lock.c 				  locks[pending->pending_lock].count,
count             180 source4/ntvfs/posix/pvfs_lock.c 				  locks[i].count,
count             258 source4/ntvfs/posix/pvfs_lock.c 				    p->lck->lockx.in.locks[i].count != lck->lockx.in.locks[i].count) {
count             353 source4/ntvfs/posix/pvfs_lock.c 				    locks[i].count);
count             372 source4/ntvfs/posix/pvfs_lock.c 				  locks[i].count,
count             397 source4/ntvfs/posix/pvfs_lock.c 					   locks[i].count);
count             395 source4/ntvfs/posix/pvfs_search.c 	io->search_first.out.count = reply_count;
count             448 source4/ntvfs/posix/pvfs_search.c 	io->search_next.out.count = reply_count;
count             540 source4/ntvfs/posix/pvfs_search.c 	io->t2ffirst.out.count = reply_count;
count             610 source4/ntvfs/posix/pvfs_search.c 	io->t2fnext.out.count = reply_count;
count             418 source4/ntvfs/posix/pvfs_streams.c 			 struct pvfs_file_handle *h, void *data, size_t count, off_t offset)
count             422 source4/ntvfs/posix/pvfs_streams.c 	if (count == 0) {
count             425 source4/ntvfs/posix/pvfs_streams.c 	status = pvfs_stream_load(pvfs, h, h->name, h->fd, offset+count, &blob);
count             434 source4/ntvfs/posix/pvfs_streams.c 	if (count > blob.length - offset) {
count             435 source4/ntvfs/posix/pvfs_streams.c 		count = blob.length - offset;
count             437 source4/ntvfs/posix/pvfs_streams.c 	memcpy(data, blob.data + offset, count);
count             439 source4/ntvfs/posix/pvfs_streams.c 	return count;
count             447 source4/ntvfs/posix/pvfs_streams.c 			  struct pvfs_file_handle *h, const void *data, size_t count, off_t offset)
count             451 source4/ntvfs/posix/pvfs_streams.c 	if (count == 0) {
count             455 source4/ntvfs/posix/pvfs_streams.c 	if (count+offset > XATTR_MAX_STREAM_SIZE) {
count             456 source4/ntvfs/posix/pvfs_streams.c 		if (!pvfs->ea_db || count+offset > XATTR_MAX_STREAM_SIZE_TDB) {
count             463 source4/ntvfs/posix/pvfs_streams.c 	status = pvfs_stream_load(pvfs, h, h->name, h->fd, offset+count, &blob);
count             467 source4/ntvfs/posix/pvfs_streams.c 	if (count+offset > blob.length) {
count             468 source4/ntvfs/posix/pvfs_streams.c 		blob.data = talloc_realloc(blob.data, blob.data, uint8_t, count+offset);
count             476 source4/ntvfs/posix/pvfs_streams.c 		blob.length = count+offset;
count             478 source4/ntvfs/posix/pvfs_streams.c 	memcpy(blob.data + offset, data, count);
count             499 source4/ntvfs/posix/pvfs_streams.c 	return count;
count             111 source4/ntvfs/posix/pvfs_write.c 				 wr->writex.in.count,
count             124 source4/ntvfs/posix/pvfs_write.c 					wr->writex.in.count,
count             139 source4/ntvfs/posix/pvfs_write.c 			     wr->writex.in.count,
count              18 source4/ntvfs/simple/svfs.h 	unsigned int count;
count              72 source4/ntvfs/simple/svfs_util.c 	dir->count = 0;
count              93 source4/ntvfs/simple/svfs_util.c 		uint_t i = dir->count;
count             111 source4/ntvfs/simple/svfs_util.c 		if (dir->count >= allocated) {
count             127 source4/ntvfs/simple/svfs_util.c 			dir->count++;
count             227 source4/ntvfs/simple/vfs_simple.c 	info->generic.out.num_streams = 1 + (dir?dir->count:0);
count             238 source4/ntvfs/simple/vfs_simple.c 	for (i=0;dir && i<dir->count;i++) {
count             546 source4/ntvfs/simple/vfs_simple.c 		     wr->writex.in.count,
count             861 source4/ntvfs/simple/vfs_simple.c 	if (dir->count < max_count) {
count             862 source4/ntvfs/simple/vfs_simple.c 		max_count = dir->count;
count             883 source4/ntvfs/simple/vfs_simple.c 	io->t2ffirst.out.count = i;
count             885 source4/ntvfs/simple/vfs_simple.c 	io->t2ffirst.out.end_of_search = (i == dir->count) ? 1 : 0;
count             889 source4/ntvfs/simple/vfs_simple.c 	    ((io->t2ffirst.in.flags & FLAG_TRANS2_FIND_CLOSE_IF_END) && (i == dir->count))) {
count             945 source4/ntvfs/simple/vfs_simple.c 		for (i=search->current_index+1; i <= dir->count; i++) {
count             956 source4/ntvfs/simple/vfs_simple.c 	if (max_count > dir->count) {
count             957 source4/ntvfs/simple/vfs_simple.c 		max_count = dir->count;
count             976 source4/ntvfs/simple/vfs_simple.c 	io->t2fnext.out.count = i - search->current_index;
count             977 source4/ntvfs/simple/vfs_simple.c 	io->t2fnext.out.end_of_search = (i == dir->count) ? 1 : 0;
count             983 source4/ntvfs/simple/vfs_simple.c 	    ((io->t2fnext.in.flags & FLAG_TRANS2_FIND_CLOSE_IF_END) && (i == dir->count))) {
count             697 source4/ntvfs/smb2/vfs_smb2.c 	uint_t count, i;
count             745 source4/ntvfs/smb2/vfs_smb2.c 	status = smb2_find_level(p->tree, req, &f, &count, &data);
count             748 source4/ntvfs/smb2/vfs_smb2.c 	for (i=0;i<count;i++) {
count             753 source4/ntvfs/smb2/vfs_smb2.c 	io->t2ffirst.out.count = i;
count              46 source4/ntvfs/sysdep/sys_lease_linux.c 				       int signum, int count,
count              46 source4/param/share.c NTSTATUS share_list_all(TALLOC_CTX *mem_ctx, struct share_context *sctx, int *count, const char ***names)
count              48 source4/param/share.c 	return sctx->ops->list_all(mem_ctx, sctx, count, names);
count              56 source4/param/share.c NTSTATUS share_create(struct share_context *sctx, const char *name, struct share_info *info, int count)
count              59 source4/param/share.c 		return sctx->ops->create(sctx, name, info, count);
count              64 source4/param/share.c NTSTATUS share_set(struct share_context *sctx, const char *name, struct share_info *info, int count)
count              67 source4/param/share.c 		return sctx->ops->set(sctx, name, info, count);
count             282 source4/param/share_classic.c 				  int *count,
count             307 source4/param/share_classic.c 	*count = num_services;
count             160 source4/param/share_ldb.c 				 int *count,
count             184 source4/param/share_ldb.c 	n = talloc_array(mem_ctx, const char *, res->count);
count             191 source4/param/share_ldb.c 	for (i = 0, j = 0; i < res->count; i++) {
count             201 source4/param/share_ldb.c 	*count = j;
count             229 source4/param/share_ldb.c 	if (ret != LDB_SUCCESS || res->count > 1) {
count             232 source4/param/share_ldb.c 	} else if (res->count != 1) {
count             290 source4/param/share_ldb.c static NTSTATUS sldb_create(struct share_context *ctx, const char *name, struct share_info *info, int count)
count             298 source4/param/share_ldb.c 	for (i = 0, j = 0; i < count && j != 0x03; i++) {
count             339 source4/param/share_ldb.c 	for (i = 0; i < count; i++) {
count             429 source4/param/share_ldb.c static NTSTATUS sldb_set(struct share_context *ctx, const char *name, struct share_info *info, int count)
count             466 source4/param/share_ldb.c 	for (i = 0; i < count; i++) {
count              32 source4/param/tests/share.c 	int count;
count              35 source4/param/tests/share.c 	torture_assert_ntstatus_ok(tctx, share_list_all(tctx, ctx, &count, &names),
count              46 source4/param/tests/share.c 	int count;
count              63 source4/param/tests/share.c 	torture_assert_ntstatus_ok(tctx, share_list_all(tctx, ctx, &count, &names),
count              66 source4/param/tests/share.c 	torture_assert(tctx, count >= 1, "creating share failed");
count              69 source4/param/tests/share.c 	for (i = 0; i < count; i++) {
count              38 source4/rpc_server/dcesrv_mgmt.c 	vector->count = 0;
count              41 source4/rpc_server/dcesrv_mgmt.c 		vector->count++;
count              42 source4/rpc_server/dcesrv_mgmt.c 		vector->if_id = talloc_realloc(mem_ctx, vector->if_id, struct ndr_syntax_id_p, vector->count);
count              43 source4/rpc_server/dcesrv_mgmt.c 		vector->if_id[vector->count-1].id = &l->iface.syntax_id;
count              58 source4/rpc_server/dcesrv_mgmt.c 	r->out.statistics->count = r->in.max_count;
count              78 source4/rpc_server/drsuapi/dcesrv_drsuapi.c 	if (site_res->count != 1) {
count              95 source4/rpc_server/drsuapi/dcesrv_drsuapi.c 	if (ntds_res->count != 1) {
count             352 source4/rpc_server/drsuapi/dcesrv_drsuapi.c 			int count;
count             358 source4/rpc_server/drsuapi/dcesrv_drsuapi.c 			count = r->in.req->req1.count;
count             359 source4/rpc_server/drsuapi/dcesrv_drsuapi.c 			names = talloc_array(mem_ctx, struct drsuapi_DsNameInfo1, count);
count             362 source4/rpc_server/drsuapi/dcesrv_drsuapi.c 			for (i=0; i < count; i++) {
count             374 source4/rpc_server/drsuapi/dcesrv_drsuapi.c 			ctr1->count = count;
count             406 source4/rpc_server/drsuapi/dcesrv_drsuapi.c 			int count, i, ret;
count             408 source4/rpc_server/drsuapi/dcesrv_drsuapi.c 			count = req->count;
count             422 source4/rpc_server/drsuapi/dcesrv_drsuapi.c 			for (i = 0; i < count; i++) {
count             562 source4/rpc_server/drsuapi/dcesrv_drsuapi.c 		ctr1->count = res->count;
count             565 source4/rpc_server/drsuapi/dcesrv_drsuapi.c 						res->count);
count             566 source4/rpc_server/drsuapi/dcesrv_drsuapi.c 		for (i=0; i < res->count; i++) {
count             583 source4/rpc_server/drsuapi/dcesrv_drsuapi.c 			if (ret == LDB_SUCCESS && res_account->count == 1) {
count             604 source4/rpc_server/drsuapi/dcesrv_drsuapi.c 					if (res_domain->count == 1) {
count             625 source4/rpc_server/drsuapi/dcesrv_drsuapi.c 		ctr2->count = res->count;
count             628 source4/rpc_server/drsuapi/dcesrv_drsuapi.c 						 res->count);
count             629 source4/rpc_server/drsuapi/dcesrv_drsuapi.c 		for (i=0; i < res->count; i++) {
count             653 source4/rpc_server/drsuapi/dcesrv_drsuapi.c 			if (ret == LDB_SUCCESS && res_ntds->count == 1) {
count             667 source4/rpc_server/drsuapi/dcesrv_drsuapi.c 			if (ret == LDB_SUCCESS && res_site->count == 1) {
count             679 source4/rpc_server/drsuapi/dcesrv_drsuapi.c 			if (ret == LDB_SUCCESS && res_account->count == 1) {
count             698 source4/rpc_server/drsuapi/dcesrv_drsuapi.c 					if (ret == LDB_SUCCESS && res_domain->count == 1) {
count             103 source4/rpc_server/epmapper/rpc_epmapper.c 		uint32_t count;
count             122 source4/rpc_server/epmapper/rpc_epmapper.c 		eps->count = build_ep_list(h, dce_call->conn->dce_ctx->endpoint_list, &eps->e);
count             127 source4/rpc_server/epmapper/rpc_epmapper.c 	if (num_ents > eps->count) {
count             128 source4/rpc_server/epmapper/rpc_epmapper.c 		num_ents = eps->count;
count             157 source4/rpc_server/epmapper/rpc_epmapper.c 	eps->count -= num_ents;
count             171 source4/rpc_server/epmapper/rpc_epmapper.c 	uint32_t count;
count             178 source4/rpc_server/epmapper/rpc_epmapper.c 	count = build_ep_list(mem_ctx, dce_call->conn->dce_ctx->endpoint_list, &eps);
count             221 source4/rpc_server/epmapper/rpc_epmapper.c 	for (i=0;i<count;i++) {
count             242 source4/rpc_server/lsa/dcesrv_lsa.c 	       r->out.privs->count < r->in.max_count) {
count             248 source4/rpc_server/lsa/dcesrv_lsa.c 						       r->out.privs->count+1);
count             252 source4/rpc_server/lsa/dcesrv_lsa.c 		e = &r->out.privs->privs[r->out.privs->count];
count             256 source4/rpc_server/lsa/dcesrv_lsa.c 		r->out.privs->count++;
count             607 source4/rpc_server/lsa/dcesrv_lsa.c 	uint32_t count;
count             626 source4/rpc_server/lsa/dcesrv_lsa.c 	count = ret - *r->in.resume_handle;
count             627 source4/rpc_server/lsa/dcesrv_lsa.c 	if (count > r->in.num_entries) {
count             628 source4/rpc_server/lsa/dcesrv_lsa.c 		count = r->in.num_entries;
count             631 source4/rpc_server/lsa/dcesrv_lsa.c 	if (count == 0) {
count             635 source4/rpc_server/lsa/dcesrv_lsa.c 	r->out.sids->sids = talloc_array(r->out.sids, struct lsa_SidPtr, count);
count             640 source4/rpc_server/lsa/dcesrv_lsa.c 	for (i=0;i<count;i++) {
count             648 source4/rpc_server/lsa/dcesrv_lsa.c 	r->out.sids->num_sids = count;
count             649 source4/rpc_server/lsa/dcesrv_lsa.c 	*r->out.resume_handle = count + *r->in.resume_handle;
count             722 source4/rpc_server/lsa/dcesrv_lsa.c 		auth_struct.outgoing.count = 0;
count             723 source4/rpc_server/lsa/dcesrv_lsa.c 		auth_struct.incoming.count = 0;
count             736 source4/rpc_server/lsa/dcesrv_lsa.c 			if (auth_struct.incoming.count > 1) {
count             742 source4/rpc_server/lsa/dcesrv_lsa.c 	if (auth_struct.incoming.count) {
count             746 source4/rpc_server/lsa/dcesrv_lsa.c 		incoming.count = auth_struct.incoming.count;
count             761 source4/rpc_server/lsa/dcesrv_lsa.c 		incoming.previous->array = talloc_array(mem_ctx, struct AuthenticationInformation, incoming.count);
count             766 source4/rpc_server/lsa/dcesrv_lsa.c 		for (i = 0; i < incoming.count; i++) {
count             781 source4/rpc_server/lsa/dcesrv_lsa.c 	if (auth_struct.outgoing.count) {
count             785 source4/rpc_server/lsa/dcesrv_lsa.c 		outgoing.count = auth_struct.outgoing.count;
count             800 source4/rpc_server/lsa/dcesrv_lsa.c 		outgoing.previous->array = talloc_array(mem_ctx, struct AuthenticationInformation, outgoing.count);
count             805 source4/rpc_server/lsa/dcesrv_lsa.c 		for (i = 0; i < outgoing.count; i++) {
count             967 source4/rpc_server/lsa/dcesrv_lsa.c 		if (auth_struct.incoming.count) {
count             969 source4/rpc_server/lsa/dcesrv_lsa.c 			for (i=0; i < auth_struct.incoming.count; i++ ) {
count            1529 source4/rpc_server/lsa/dcesrv_lsa.c 	int count, i;
count            1534 source4/rpc_server/lsa/dcesrv_lsa.c 	r->out.domains->count = 0;
count            1542 source4/rpc_server/lsa/dcesrv_lsa.c 	count = gendb_search(policy_state->sam_ldb, mem_ctx, policy_state->system_dn, &domains, attrs, 
count            1544 source4/rpc_server/lsa/dcesrv_lsa.c 	if (count == -1) {
count            1549 source4/rpc_server/lsa/dcesrv_lsa.c 	entries = talloc_array(mem_ctx, struct lsa_DomainInfo, count);
count            1553 source4/rpc_server/lsa/dcesrv_lsa.c 	for (i=0;i<count;i++) {
count            1559 source4/rpc_server/lsa/dcesrv_lsa.c 	qsort(entries, count, sizeof(*entries), 
count            1562 source4/rpc_server/lsa/dcesrv_lsa.c 	if (*r->in.resume_handle >= count) {
count            1570 source4/rpc_server/lsa/dcesrv_lsa.c 	r->out.domains->count = count - *r->in.resume_handle;
count            1571 source4/rpc_server/lsa/dcesrv_lsa.c 	r->out.domains->count = MIN(r->out.domains->count, 
count            1575 source4/rpc_server/lsa/dcesrv_lsa.c 	r->out.domains->count = r->out.domains->count;
count            1577 source4/rpc_server/lsa/dcesrv_lsa.c 	if (r->out.domains->count < count - *r->in.resume_handle) {
count            1578 source4/rpc_server/lsa/dcesrv_lsa.c 		*r->out.resume_handle = *r->in.resume_handle + r->out.domains->count;
count            1614 source4/rpc_server/lsa/dcesrv_lsa.c 	int count, i;
count            1619 source4/rpc_server/lsa/dcesrv_lsa.c 	r->out.domains->count = 0;
count            1627 source4/rpc_server/lsa/dcesrv_lsa.c 	count = gendb_search(policy_state->sam_ldb, mem_ctx, policy_state->system_dn, &domains, attrs, 
count            1629 source4/rpc_server/lsa/dcesrv_lsa.c 	if (count == -1) {
count            1634 source4/rpc_server/lsa/dcesrv_lsa.c 	entries = talloc_array(mem_ctx, struct lsa_TrustDomainInfoInfoEx, count);
count            1638 source4/rpc_server/lsa/dcesrv_lsa.c 	for (i=0;i<count;i++) {
count            1646 source4/rpc_server/lsa/dcesrv_lsa.c 	qsort(entries, count, sizeof(*entries), 
count            1649 source4/rpc_server/lsa/dcesrv_lsa.c 	if (*r->in.resume_handle >= count) {
count            1657 source4/rpc_server/lsa/dcesrv_lsa.c 	r->out.domains->count = count - *r->in.resume_handle;
count            1658 source4/rpc_server/lsa/dcesrv_lsa.c 	r->out.domains->count = MIN(r->out.domains->count, 
count            1662 source4/rpc_server/lsa/dcesrv_lsa.c 	r->out.domains->count = r->out.domains->count;
count            1664 source4/rpc_server/lsa/dcesrv_lsa.c 	if (r->out.domains->count < count - *r->in.resume_handle) {
count            1665 source4/rpc_server/lsa/dcesrv_lsa.c 		*r->out.resume_handle = *r->in.resume_handle + r->out.domains->count;
count            1741 source4/rpc_server/lsa/dcesrv_lsa.c 	privs->count = 0;
count            1779 source4/rpc_server/lsa/dcesrv_lsa.c 	privs->count = el->num_values;
count            1828 source4/rpc_server/lsa/dcesrv_lsa.c 	r->out.rights->count = el->num_values;
count            1830 source4/rpc_server/lsa/dcesrv_lsa.c 					    struct lsa_StringLarge, r->out.rights->count);
count            1902 source4/rpc_server/lsa/dcesrv_lsa.c 	for (i=0;i<rights->count;i++) {
count            1909 source4/rpc_server/lsa/dcesrv_lsa.c 			for (j=0;j<r2.out.rights->count;j++) {
count            1915 source4/rpc_server/lsa/dcesrv_lsa.c 			if (j != r2.out.rights->count) continue;
count            1958 source4/rpc_server/lsa/dcesrv_lsa.c 	rights.count = r->in.privs->count;
count            1959 source4/rpc_server/lsa/dcesrv_lsa.c 	rights.names = talloc_array(mem_ctx, struct lsa_StringLarge, rights.count);
count            1963 source4/rpc_server/lsa/dcesrv_lsa.c 	for (i=0;i<rights.count;i++) {
count            2020 source4/rpc_server/lsa/dcesrv_lsa.c 	rights->count = r->in.privs->count;
count            2021 source4/rpc_server/lsa/dcesrv_lsa.c 	rights->names = talloc_array(mem_ctx, struct lsa_StringLarge, rights->count);
count            2025 source4/rpc_server/lsa/dcesrv_lsa.c 	for (i=0;i<rights->count;i++) {
count            2077 source4/rpc_server/lsa/dcesrv_lsa.c 	privs->count = 0;
count            2091 source4/rpc_server/lsa/dcesrv_lsa.c 	for (i = 0; i < privs->count; i++) {
count              79 source4/rpc_server/lsa/lsa_init.c 	if (dom_res->count != 1) {
count             106 source4/rpc_server/lsa/lsa_init.c 	if (ref_res->count != 1) {
count             136 source4/rpc_server/lsa/lsa_init.c 	if (forest_ref_res->count != 1) {
count             435 source4/rpc_server/lsa/lsa_lookup.c 	for (i=0;i<domains->count;i++) {
count             445 source4/rpc_server/lsa/lsa_lookup.c 					  domains->count+1);
count             451 source4/rpc_server/lsa/lsa_lookup.c 	domains->count++;
count             452 source4/rpc_server/lsa/lsa_lookup.c 	domains->max_size = LSA_REF_DOMAIN_LIST_MULTIPLIER * domains->count;
count             558 source4/rpc_server/lsa/lsa_lookup.c 	*r->out.count = 0;
count             574 source4/rpc_server/lsa/lsa_lookup.c 		r->out.names->count++;
count             607 source4/rpc_server/lsa/lsa_lookup.c 		(*r->out.count)++;
count             610 source4/rpc_server/lsa/lsa_lookup.c 	if (*r->out.count == 0) {
count             613 source4/rpc_server/lsa/lsa_lookup.c 	if (*r->out.count != r->in.sids->num_sids) {
count             660 source4/rpc_server/lsa/lsa_lookup.c 	r2.in.count    = r->in.count;
count             663 source4/rpc_server/lsa/lsa_lookup.c 	r2.out.count   = r->out.count;
count             671 source4/rpc_server/lsa/lsa_lookup.c 	r->out.count   = r2.out.count;
count             693 source4/rpc_server/lsa/lsa_lookup.c 	r2.in.count    = r->in.count;
count             696 source4/rpc_server/lsa/lsa_lookup.c 	r2.out.count   = r->out.count;
count             714 source4/rpc_server/lsa/lsa_lookup.c 	r->out.names->count = r2.out.names->count;
count             716 source4/rpc_server/lsa/lsa_lookup.c 					     r->out.names->count);
count             720 source4/rpc_server/lsa/lsa_lookup.c 	for (i=0;i<r->out.names->count;i++) {
count             765 source4/rpc_server/lsa/lsa_lookup.c 	*r->out.count = 0;
count             781 source4/rpc_server/lsa/lsa_lookup.c 		r->out.sids->count++;
count             804 source4/rpc_server/lsa/lsa_lookup.c 		(*r->out.count)++;
count             807 source4/rpc_server/lsa/lsa_lookup.c 	if (*r->out.count == 0) {
count             810 source4/rpc_server/lsa/lsa_lookup.c 	if (*r->out.count != r->in.num_names) {
count             856 source4/rpc_server/lsa/lsa_lookup.c 	r2.in.count = r->in.count;
count             861 source4/rpc_server/lsa/lsa_lookup.c 	r2.out.count = r->out.count;
count             867 source4/rpc_server/lsa/lsa_lookup.c 	r->out.count = r2.out.count;
count             906 source4/rpc_server/lsa/lsa_lookup.c 	*r->out.count = 0;
count             921 source4/rpc_server/lsa/lsa_lookup.c 		r->out.sids->count++;
count             948 source4/rpc_server/lsa/lsa_lookup.c 		(*r->out.count)++;
count             951 source4/rpc_server/lsa/lsa_lookup.c 	if (*r->out.count == 0) {
count             954 source4/rpc_server/lsa/lsa_lookup.c 	if (*r->out.count != r->in.num_names) {
count             978 source4/rpc_server/lsa/lsa_lookup.c 	r2.in.count     = r->in.count;
count             981 source4/rpc_server/lsa/lsa_lookup.c 	r2.out.count    = r->out.count;
count             993 source4/rpc_server/lsa/lsa_lookup.c 	r->out.sids->count = r2.out.sids->count;
count             995 source4/rpc_server/lsa/lsa_lookup.c 					   r->out.sids->count);
count             999 source4/rpc_server/lsa/lsa_lookup.c 	for (i=0;i<r->out.sids->count;i++) {
count            1417 source4/rpc_server/netlogon/dcerpc_netlogon.c 	trusts->count = 1; /* ?? */
count             212 source4/rpc_server/remote/dcesrv_remote.c 	for (i=0;i<table->endpoints->count;i++) {
count             365 source4/rpc_server/samr/dcesrv_samr.c 	*r->out.resume_handle = dom_res->count;
count             369 source4/rpc_server/samr/dcesrv_samr.c 	if (start_i >= dom_res->count) {
count             379 source4/rpc_server/samr/dcesrv_samr.c 	array->count = 0;
count             382 source4/rpc_server/samr/dcesrv_samr.c 	array->entries = talloc_array(mem_ctx, struct samr_SamEntry, dom_res->count - start_i);
count             387 source4/rpc_server/samr/dcesrv_samr.c 	for (i=0;i<dom_res->count-start_i;i++) {
count             399 source4/rpc_server/samr/dcesrv_samr.c 		if (ref_res->count == 1) {
count             408 source4/rpc_server/samr/dcesrv_samr.c 	array->count = *r->out.num_entries;
count            1151 source4/rpc_server/samr/dcesrv_samr.c 	int ldb_cnt, count, i, first;
count            1181 source4/rpc_server/samr/dcesrv_samr.c 	count = 0;
count            1191 source4/rpc_server/samr/dcesrv_samr.c 		entries[count].idx =
count            1193 source4/rpc_server/samr/dcesrv_samr.c 		entries[count].name.string =
count            1195 source4/rpc_server/samr/dcesrv_samr.c 		count += 1;
count            1199 source4/rpc_server/samr/dcesrv_samr.c 	qsort(entries, count, sizeof(struct samr_SamEntry), 
count            1204 source4/rpc_server/samr/dcesrv_samr.c 	     first<count && entries[first].idx <= *r->in.resume_handle;
count            1209 source4/rpc_server/samr/dcesrv_samr.c 	*r->out.num_entries = count - first;
count            1219 source4/rpc_server/samr/dcesrv_samr.c 	sam->count = *r->out.num_entries;
count            1223 source4/rpc_server/samr/dcesrv_samr.c 	if (*r->out.num_entries < count - first) {
count            1534 source4/rpc_server/samr/dcesrv_samr.c 	entries = talloc_array(mem_ctx, struct samr_SamEntry, res->count);
count            1539 source4/rpc_server/samr/dcesrv_samr.c 	for (i=0;i<res->count;i++) {
count            1572 source4/rpc_server/samr/dcesrv_samr.c 	sam->count = *r->out.num_entries;
count            1707 source4/rpc_server/samr/dcesrv_samr.c 	int ldb_cnt, count, i, first;
count            1743 source4/rpc_server/samr/dcesrv_samr.c 	count = 0;
count            1754 source4/rpc_server/samr/dcesrv_samr.c 		entries[count].idx =
count            1756 source4/rpc_server/samr/dcesrv_samr.c 		entries[count].name.string =
count            1758 source4/rpc_server/samr/dcesrv_samr.c 		count += 1;
count            1762 source4/rpc_server/samr/dcesrv_samr.c 	qsort(entries, count, sizeof(struct samr_SamEntry), 
count            1767 source4/rpc_server/samr/dcesrv_samr.c 	     first<count && entries[first].idx <= *r->in.resume_handle;
count            1770 source4/rpc_server/samr/dcesrv_samr.c 	if (first == count) {
count            1774 source4/rpc_server/samr/dcesrv_samr.c 	*r->out.num_entries = count - first;
count            1783 source4/rpc_server/samr/dcesrv_samr.c 	sam->count = *r->out.num_entries;
count            1787 source4/rpc_server/samr/dcesrv_samr.c 	if (*r->out.num_entries < count - first) {
count            1806 source4/rpc_server/samr/dcesrv_samr.c 	int i, count = 0;
count            1843 source4/rpc_server/samr/dcesrv_samr.c 		count = samdb_search_domain(d_state->sam_ctx, mem_ctx,
count            1846 source4/rpc_server/samr/dcesrv_samr.c 		if (count < 0)
count            1850 source4/rpc_server/samr/dcesrv_samr.c 	r->out.rids->count = 0;
count            1851 source4/rpc_server/samr/dcesrv_samr.c 	r->out.rids->ids = talloc_array(mem_ctx, uint32_t, count);
count            1855 source4/rpc_server/samr/dcesrv_samr.c 	for (i=0; i<count; i++) {
count            1865 source4/rpc_server/samr/dcesrv_samr.c 		r->out.rids->ids[r->out.rids->count] =
count            1867 source4/rpc_server/samr/dcesrv_samr.c 		r->out.rids->count += 1;
count            1885 source4/rpc_server/samr/dcesrv_samr.c 	int count;
count            1903 source4/rpc_server/samr/dcesrv_samr.c 	r->out.rids->count = r->in.num_names;
count            1904 source4/rpc_server/samr/dcesrv_samr.c 	r->out.types->count = r->in.num_names;
count            1916 source4/rpc_server/samr/dcesrv_samr.c 		count = gendb_search(d_state->sam_ctx, mem_ctx, d_state->domain_dn, &res, attrs, 
count            1919 source4/rpc_server/samr/dcesrv_samr.c 		if (count != 1) {
count            1988 source4/rpc_server/samr/dcesrv_samr.c 		int count;
count            2003 source4/rpc_server/samr/dcesrv_samr.c 		count = gendb_search(d_state->sam_ctx, mem_ctx,
count            2007 source4/rpc_server/samr/dcesrv_samr.c 		if (count != 1) {
count            2031 source4/rpc_server/samr/dcesrv_samr.c 	r->out.names->count = r->in.num_rids;
count            2034 source4/rpc_server/samr/dcesrv_samr.c 	r->out.types->count = r->in.num_rids;
count            2148 source4/rpc_server/samr/dcesrv_samr.c 	if (res->count != 1) {
count            2149 source4/rpc_server/samr/dcesrv_samr.c 		DEBUG(2, ("Error finding group info, got %d entries\n", res->count));
count            2285 source4/rpc_server/samr/dcesrv_samr.c 	if (res->count == 0) {
count            2289 source4/rpc_server/samr/dcesrv_samr.c 	if (res->count > 1) {
count            2387 source4/rpc_server/samr/dcesrv_samr.c 	if (res->count == 0) {
count            2391 source4/rpc_server/samr/dcesrv_samr.c 	if (res->count > 1) {
count            2465 source4/rpc_server/samr/dcesrv_samr.c 		array->count = el->num_values;
count            3637 source4/rpc_server/samr/dcesrv_samr.c 	int count;
count            3644 source4/rpc_server/samr/dcesrv_samr.c 	count = samdb_search_domain(a_state->sam_ctx, mem_ctx, d_state->domain_dn, &res,
count            3649 source4/rpc_server/samr/dcesrv_samr.c 	if (count < 0)
count            3656 source4/rpc_server/samr/dcesrv_samr.c 	array->count = 0;
count            3659 source4/rpc_server/samr/dcesrv_samr.c 	if (count > 0) {
count            3662 source4/rpc_server/samr/dcesrv_samr.c 					    count);
count            3667 source4/rpc_server/samr/dcesrv_samr.c 		for (i=0; i<count; i++) {
count            3677 source4/rpc_server/samr/dcesrv_samr.c 			array->rids[array->count].rid =
count            3679 source4/rpc_server/samr/dcesrv_samr.c 			array->rids[array->count].attributes = SE_GROUP_MANDATORY | SE_GROUP_ENABLED_BY_DEFAULT | SE_GROUP_ENABLED;
count            3680 source4/rpc_server/samr/dcesrv_samr.c 			array->count += 1;
count            3699 source4/rpc_server/samr/dcesrv_samr.c 	int ldb_cnt, count, i;
count            3774 source4/rpc_server/samr/dcesrv_samr.c 	count = 0;
count            3786 source4/rpc_server/samr/dcesrv_samr.c 			entriesGeneral[count].idx = count + 1;
count            3787 source4/rpc_server/samr/dcesrv_samr.c 			entriesGeneral[count].rid = 
count            3789 source4/rpc_server/samr/dcesrv_samr.c 			entriesGeneral[count].acct_flags =
count            3793 source4/rpc_server/samr/dcesrv_samr.c 			entriesGeneral[count].account_name.string =
count            3796 source4/rpc_server/samr/dcesrv_samr.c 			entriesGeneral[count].full_name.string =
count            3798 source4/rpc_server/samr/dcesrv_samr.c 			entriesGeneral[count].description.string =
count            3802 source4/rpc_server/samr/dcesrv_samr.c 			entriesFull[count].idx = count + 1;
count            3803 source4/rpc_server/samr/dcesrv_samr.c 			entriesFull[count].rid =
count            3807 source4/rpc_server/samr/dcesrv_samr.c 			entriesFull[count].acct_flags =
count            3811 source4/rpc_server/samr/dcesrv_samr.c 			entriesFull[count].account_name.string =
count            3814 source4/rpc_server/samr/dcesrv_samr.c 			entriesFull[count].description.string =
count            3818 source4/rpc_server/samr/dcesrv_samr.c 			entriesFullGroup[count].idx = count + 1;
count            3819 source4/rpc_server/samr/dcesrv_samr.c 			entriesFullGroup[count].rid =
count            3822 source4/rpc_server/samr/dcesrv_samr.c 			entriesFullGroup[count].acct_flags
count            3824 source4/rpc_server/samr/dcesrv_samr.c 			entriesFullGroup[count].account_name.string =
count            3827 source4/rpc_server/samr/dcesrv_samr.c 			entriesFullGroup[count].description.string =
count            3832 source4/rpc_server/samr/dcesrv_samr.c 			entriesAscii[count].idx = count + 1;
count            3833 source4/rpc_server/samr/dcesrv_samr.c 			entriesAscii[count].account_name.string =
count            3839 source4/rpc_server/samr/dcesrv_samr.c 		count += 1;
count            3842 source4/rpc_server/samr/dcesrv_samr.c 	*r->out.total_size = count;
count            3844 source4/rpc_server/samr/dcesrv_samr.c 	if (r->in.start_idx >= count) {
count            3848 source4/rpc_server/samr/dcesrv_samr.c 			r->out.info->info1.count = *r->out.returned_size;
count            3852 source4/rpc_server/samr/dcesrv_samr.c 			r->out.info->info2.count = *r->out.returned_size;
count            3856 source4/rpc_server/samr/dcesrv_samr.c 			r->out.info->info3.count = *r->out.returned_size;
count            3860 source4/rpc_server/samr/dcesrv_samr.c 			r->out.info->info4.count = *r->out.returned_size;
count            3864 source4/rpc_server/samr/dcesrv_samr.c 			r->out.info->info5.count = *r->out.returned_size;
count            3869 source4/rpc_server/samr/dcesrv_samr.c 		*r->out.returned_size = MIN(count - r->in.start_idx,
count            3873 source4/rpc_server/samr/dcesrv_samr.c 			r->out.info->info1.count = *r->out.returned_size;
count            3878 source4/rpc_server/samr/dcesrv_samr.c 			r->out.info->info2.count = *r->out.returned_size;
count            3883 source4/rpc_server/samr/dcesrv_samr.c 			r->out.info->info3.count = *r->out.returned_size;
count            3888 source4/rpc_server/samr/dcesrv_samr.c 			r->out.info->info4.count = *r->out.returned_size;
count            3893 source4/rpc_server/samr/dcesrv_samr.c 			r->out.info->info5.count = *r->out.returned_size;
count            3900 source4/rpc_server/samr/dcesrv_samr.c 	return (*r->out.returned_size < (count - r->in.start_idx)) ?
count            3971 source4/rpc_server/samr/dcesrv_samr.c 	int i, count;
count            3988 source4/rpc_server/samr/dcesrv_samr.c 	count = samdb_search_domain(d_state->sam_ctx, mem_ctx,
count            3997 source4/rpc_server/samr/dcesrv_samr.c 	if (count < 0)
count            4000 source4/rpc_server/samr/dcesrv_samr.c 	for (i=0; i<count; i++) {
count              41 source4/rpc_server/spoolss/dcesrv_spoolss.c #define SPOOLSS_BUFFER_UNION_ARRAY(fn,ic,info,level,count) \
count              42 source4/rpc_server/spoolss/dcesrv_spoolss.c 	((info)?ndr_size_##fn##_info(dce_call, ic, level, count, info):0)
count             246 source4/rpc_server/spoolss/dcesrv_spoolss.c 	*r->out.needed	= SPOOLSS_BUFFER_UNION_ARRAY(spoolss_EnumPrinters, ic, *r->out.info, r->in.level, *r->out.count);
count             248 source4/rpc_server/spoolss/dcesrv_spoolss.c 	*r->out.count	= SPOOLSS_BUFFER_OK(*r->out.count, 0);
count             382 source4/rpc_server/spoolss/dcesrv_spoolss.c 	*r->out.needed	= SPOOLSS_BUFFER_UNION_ARRAY(spoolss_EnumPrinterDrivers, ic, *r->out.info, r->in.level, *r->out.count);
count             384 source4/rpc_server/spoolss/dcesrv_spoolss.c 	*r->out.count	= SPOOLSS_BUFFER_OK(*r->out.count, 0);
count             811 source4/rpc_server/spoolss/dcesrv_spoolss.c 	*r->out.needed	= SPOOLSS_BUFFER_UNION_ARRAY(spoolss_EnumForms, ic, *r->out.info, r->in.level, *r->out.count);
count             813 source4/rpc_server/spoolss/dcesrv_spoolss.c 	*r->out.count	= SPOOLSS_BUFFER_OK(*r->out.count, 0);
count             834 source4/rpc_server/spoolss/dcesrv_spoolss.c 	*r->out.needed	= SPOOLSS_BUFFER_UNION_ARRAY(spoolss_EnumPorts, ic, *r->out.info, r->in.level, *r->out.count);
count             836 source4/rpc_server/spoolss/dcesrv_spoolss.c 	*r->out.count	= SPOOLSS_BUFFER_OK(*r->out.count, 0);
count             857 source4/rpc_server/spoolss/dcesrv_spoolss.c 	*r->out.needed	= SPOOLSS_BUFFER_UNION_ARRAY(spoolss_EnumMonitors, ic, *r->out.info, r->in.level, *r->out.count);
count             859 source4/rpc_server/spoolss/dcesrv_spoolss.c 	*r->out.count	= SPOOLSS_BUFFER_OK(*r->out.count, 0);
count              55 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		r->out.info_ctr->ctr.ctr0->count = 0;
count              64 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		r->out.info_ctr->ctr.ctr1->count = 0;
count             126 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		r->out.info_ctr->ctr.ctr0->count = 0;
count             136 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		r->out.info_ctr->ctr.ctr1->count = 0;
count             237 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		r->out.info_ctr->ctr.ctr0->count = 0;
count             247 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		r->out.info_ctr->ctr.ctr1->count = 0;
count             274 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		r->out.info_ctr->ctr.ctr2->count = 0;
count             284 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		r->out.info_ctr->ctr.ctr3->count = 0;
count             346 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		r->out.info_ctr->ctr.ctr0->count = 0;
count             356 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		r->out.info_ctr->ctr.ctr1->count = 0;
count             366 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		r->out.info_ctr->ctr.ctr2->count = 0;
count             376 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		r->out.info_ctr->ctr.ctr10->count = 0;
count             386 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		r->out.info_ctr->ctr.ctr502->count = 0;
count             435 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		int count = 8;
count             444 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		info = talloc_array(mem_ctx, struct share_info, count);
count             533 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		int count = 10;
count             542 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		info = talloc_array(mem_ctx, struct share_info, count);
count             743 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		ctr0->count = numshares;
count             746 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		if (ctr0->count == 0) {
count             751 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		ctr0->array = talloc_array(mem_ctx, struct srvsvc_NetShareInfo0, ctr0->count);
count             754 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		for (i = 0; i < ctr0->count; i++) {
count             773 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		*r->out.totalentries		= r->out.info_ctr->ctr.ctr0->count;
count             784 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		ctr1->count = numshares;
count             787 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		if (ctr1->count == 0) {
count             792 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		ctr1->array = talloc_array(mem_ctx, struct srvsvc_NetShareInfo1, ctr1->count);
count             795 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		for (i=0; i < ctr1->count; i++) {
count             814 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		*r->out.totalentries		= r->out.info_ctr->ctr.ctr1->count;
count             828 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		ctr2->count = numshares;
count             831 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		if (ctr2->count == 0) {
count             836 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		ctr2->array = talloc_array(mem_ctx, struct srvsvc_NetShareInfo2, ctr2->count);
count             839 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		for (i=0; i < ctr2->count; i++) {
count             858 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		*r->out.totalentries		= r->out.info_ctr->ctr.ctr2->count;
count             872 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		ctr501->count = numshares;
count             875 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		if (ctr501->count == 0) {
count             880 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		ctr501->array = talloc_array(mem_ctx, struct srvsvc_NetShareInfo501, ctr501->count);
count             883 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		for (i=0; i < ctr501->count; i++) {
count             902 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		*r->out.totalentries		= r->out.info_ctr->ctr.ctr501->count;
count             916 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		ctr502->count = numshares;
count             919 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		if (ctr502->count == 0) {
count             924 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		ctr502->array = talloc_array(mem_ctx, struct srvsvc_NetShareInfo502, ctr502->count);
count             927 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		for (i=0; i < ctr502->count; i++) {
count             946 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		*r->out.totalentries		= r->out.info_ctr->ctr.ctr502->count;
count            1095 source4/rpc_server/srvsvc/dcesrv_srvsvc.c static WERROR dcesrv_srvsvc_fill_share_info(struct share_info *info, int *count,
count            1201 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 	*count = i;
count            1216 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 	int count;
count            1239 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		status = dcesrv_srvsvc_fill_share_info(info, &count,
count            1256 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		status = dcesrv_srvsvc_fill_share_info(info, &count,
count            1273 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		status = dcesrv_srvsvc_fill_share_info(info, &count,
count            1290 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		status = dcesrv_srvsvc_fill_share_info(info, &count,
count            1307 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		status = dcesrv_srvsvc_fill_share_info(info, &count,
count            1324 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		status = dcesrv_srvsvc_fill_share_info(info, &count,
count            1353 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 	nterr = share_set(sctx, r->in.share_name, info, count);
count            1387 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 	int count, i;
count            1413 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 	nterr = share_list_all(mem_ctx, sctx, &count, &names);
count            1418 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 	for (i = 0; i < count; i++) {
count            1554 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 	r->out.info->count = 0;
count            1564 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		r->out.info->count = 2;
count            1623 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		r->out.transports->ctr.ctr0->count = 0;
count            1633 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		r->out.transports->ctr.ctr1->count = 0;
count            1643 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		r->out.transports->ctr.ctr2->count = 0;
count            1653 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		r->out.transports->ctr.ctr3->count = 0;
count            1838 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		int count;
count            1844 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		count = numshares;
count            1845 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		ctr0->count = count;
count            1848 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		if (ctr0->count == 0) {
count            1853 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		ctr0->array = talloc_array(mem_ctx, struct srvsvc_NetShareInfo0, count);
count            1856 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		for (i=0; i < count; i++) {
count            1869 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 				ctr0->count--;
count            1883 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		*r->out.totalentries		= r->out.info_ctr->ctr.ctr0->count;
count            1890 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		int count;
count            1896 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		count = numshares;
count            1897 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		ctr1->count = count;
count            1900 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		if (ctr1->count == 0) {
count            1905 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		ctr1->array = talloc_array(mem_ctx, struct srvsvc_NetShareInfo1, count);
count            1908 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		for (i=0; i < count; i++) {
count            1921 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 				ctr1->count--;
count            1935 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		*r->out.totalentries		= r->out.info_ctr->ctr.ctr1->count;
count            1942 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		int count;
count            1950 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		count = numshares;
count            1951 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		ctr2->count = count;
count            1954 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		if (ctr2->count == 0) {
count            1959 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		ctr2->array = talloc_array(mem_ctx, struct srvsvc_NetShareInfo2, count);
count            1962 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		for (i=0; i < count; i++) {
count            1975 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 				ctr2->count--;
count            1989 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		*r->out.totalentries		= r->out.info_ctr->ctr.ctr2->count;
count            1996 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		int count;
count            2004 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		count = numshares;
count            2005 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		ctr502->count = count;
count            2008 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		if (ctr502->count == 0) {
count            2013 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		ctr502->array = talloc_array(mem_ctx, struct srvsvc_NetShareInfo502, count);
count            2016 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		for (i=0; i < count; i++) {
count            2029 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 				ctr502->count--;
count            2043 source4/rpc_server/srvsvc/dcesrv_srvsvc.c 		*r->out.totalentries		= r->out.info_ctr->ctr.ctr502->count;
count             202 source4/rpc_server/unixinfo/dcesrv_unixinfo.c 	*r->out.count = 0;
count             205 source4/rpc_server/unixinfo/dcesrv_unixinfo.c 					 *r->in.count);
count             207 source4/rpc_server/unixinfo/dcesrv_unixinfo.c 	*r->out.count = *r->in.count;
count             209 source4/rpc_server/unixinfo/dcesrv_unixinfo.c 	for (i=0; i < *r->in.count; i++) {
count             154 source4/rpc_server/wkssvc/dcesrv_wkssvc.c 		r->out.info->ctr.ctr0->count = 0;
count              37 source4/smb_server/management.c 	int i=0, count=0;
count              42 source4/smb_server/management.c 		count++;
count              45 source4/smb_server/management.c 	r->out.info.sessions.num_sessions = count;
count              46 source4/smb_server/management.c 	r->out.info.sessions.sessions = talloc_array(r, struct smbsrv_session_info, count);
count              81 source4/smb_server/management.c 	int i=0, count=0;
count              86 source4/smb_server/management.c 		count++;
count              89 source4/smb_server/management.c 	r->out.info.tcons.num_tcons = count;
count              90 source4/smb_server/management.c 	r->out.info.tcons.tcons = talloc_array(r, struct smbsrv_tcon_info, count);
count             599 source4/smb_server/smb/nttrans.c 	int count;
count             602 source4/smb_server/smb/nttrans.c 	for (count=0,tp=req->smb_conn->trans_partial;tp;tp=tp->next) count++;
count             603 source4/smb_server/smb/nttrans.c 	if (count > 100) {
count             703 source4/smb_server/smb/reply.c 	io->lockread.in.count     = SVAL(req->in.vwv, VWV(1));
count             708 source4/smb_server/smb/reply.c 	smbsrv_setup_reply(req, 5, 3 + io->lockread.in.count);
count             758 source4/smb_server/smb/reply.c 	io->read.in.count         = SVAL(req->in.vwv, VWV(1));
count             763 source4/smb_server/smb/reply.c 	smbsrv_setup_reply(req, 5, 3 + io->read.in.count);
count             901 source4/smb_server/smb/reply.c 	io->writeunlock.in.count       = SVAL(req->in.vwv, VWV(1));
count             907 source4/smb_server/smb/reply.c 	if (io->writeunlock.in.count+3 > req->in.data_size) {
count             913 source4/smb_server/smb/reply.c 	if (SVAL(req->in.data, 1) < io->writeunlock.in.count) {
count             955 source4/smb_server/smb/reply.c 	io->write.in.count       = SVAL(req->in.vwv, VWV(1));
count             961 source4/smb_server/smb/reply.c 	if (req_data_oob(&req->in.bufinfo, io->write.in.data, io->write.in.count)) {
count             967 source4/smb_server/smb/reply.c 	if (SVAL(req->in.data, 1) < io->write.in.count) {
count            1019 source4/smb_server/smb/reply.c 	io->writex.in.count     = SVAL(req->in.vwv, VWV(10));
count            1026 source4/smb_server/smb/reply.c 		io->writex.in.count |= ((uint32_t)count_high) << 16;
count            1030 source4/smb_server/smb/reply.c 	if (req_data_oob(&req->in.bufinfo, io->writex.in.data, io->writex.in.count)) {
count            1160 source4/smb_server/smb/reply.c 	io->writeclose.in.count		= SVAL(req->in.vwv, VWV(1));
count            1166 source4/smb_server/smb/reply.c 	if (req_data_oob(&req->in.bufinfo, io->writeclose.in.data, io->writeclose.in.count)) {
count            1189 source4/smb_server/smb/reply.c 	lck->lock.in.count	= IVAL(req->in.vwv, VWV(1));
count            1211 source4/smb_server/smb/reply.c 	lck->unlock.in.count 		= IVAL(req->in.vwv, VWV(1));
count            1255 source4/smb_server/smb/reply.c 	uint16_t count;
count            1260 source4/smb_server/smb/reply.c 	count = SVAL(req->in.vwv, VWV(0));
count            1266 source4/smb_server/smb/reply.c 	for (i=1; i <= count;i++) {
count            1269 source4/smb_server/smb/reply.c 		if (i != count) {
count            1357 source4/smb_server/smb/reply.c 	if (maxcount < lpq->retq.out.count) {
count            1358 source4/smb_server/smb/reply.c 		lpq->retq.out.count = maxcount;
count            1362 source4/smb_server/smb/reply.c 	req_grow_data(req, 3 + el_size*lpq->retq.out.count);
count            1365 source4/smb_server/smb/reply.c 	SSVAL(req->out.vwv, VWV(0), lpq->retq.out.count);
count            1369 source4/smb_server/smb/reply.c 	SSVAL(req->out.data, 1, el_size*lpq->retq.out.count);
count            1373 source4/smb_server/smb/reply.c 	for (i=0;i<lpq->retq.out.count;i++) {
count            1425 source4/smb_server/smb/reply.c 	io->splwrite.in.count		= SVAL(req->in.data, 1);
count            1429 source4/smb_server/smb/reply.c 	if (req_data_oob(&req->in.bufinfo, io->splwrite.in.data, io->splwrite.in.count)) {
count            1548 source4/smb_server/smb/reply.c 	SSVAL(req->out.vwv, VWV(0), cp->out.count);
count            1668 source4/smb_server/smb/reply.c 			lck->lockx.in.locks[i].count  = IVAL(p, 16);
count            1671 source4/smb_server/smb/reply.c 			lck->lockx.in.locks[i].count  = IVAL(p, 6);
count            1674 source4/smb_server/smb/reply.c 			lck->lockx.in.locks[i].count  |= ((uint64_t)count_high) << 32;
count             651 source4/smb_server/smb/request.c bool req_data_oob(struct request_bufinfo *bufinfo, const uint8_t *ptr, uint32_t count)
count             653 source4/smb_server/smb/request.c 	if (count == 0) {
count             660 source4/smb_server/smb/request.c 	    count > bufinfo->data_size ||
count             661 source4/smb_server/smb/request.c 	    (uintptr_t)ptr + count > (uintptr_t)bufinfo->data + bufinfo->data_size) {
count              85 source4/smb_server/smb/search.c 	SSVAL(req->out.vwv, VWV(0), sf->search_first.out.count);
count             100 source4/smb_server/smb/search.c 	SSVAL(req->out.vwv, VWV(0), sn->search_next.out.count);
count             839 source4/smb_server/smb/trans2.c 	SSVAL(param, VWV(1), search->t2ffirst.out.count);
count             925 source4/smb_server/smb/trans2.c 	SSVAL(param, VWV(0), search->t2fnext.out.count);
count            1054 source4/smb_server/smb/trans2.c 	int count;
count            1057 source4/smb_server/smb/trans2.c 	for (count=0,tp=req->smb_conn->trans_partial;tp;tp=tp->next) count++;
count            1058 source4/smb_server/smb/trans2.c 	if (count > 100) {
count             519 source4/smb_server/smb_server.h #define SMBSRV_VWV_RESERVED(start, count) memset(req->out.vwv + VWV(start), 0, (count)*2)
count              44 source4/torture/basic/aliases.c 	int count=0, alias_count=0;
count              63 source4/torture/basic/aliases.c 		count++;
count              66 source4/torture/basic/aliases.c 	torture_comment(tctx, "Found %d levels with success status\n", count);
count             242 source4/torture/basic/aliases.c 	int count=0, dsize;
count             291 source4/torture/basic/aliases.c 		count++;
count             294 source4/torture/basic/aliases.c 	torture_comment(tctx, "Found %d valid levels\n", count);
count             107 source4/torture/basic/disconnect.c 	lock[0].count = 4;
count             569 source4/torture/basic/misc.c 		wr.writex.in.count      = state->lp_params->blocksize;
count             636 source4/torture/basic/misc.c 	wr.writex.in.count      = state->lp_params->blocksize;
count             482 source4/torture/gentest.c 	int count = 0;
count             486 source4/torture/gentest.c 	while (num_open_handles > 0 && count++ < 10*options.max_open_handles) {
count            2056 source4/torture/gentest.c 	parm[0].writex.in.count = gen_io_count();
count            2057 source4/torture/gentest.c 	parm[0].writex.in.data = talloc_zero_array(current_op.mem_ctx, uint8_t, parm[0].writex.in.count);
count            2097 source4/torture/gentest.c 			parm[0].lockx.in.locks[n].count = gen_io_count();
count            2853 source4/torture/gentest.c 	int count, success_count;
count            2911 source4/torture/gentest.c 		gen_ops[i].count = 0;
count            2943 source4/torture/gentest.c 		gen_ops[which_op].count++;
count            2963 source4/torture/gentest.c 		       gen_ops[i].count);
count              47 source4/torture/ldap/schema.c 	uint32_t count;
count              66 source4/torture/ldap/schema.c 	} else if (r->count != 1) {
count             103 source4/torture/ldap/schema.c 		actx->count++;
count             189 source4/torture/ldap/schema.c 	actx->count = 0;
count             210 source4/torture/ldap/schema.c 	d_printf("filter[%s] count[%u]\n", filter, actx->count);
count              64 source4/torture/ldap/uptodatevector.c 	} else if (r->count != 1) {
count             110 source4/torture/ldap/uptodatevector.c 		} else if (r->count != 1) {
count             418 source4/torture/libnet/libnet_domain.c 	for (i = 0; i < r.out.count; i++) {
count             439 source4/torture/libnet/libnet_domain.c 	for (i = 0; i < r.out.count; i++) {
count             328 source4/torture/libnet/libnet_group.c 		for (i = 0; i < req.out.count; i++) {
count              56 source4/torture/libnet/libnet_share.c 		for (i = 0; i < s.out.ctr.ctr0->count; i++) {
count              63 source4/torture/libnet/libnet_share.c 		for (i = 0; i < s.out.ctr.ctr1->count; i++) {
count              74 source4/torture/libnet/libnet_share.c 		for (i = 0; i < s.out.ctr.ctr2->count; i++) {
count              88 source4/torture/libnet/libnet_share.c 		for (i = 0; i < s.out.ctr.ctr501->count; i++) {
count             100 source4/torture/libnet/libnet_share.c 		for (i = 0; i < s.out.ctr.ctr502->count; i++) {
count             711 source4/torture/libnet/libnet_user.c 		for (i = 0; i < req.out.count; i++) {
count              59 source4/torture/local/dbspeed.c 	int i, count;
count              95 source4/torture/local/dbspeed.c 	for (count=0;timeval_elapsed(&tv) < timelimit;count++) {
count             118 source4/torture/local/dbspeed.c 	tdb_speed = count/timeval_elapsed(&tv);
count             168 source4/torture/local/dbspeed.c 	int i, count;
count             211 source4/torture/local/dbspeed.c 	for (count=0;timeval_elapsed(&tv) < timelimit;count++) {
count             217 source4/torture/local/dbspeed.c 		if (ldb_search(ldb, tmp_ctx, &res, dn, LDB_SCOPE_BASE, NULL, NULL) != LDB_SUCCESS || res->count != 1) {
count             222 source4/torture/local/dbspeed.c 		if (ldb_search(ldb, tmp_ctx, &res, NULL, LDB_SCOPE_SUBTREE, NULL, "(UID=%u)", i) != LDB_SUCCESS || res->count != 1) {
count             234 source4/torture/local/dbspeed.c 	ldb_speed = count/timeval_elapsed(&tv);
count             255 source4/torture/locktest.c 				lock[0].count = len;
count             300 source4/torture/locktest.c 				lock[0].count = len;
count             154 source4/torture/locktest2.c 	static int count;
count             172 source4/torture/locktest2.c 	myname = talloc_asprintf(mem_ctx, "lock-%u-%u", getpid(), count++);
count             177 source4/torture/masktest.c 	static int count;
count             182 source4/torture/masktest.c 	count++;
count             208 source4/torture/masktest.c 			 res1, res2, count, mask, file, long_name, short_name);
count             214 source4/torture/masktest.c 	if (count % 100 == 0) DEBUG(0,("%d\n", count));
count             563 source4/torture/nbench/nbio.c 	io.writex.in.count = size;
count             604 source4/torture/nbench/nbio.c 	io.write.in.count = size;
count             637 source4/torture/nbench/nbio.c 	lck.count = size;
count             682 source4/torture/nbench/nbio.c 	lck.count = size;
count             914 source4/torture/nbench/nbio.c bool nb_findfirst(const char *mask, int level, int maxcnt, int count, NTSTATUS status)
count             937 source4/torture/nbench/nbio.c 	if (NT_STATUS_IS_OK(ret) && io.t2ffirst.out.count != count) {
count             940 source4/torture/nbench/nbio.c 		       io.t2ffirst.out.count, count);
count            9170 source4/torture/nbt/winsreplication.c 		uint32_t j, count = 1;
count            9174 source4/torture/nbt/winsreplication.c 			count = records[i].wins.num_ips;
count            9218 source4/torture/nbt/winsreplication.c 		for (j=0; j < count; j++) {
count            9360 source4/torture/nbt/winsreplication.c 			for (j=0; j < count; j++) {
count              93 source4/torture/ndr/dfs.c 	torture_assert_int_equal(tctx, r->out.info->e.info300->count, 3, "info enum array");
count             309 source4/torture/ndr/lsa.c 	torture_assert_int_equal(tctx, r->in.sids->count, 0, "sids count");
count             312 source4/torture/ndr/lsa.c 	torture_assert(tctx, r->in.count != NULL, "count ptr");
count             313 source4/torture/ndr/lsa.c 	torture_assert_int_equal(tctx, *r->in.count, 0, "count");
count             433 source4/torture/ndr/lsa.c 	torture_assert_int_equal(tctx, domains->count, 1, "domains count");
count             438 source4/torture/ndr/lsa.c 	torture_assert(tctx, r->out.count != NULL, "count ptr");
count             439 source4/torture/ndr/lsa.c 	torture_assert_int_equal(tctx, *r->out.count, 100, "count");
count             441 source4/torture/ndr/lsa.c 	torture_assert_int_equal(tctx, r->out.sids->count, 100, "sids count");
count             661 source4/torture/ndr/lsa.c 	torture_assert_int_equal(tctx, r->in.names->count, 0, "names count");
count             664 source4/torture/ndr/lsa.c 	torture_assert(tctx, r->in.count != NULL, "count ptr");
count             665 source4/torture/ndr/lsa.c 	torture_assert_int_equal(tctx, *r->in.count, 0, "count");
count            1020 source4/torture/ndr/lsa.c 	torture_assert_int_equal(tctx, domains->count, 1, "domains count");
count            1403 source4/torture/ndr/lsa.c 	torture_assert_int_equal(tctx, r->in.names->count, 0, "names count");
count            1406 source4/torture/ndr/lsa.c 	torture_assert(tctx, r->in.count != NULL, "count ptr");
count            1407 source4/torture/ndr/lsa.c 	torture_assert_int_equal(tctx, *r->in.count, 7, "count");
count            1483 source4/torture/ndr/lsa.c 	torture_assert_int_equal(tctx, domains->count, 4, "domains count");
count            1486 source4/torture/ndr/lsa.c 	torture_assert_int_equal(tctx, r->out.names->count, 7, "names count");
count            1490 source4/torture/ndr/lsa.c 	torture_assert(tctx, r->out.count != NULL, "count ptr");
count            1491 source4/torture/ndr/lsa.c 	torture_assert_int_equal(tctx, *r->out.count, 7, "count");
count            1546 source4/torture/ndr/lsa.c 	torture_assert_int_equal(tctx, *r->in.count, 0, "count");
count            1547 source4/torture/ndr/lsa.c 	torture_assert_int_equal(tctx, r->in.sids->count, 0, "sids count");
count            1590 source4/torture/ndr/lsa.c 	torture_assert_int_equal(tctx, *r->out.count, 7, "count");
count            1591 source4/torture/ndr/lsa.c 	torture_assert_int_equal(tctx, r->out.sids->count, 7, "sids count");
count            1645 source4/torture/ndr/lsa.c 	torture_assert_int_equal(tctx, *r->in.count, 0, "count");
count            1646 source4/torture/ndr/lsa.c 	torture_assert_int_equal(tctx, r->in.sids->count, 0, "sids count");
count            1700 source4/torture/ndr/lsa.c 	torture_assert_int_equal(tctx, *r->out.count, 7, "count");
count            1701 source4/torture/ndr/lsa.c 	torture_assert_int_equal(tctx, r->out.sids->count, 7, "sids count");
count            1736 source4/torture/ndr/lsa.c 	torture_assert_int_equal(tctx, r->in.names->count, 0, "names count");
count            1739 source4/torture/ndr/lsa.c 	torture_assert(tctx, r->in.count != NULL, "count ptr");
count            1740 source4/torture/ndr/lsa.c 	torture_assert_int_equal(tctx, *r->in.count, 7, "count");
count            1759 source4/torture/ndr/lsa.c 	torture_assert_int_equal(tctx, domains->count, 4, "domains count");
count            1762 source4/torture/ndr/lsa.c 	torture_assert_int_equal(tctx, r->out.names->count, 7, "names count");
count            1766 source4/torture/ndr/lsa.c 	torture_assert(tctx, r->out.count != NULL, "count ptr");
count            1767 source4/torture/ndr/lsa.c 	torture_assert_int_equal(tctx, *r->out.count, 7, "count");
count             281 source4/torture/rap/rap.c 	NDR_GOTO(ndr_pull_uint16(call->ndr_pull_param, NDR_SCALARS, &r->out.count));
count             284 source4/torture/rap/rap.c 	r->out.info = talloc_array(mem_ctx, union rap_shareenum_info, r->out.count);
count             291 source4/torture/rap/rap.c 	for (i=0; i<r->out.count; i++) {
count             330 source4/torture/rap/rap.c 	for (i=0; i<r.out.count; i++) {
count             377 source4/torture/rap/rap.c 	NDR_GOTO(ndr_pull_uint16(call->ndr_pull_param, NDR_SCALARS, &r->out.count));
count             380 source4/torture/rap/rap.c 	r->out.info = talloc_array(mem_ctx, union rap_server_info, r->out.count);
count             387 source4/torture/rap/rap.c 	for (i=0; i<r->out.count; i++) {
count             430 source4/torture/rap/rap.c 	for (i=0; i<r.out.count; i++) {
count              40 source4/torture/raw/composite.c 	int *count = talloc_get_type(c->async.private_data, int);
count              41 source4/torture/raw/composite.c 	(*count)++;
count              58 source4/torture/raw/composite.c 	int *count = talloc_zero(tctx, int);
count              85 source4/torture/raw/composite.c 		c[i]->async.private_data = count;
count              89 source4/torture/raw/composite.c 	while (*count != num_ops) {
count              92 source4/torture/raw/composite.c 			printf("(%s) count=%d\r", __location__, *count);
count              96 source4/torture/raw/composite.c 	printf("count=%d\n", *count);
count             137 source4/torture/raw/composite.c 	int *count = talloc_zero(tctx, int);
count             179 source4/torture/raw/composite.c 		c[i]->async.private_data = count;
count             184 source4/torture/raw/composite.c 	while (*count != torture_numops) {
count             187 source4/torture/raw/composite.c 			printf("(%s) count=%d\r", __location__, *count);
count             191 source4/torture/raw/composite.c 	printf("count=%d\n", *count);
count             235 source4/torture/raw/composite.c 	int *count = talloc_zero(tctx, int);
count             299 source4/torture/raw/composite.c 		c[i]->async.private_data = count;
count             304 source4/torture/raw/composite.c 	while (*count != num_ops) {
count             307 source4/torture/raw/composite.c 			printf("(%s) count=%d\r", __location__, *count);
count             311 source4/torture/raw/composite.c 	printf("count=%d\n", *count);
count             346 source4/torture/raw/composite.c 	int *count = talloc_zero(tctx, int);
count             369 source4/torture/raw/composite.c 		c[i]->async.private_data = count;
count             374 source4/torture/raw/composite.c 	while (*count < torture_numops) {
count             377 source4/torture/raw/composite.c 			printf("(%s) count=%d\r", __location__, *count);
count             381 source4/torture/raw/composite.c 	printf("count=%d\n", *count);
count             199 source4/torture/raw/context.c 	wr.writex.in.count = 1;
count             335 source4/torture/raw/context.c 	wr.writex.in.count = 1;
count             449 source4/torture/raw/context.c 	wr.writex.in.count = 1;
count             497 source4/torture/raw/context.c 	wr.writex.in.count = 1;
count             576 source4/torture/raw/context.c 	wr.writex.in.count = 1;
count             702 source4/torture/raw/context.c 	wr.writex.in.count = 1;
count             809 source4/torture/raw/context.c 	wr.writex.in.count = 1;
count             840 source4/torture/raw/context.c 	wr.writex.in.count = 1;
count              98 source4/torture/raw/lock.c 	io.lock.in.count = 0;
count             113 source4/torture/raw/lock.c 	io.lock.in.count = 1;
count             131 source4/torture/raw/lock.c 	io.lock.in.count = 4000;
count             149 source4/torture/raw/lock.c 	io.lock.in.count = 4000;
count             167 source4/torture/raw/lock.c 	io.lock.in.count = 4000;
count             185 source4/torture/raw/lock.c 	io.lock.in.count = 4002;
count             239 source4/torture/raw/lock.c 	lock[0].count = 1;
count             248 source4/torture/raw/lock.c 	lock[0].count = 4000;
count             266 source4/torture/raw/lock.c 	lock[0].count = 4000;
count             284 source4/torture/raw/lock.c 	lock[0].count = 0;
count             302 source4/torture/raw/lock.c 	lock[0].count = 0;
count             320 source4/torture/raw/lock.c 	lock[0].count = 1;
count             339 source4/torture/raw/lock.c 	lock[0].count = 1;
count             359 source4/torture/raw/lock.c 	lock[0].count = 1;
count             364 source4/torture/raw/lock.c 	lock[0].count = 2;
count             373 source4/torture/raw/lock.c 	lock[0].count = 1;
count             437 source4/torture/raw/lock.c 	lock[0].count = 0xFFFFFFFF;
count             518 source4/torture/raw/lock.c 	lock[0].count = 10;
count             668 source4/torture/raw/lock.c 	lock[0].count = 10;
count             717 source4/torture/raw/lock.c 	lock[0].count = 10;
count             775 source4/torture/raw/lock.c 	lock[0].count = 10;
count             873 source4/torture/raw/lock.c 	lock[0].count = 10;
count             924 source4/torture/raw/lock.c 	lock[0].count = 0;
count             934 source4/torture/raw/lock.c 	lock[0].count = 10;
count             948 source4/torture/raw/lock.c 	lock[0].count = 0;
count             958 source4/torture/raw/lock.c 	lock[0].count = 10;
count             968 source4/torture/raw/lock.c 	lock[0].count = 0;
count             978 source4/torture/raw/lock.c 	lock[0].count = 10;
count             989 source4/torture/raw/lock.c 	lock[0].count = 5;
count             999 source4/torture/raw/lock.c 	lock[0].count = 15;
count            1013 source4/torture/raw/lock.c 	lock[0].count = 0;
count            1027 source4/torture/raw/lock.c 	lock[0].count = 10;
count            1042 source4/torture/raw/lock.c 	lock[0].count = 10;
count            1056 source4/torture/raw/lock.c 	lock[0].count = 10;
count            1070 source4/torture/raw/lock.c 	lock[0].count = 9;
count            1084 source4/torture/raw/lock.c 	lock[0].count = 10;
count            1103 source4/torture/raw/lock.c 	lock[0].count = 15;
count            1113 source4/torture/raw/lock.c 	lock[0].count = 10;
count            1157 source4/torture/raw/lock.c 	lock[0].count = 10;
count            1173 source4/torture/raw/lock.c 	lock[0].count = 10;
count            1205 source4/torture/raw/lock.c 	lock[0].count = 10;
count            1221 source4/torture/raw/lock.c 	lock[0].count = 10;
count            1229 source4/torture/raw/lock.c 	lock[0].count = 10;
count            1255 source4/torture/raw/lock.c 	lock[0].count = 10;
count            1328 source4/torture/raw/lock.c 	lock[0].count = 10;
count            1436 source4/torture/raw/lock.c 		    zero_byte_tests[i].lock1.count,
count            1439 source4/torture/raw/lock.c 		    zero_byte_tests[i].lock2.count,
count            1522 source4/torture/raw/lock.c 	lock1.count = 10;
count            1525 source4/torture/raw/lock.c 	lock2.count = 10;
count            1592 source4/torture/raw/lock.c 	lock1.count = 0;
count            1595 source4/torture/raw/lock.c 	lock2.count = 10;
count            1702 source4/torture/raw/lock.c 	lock1.count = 10;
count            1705 source4/torture/raw/lock.c 	lock2.count = 10;
count            1820 source4/torture/raw/lock.c 	lock1.count = 10;
count            1823 source4/torture/raw/lock.c 	lock2.count = 10;
count              56 source4/torture/raw/lockbench.c 	int count;
count             101 source4/torture/raw/lockbench.c 	lock.count = 1;
count             258 source4/torture/raw/lockbench.c 	state->count++;
count             287 source4/torture/raw/lockbench.c 		printf("%5u ", (unsigned)(state[i].count - state[i].lastcount));
count             288 source4/torture/raw/lockbench.c 		state[i].lastcount = state[i].count;
count             395 source4/torture/raw/lockbench.c 	minops = state[0].count;
count             397 source4/torture/raw/lockbench.c 		printf("[%d] %u ops\n", i, state[i].count);
count             398 source4/torture/raw/lockbench.c 		if (state[i].count < minops) minops = state[i].count;
count              70 source4/torture/raw/lookuprate.c 	    const char * path, unsigned count)
count              85 source4/torture/raw/lookuprate.c 	printf("filling directory %s with %u files... ", path, count);
count              91 source4/torture/raw/lookuprate.c 	for (i = 0; i < count; ++i) {
count             109 source4/torture/raw/lookuprate.c 	if (count) {
count             112 source4/torture/raw/lookuprate.c 		rate = (double)count / usec_to_sec((double)usec_time_diff(&now, &start));
count             176 source4/torture/raw/lookuprate.c 	unsigned	count = 0;
count             189 source4/torture/raw/lookuprate.c 		++count;
count             196 source4/torture/raw/lookuprate.c 	*rate = (unsigned)((double)count / (double)usec_to_sec(elapsed));
count             179 source4/torture/raw/mux.c 	io.writex.in.count = 4;
count             229 source4/torture/raw/mux.c 	lock[0].count = 4;
count             277 source4/torture/raw/mux.c 	lock[0].count = 4;
count              66 source4/torture/raw/notify.c 	int i, count, fnum, fnum2;
count             154 source4/torture/raw/notify.c 	count = torture_numops;
count             155 source4/torture/raw/notify.c 	printf("testing buffered notify on create of %d files\n", count);
count             156 source4/torture/raw/notify.c 	for (i=0;i<count;i++) {
count             193 source4/torture/raw/notify.c 	CHECK_VAL(notify.nttrans.out.num_changes, count);
count             194 source4/torture/raw/notify.c 	for (i=1;i<count;i++) {
count             212 source4/torture/raw/notify.c 	printf("testing notify on wildcard unlink for %d files\n", count-1);
count             230 source4/torture/raw/notify.c 	CHECK_VAL(notify.nttrans.out.num_changes, count-1);
count             238 source4/torture/raw/notify.c 	CHECK_VAL(notify.nttrans.out.num_changes, count-1);
count            1297 source4/torture/raw/notify.c 	int count = 100;
count            1338 source4/torture/raw/notify.c 	       count);
count            1339 source4/torture/raw/notify.c 	for (i=0;i<count;i++) {
count            1375 source4/torture/raw/notify.c 	int count = 100;
count              62 source4/torture/raw/offline.c 	uint32_t count;
count             122 source4/torture/raw/offline.c 	state->count++;
count             147 source4/torture/raw/offline.c 	state->count++;
count             173 source4/torture/raw/offline.c 	state->count++;
count             206 source4/torture/raw/offline.c 	state->count++;
count             341 source4/torture/raw/offline.c 		total += state[i].count - state[i].lastcount;
count             345 source4/torture/raw/offline.c 		state[i].lastcount = state[i].count;		
count            1141 source4/torture/raw/open.c 	lock[0].count = 0x1;
count              59 source4/torture/raw/openbench.c 	int count;
count             168 source4/torture/raw/openbench.c 	state->count++;
count             338 source4/torture/raw/openbench.c 		printf("%5u ", (unsigned)(state[i].count - state[i].lastcount));
count             339 source4/torture/raw/openbench.c 		state[i].lastcount = state[i].count;
count             459 source4/torture/raw/openbench.c 	minops = state[0].count;
count             461 source4/torture/raw/openbench.c 		total += state[i].count;
count             464 source4/torture/raw/openbench.c 		       i, state[i].count, state[i].open_retries);
count             465 source4/torture/raw/openbench.c 		if (state[i].count < minops) minops = state[i].count;
count              66 source4/torture/raw/oplock.c 	int count;
count              84 source4/torture/raw/oplock.c 	break_info.count++;
count             113 source4/torture/raw/oplock.c 	break_info.count++;
count             129 source4/torture/raw/oplock.c 	break_info.count++;
count             157 source4/torture/raw/oplock.c 	break_info.count++;
count             248 source4/torture/raw/oplock.c 	CHECK_VAL(break_info.count, 0);
count             256 source4/torture/raw/oplock.c 	CHECK_VAL(break_info.count, 0);
count             318 source4/torture/raw/oplock.c 	CHECK_VAL(break_info.count, 1);
count             330 source4/torture/raw/oplock.c 	CHECK_VAL(break_info.count, 0);
count             341 source4/torture/raw/oplock.c 	CHECK_VAL(break_info.count, 0);
count             352 source4/torture/raw/oplock.c 	CHECK_VAL(break_info.count, 0);
count             414 source4/torture/raw/oplock.c 	CHECK_VAL(break_info.count, 1);
count             478 source4/torture/raw/oplock.c 	CHECK_VAL(break_info.count, 0);
count             549 source4/torture/raw/oplock.c 	CHECK_VAL(break_info.count, 1);
count             617 source4/torture/raw/oplock.c 	CHECK_VAL(break_info.count, 0);
count             682 source4/torture/raw/oplock.c 	CHECK_VAL(break_info.count, 1);
count             692 source4/torture/raw/oplock.c 	CHECK_VAL(break_info.count, 0);
count             699 source4/torture/raw/oplock.c 	CHECK_VAL(break_info.count, 1);
count             764 source4/torture/raw/oplock.c 	CHECK_VAL(break_info.count, 1);
count             774 source4/torture/raw/oplock.c 	CHECK_VAL(break_info.count, 0);
count             781 source4/torture/raw/oplock.c 	CHECK_VAL(break_info.count, 0);
count             842 source4/torture/raw/oplock.c 	CHECK_VAL(break_info.count, 1);
count             903 source4/torture/raw/oplock.c 	rd.read.in.count = 1;
count             908 source4/torture/raw/oplock.c 	CHECK_VAL(break_info.count, 0);
count             970 source4/torture/raw/oplock.c 	CHECK_VAL(break_info.count, 1);
count            1039 source4/torture/raw/oplock.c 	CHECK_VAL(break_info.count, 1);
count            1050 source4/torture/raw/oplock.c 	CHECK_VAL(break_info.count, 2);
count            1121 source4/torture/raw/oplock.c 	CHECK_VAL(break_info.count, 1);
count            1190 source4/torture/raw/oplock.c 	CHECK_VAL(break_info.count, 0);
count            1261 source4/torture/raw/oplock.c 	CHECK_VAL(break_info.count, 1);
count            1280 source4/torture/raw/oplock.c 	CHECK_VAL(break_info.count, 0);
count            1295 source4/torture/raw/oplock.c 	CHECK_VAL(break_info.count, 2);
count            1351 source4/torture/raw/oplock.c 	CHECK_VAL(break_info.count, 0);
count            1368 source4/torture/raw/oplock.c 	CHECK_VAL(break_info.count, 0);
count            1377 source4/torture/raw/oplock.c 		wr.write.in.count = 1;
count            1394 source4/torture/raw/oplock.c 		wr.write.in.count = 1;
count            1402 source4/torture/raw/oplock.c 	CHECK_VAL(break_info.count, 1);
count            1467 source4/torture/raw/oplock.c 	CHECK_VAL(break_info.count, 0);
count            1479 source4/torture/raw/oplock.c 	CHECK_VAL(break_info.count, 1);
count            1542 source4/torture/raw/oplock.c 	CHECK_VAL(break_info.count, 0);
count            1554 source4/torture/raw/oplock.c 	CHECK_VAL(break_info.count, 1);
count            1632 source4/torture/raw/oplock.c 	CHECK_VAL(break_info.count, 1);
count            1708 source4/torture/raw/oplock.c 	CHECK_VAL(break_info.count, 1);
count            1771 source4/torture/raw/oplock.c 	CHECK_VAL(break_info.count, 0);
count            1782 source4/torture/raw/oplock.c 	CHECK_VAL(break_info.count, 0);
count            1858 source4/torture/raw/oplock.c 	CHECK_VAL(break_info.count, 1);
count            1929 source4/torture/raw/oplock.c 	CHECK_VAL(break_info.count, 1);
count            2000 source4/torture/raw/oplock.c 	CHECK_VAL(break_info.count, 1);
count            2072 source4/torture/raw/oplock.c 	CHECK_VAL(break_info.count, 0);
count            2092 source4/torture/raw/oplock.c 	CHECK_VAL(break_info.count, 0);
count            2174 source4/torture/raw/oplock.c 	CHECK_VAL(break_info.count, 0);
count            2194 source4/torture/raw/oplock.c 	CHECK_VAL(break_info.count, 0);
count            2273 source4/torture/raw/oplock.c 	CHECK_VAL(break_info.count, 0);
count            2399 source4/torture/raw/oplock.c 	CHECK_VAL(break_info.count, 0);
count            2422 source4/torture/raw/oplock.c 	CHECK_VAL(break_info.count, 1);
count            2436 source4/torture/raw/oplock.c 	CHECK_VAL(break_info.count, 1);
count            2523 source4/torture/raw/oplock.c 	CHECK_VAL(break_info.count, 0);
count            2597 source4/torture/raw/oplock.c 	CHECK_VAL(break_info.count, 1);
count            2614 source4/torture/raw/oplock.c 	CHECK_VAL(break_info.count, 0);
count            2686 source4/torture/raw/oplock.c 	CHECK_VAL(break_info.count, 1);
count            2699 source4/torture/raw/oplock.c 	CHECK_VAL(break_info.count, 0);
count            2773 source4/torture/raw/oplock.c 	CHECK_VAL(break_info.count, 1);
count            2847 source4/torture/raw/oplock.c 	CHECK_VAL(break_info.count, 0);
count            2909 source4/torture/raw/oplock.c 	int i, count=0;
count            2964 source4/torture/raw/oplock.c 			count++;
count            2968 source4/torture/raw/oplock.c 			torture_comment(torture, "%.2f ops/second\r", count/timeval_elapsed(&tv));
count            2972 source4/torture/raw/oplock.c 	torture_comment(torture, "%.2f ops/second\n", count/timeval_elapsed(&tv));
count              65 source4/torture/raw/pingpong.c 	lock.count = 1;
count             102 source4/torture/raw/pingpong.c 	lock.count = 1;
count             129 source4/torture/raw/pingpong.c 	io.writex.in.count = 1;
count             191 source4/torture/raw/pingpong.c 	int count, loops;
count             227 source4/torture/raw/pingpong.c 	count = 0;
count             247 source4/torture/raw/pingpong.c 		count++;
count             255 source4/torture/raw/pingpong.c 			       (unsigned)(2*count/end_timer()));
count             258 source4/torture/raw/pingpong.c 			count=0;
count             236 source4/torture/raw/qfileinfo.c 	int count;
count             262 source4/torture/raw/qfileinfo.c 	for (count=i=0; levels[i].name; i++) {
count             274 source4/torture/raw/qfileinfo.c 				count++;
count             280 source4/torture/raw/qfileinfo.c 				count++;
count             286 source4/torture/raw/qfileinfo.c 				count++;
count             291 source4/torture/raw/qfileinfo.c 				count++;
count             297 source4/torture/raw/qfileinfo.c 	if (count != 0) {
count             299 source4/torture/raw/qfileinfo.c 		printf("%d levels failed\n", count);
count             300 source4/torture/raw/qfileinfo.c 		if (count > 35) {
count             128 source4/torture/raw/qfsinfo.c 	int count;
count             139 source4/torture/raw/qfsinfo.c 	for (count=i=0; levels[i].name; i++) {
count             149 source4/torture/raw/qfsinfo.c 			count++;
count             153 source4/torture/raw/qfsinfo.c 	if (count != 0) {
count             154 source4/torture/raw/qfsinfo.c 		torture_comment(torture, "%d levels failed\n", count);
count             155 source4/torture/raw/qfsinfo.c 		torture_assert(torture, count > 13, "too many level failures - giving up");
count             115 source4/torture/raw/read.c 	io.read.in.count = 1;
count             125 source4/torture/raw/read.c 	io.read.in.count = 0;
count             142 source4/torture/raw/read.c 	io.read.in.count = strlen(test_data);
count             154 source4/torture/raw/read.c 	io.read.in.count = strlen(test_data);
count             167 source4/torture/raw/read.c 		io.read.in.count = strlen(test_data);
count             179 source4/torture/raw/read.c 	io.read.in.count = ~0;
count             195 source4/torture/raw/read.c 	io.read.in.count = ~0;
count             242 source4/torture/raw/read.c 	io.lockread.in.count = 1;
count             258 source4/torture/raw/read.c 	io.lockread.in.count = 0;
count             276 source4/torture/raw/read.c 	io.lockread.in.count = strlen(test_data);
count             293 source4/torture/raw/read.c 	io.lockread.in.count = strlen(test_data);
count             310 source4/torture/raw/read.c 		io.lockread.in.count = strlen(test_data);
count             322 source4/torture/raw/read.c 	io.lockread.in.count = ~0;
count             342 source4/torture/raw/read.c 	io.lockread.in.count = ~0;
count             828 source4/torture/raw/read.c 	wr.writex.in.count = ARRAY_SIZE(data);
count             769 source4/torture/raw/samba3misc.c 	lock_entry.count = 1;
count             506 source4/torture/raw/search.c 	int count;
count             518 source4/torture/raw/search.c 	data->count++;
count             522 source4/torture/raw/search.c 				      data->count);
count             524 source4/torture/raw/search.c 	data->list[data->count-1] = *file;
count             577 source4/torture/raw/search.c 			io2.search_next.in.id = result->list[result->count-1].search.id;
count             588 source4/torture/raw/search.c 				io2.t2fnext.in.resume_key = extract_resume_key(&result->list[result->count-1],
count             599 source4/torture/raw/search.c 				io2.t2fnext.in.last_name = extract_name(&result->list[result->count-1],
count             614 source4/torture/raw/search.c 			if (io2.search_next.out.count == 0) {
count             617 source4/torture/raw/search.c 		} else if (io2.t2fnext.out.count == 0 ||
count             733 source4/torture/raw/search.c 		CHECK_VALUE(result.count, num_files);
count             737 source4/torture/raw/search.c 		qsort(result.list, result.count, sizeof(result.list[0]), 
count             740 source4/torture/raw/search.c 		for (i=0;i<result.count;i++) {
count             768 source4/torture/raw/search.c 	for (i=0;i<result->count;i++) {
count             771 source4/torture/raw/search.c 	if (i == result->count) {
count             844 source4/torture/raw/search.c 	CHECK_VALUE(result.count, 1);
count             853 source4/torture/raw/search.c 	io2.t2fnext.in.last_name = result.list[result.count-1].both_directory_info.name.s;
count             858 source4/torture/raw/search.c 	CHECK_VALUE(result.count, 2);
count             860 source4/torture/raw/search.c 	result.count = 0;
count             888 source4/torture/raw/search.c 	CHECK_VALUE(result.count, 20);
count             902 source4/torture/raw/search.c 		for (i=0;i<result.count;i++) {
count             956 source4/torture/raw/search.c 	CHECK_VALUE(result.count, num_files);
count            1041 source4/torture/raw/search.c 		io.search_first.out.count = 0;
count            1045 source4/torture/raw/search.c 		if (io.search_first.out.count != 1) {
count            1047 source4/torture/raw/search.c 			       __location__, io.search_first.out.count, i, nt_errstr(status));
count            1074 source4/torture/raw/search.c 		io2.search_next.out.count = 0;
count            1078 source4/torture/raw/search.c 		if (io2.search_next.out.count != 1) {
count            1080 source4/torture/raw/search.c 			       __location__, io2.search_next.out.count, i, nt_errstr(status));
count            1107 source4/torture/raw/search.c 		io2.search_next.out.count = 0;
count            1111 source4/torture/raw/search.c 		if (io2.search_next.out.count != 1) {
count            1113 source4/torture/raw/search.c 			       __location__, io2.search_next.out.count, i, nt_errstr(status));
count            1196 source4/torture/raw/search.c 	for (i=0;i<MIN(result.count, delete_count);i++) {
count            1222 source4/torture/raw/search.c 		for (i=0;i<MIN(result.count, delete_count);i++) {
count            1234 source4/torture/raw/search.c 	} while (NT_STATUS_IS_OK(status) && result.count != 0);
count            1322 source4/torture/raw/search.c 	CHECK_VALUE(result.count, 2);
count            1342 source4/torture/raw/search.c 	qsort(result.list, result.count, sizeof(result.list[0]), 
count            1345 source4/torture/raw/search.c 	CHECK_VALUE(result.count, 3);
count             143 source4/torture/raw/tconrate.c static double rate_convert_secs(unsigned count,
count             146 source4/torture/raw/tconrate.c 	return (double)count /
count             130 source4/torture/raw/write.c 	io.write.in.count = 0;
count             141 source4/torture/raw/write.c 	io.write.in.count = 9;
count             146 source4/torture/raw/write.c 	CHECK_VALUE(io.write.out.nwritten, io.write.in.count);
count             160 source4/torture/raw/write.c 	io.write.in.count = 4000;
count             177 source4/torture/raw/write.c 	io.write.in.count = 4000;
count             200 source4/torture/raw/write.c 	io.write.in.count = 4000;
count             206 source4/torture/raw/write.c 	CHECK_ALL_INFO(io.write.in.count + (uint64_t)io.write.in.offset, size);
count             267 source4/torture/raw/write.c 	io.writex.in.count = 0;
count             276 source4/torture/raw/write.c 	io.writex.in.count = 9;
count             281 source4/torture/raw/write.c 	CHECK_VALUE(io.writex.out.nwritten, io.writex.in.count);
count             295 source4/torture/raw/write.c 	io.writex.in.count = 4000;
count             312 source4/torture/raw/write.c 	io.writex.in.count = 4000;
count             320 source4/torture/raw/write.c 	io.writex.in.count = 1;
count             326 source4/torture/raw/write.c 	CHECK_VALUE(io.writex.out.nwritten, io.writex.in.count);
count             331 source4/torture/raw/write.c 	CHECK_VALUE(io.writex.out.nwritten, io.writex.in.count);
count             343 source4/torture/raw/write.c 	io.writex.in.count = 4;
count             360 source4/torture/raw/write.c 	io.writex.in.count = 4000;
count             366 source4/torture/raw/write.c 	CHECK_ALL_INFO(io.writex.in.count + (uint64_t)io.writex.in.offset, size);
count             380 source4/torture/raw/write.c 		io.writex.in.count = 4000;
count             390 source4/torture/raw/write.c 		CHECK_ALL_INFO(io.writex.in.count + (uint64_t)io.writex.in.offset, size);
count             446 source4/torture/raw/write.c 	io.writeunlock.in.count = 0;
count             452 source4/torture/raw/write.c 	CHECK_VALUE(io.writeunlock.out.nwritten, io.writeunlock.in.count);
count             457 source4/torture/raw/write.c 	io.writeunlock.in.count = 9;
count             471 source4/torture/raw/write.c 	smbcli_lock(cli->tree, fnum, io.writeunlock.in.offset, io.writeunlock.in.count, 
count             475 source4/torture/raw/write.c 	CHECK_VALUE(io.writeunlock.out.nwritten, io.writeunlock.in.count);
count             489 source4/torture/raw/write.c 	io.writeunlock.in.count = 4000;
count             492 source4/torture/raw/write.c 	smbcli_lock(cli->tree, fnum, io.writeunlock.in.offset, io.writeunlock.in.count, 
count             511 source4/torture/raw/write.c 	io.writeunlock.in.count = 4000;
count             529 source4/torture/raw/write.c 	io.writeunlock.in.count = 4000;
count             532 source4/torture/raw/write.c 	smbcli_lock(cli->tree, fnum, io.writeunlock.in.offset, io.writeunlock.in.count, 
count             537 source4/torture/raw/write.c 	CHECK_ALL_INFO(io.writeunlock.in.count + (uint64_t)io.writeunlock.in.offset, size);
count             589 source4/torture/raw/write.c 	io.writeclose.in.count = 0;
count             595 source4/torture/raw/write.c 	CHECK_VALUE(io.writeclose.out.nwritten, io.writeclose.in.count);
count             599 source4/torture/raw/write.c 	CHECK_VALUE(io.writeclose.out.nwritten, io.writeclose.in.count);
count             604 source4/torture/raw/write.c 	io.writeclose.in.count = 9;
count             627 source4/torture/raw/write.c 	CHECK_VALUE(io.writeclose.out.nwritten, io.writeclose.in.count);
count             644 source4/torture/raw/write.c 	io.writeclose.in.count = 4000;
count             667 source4/torture/raw/write.c 	io.writeclose.in.count = 4000;
count             685 source4/torture/raw/write.c 	io.writeclose.in.count = 4000;
count             691 source4/torture/raw/write.c 	CHECK_ALL_INFO(io.writeclose.in.count + (uint64_t)io.writeclose.in.offset, size);
count             106 source4/torture/rpc/bench.c 	int count=0;
count             113 source4/torture/rpc/bench.c 		count++;
count             114 source4/torture/rpc/bench.c 		if (count % 50 == 0) {
count             117 source4/torture/rpc/bench.c 				       count / timeval_elapsed(&tv));
count             122 source4/torture/rpc/bench.c 	printf("%.1f queries per second  \n", count / timeval_elapsed(&tv));
count             267 source4/torture/rpc/dfs.c 	e.e.info1->count = 0;
count             332 source4/torture/rpc/dfs.c 	e.e.info1->count = 0;
count             130 source4/torture/rpc/drsuapi.c 				for (k=0; k < r.out.ctr->ctr1.count; k++) {
count             139 source4/torture/rpc/drsuapi.c 				for (k=0; k < r.out.ctr->ctr2.count; k++) {
count             177 source4/torture/rpc/drsuapi.c 		for (k=0; k < r.out.ctr->ctr01.count; k++) {
count             212 source4/torture/rpc/drsuapi.c 	r.in.req->req1.count		= 2;
count              69 source4/torture/rpc/drsuapi_cracknames.c 	r.in.req->req1.count		= 1;
count             249 source4/torture/rpc/drsuapi_cracknames.c 	r.in.req->req1.count		= 1;
count             283 source4/torture/rpc/dssync.c 	r.in.req->req1.count		= 1;
count             160 source4/torture/rpc/lsa.c 	uint32_t count = 0;
count             164 source4/torture/rpc/lsa.c 	printf("\nTesting LookupNames with %d names\n", tnames->count);
count             166 source4/torture/rpc/lsa.c 	sids.count = 0;
count             169 source4/torture/rpc/lsa.c 	names = talloc_array(tctx, struct lsa_String, tnames->count);
count             170 source4/torture/rpc/lsa.c 	for (i=0;i<tnames->count;i++) {
count             175 source4/torture/rpc/lsa.c 	r.in.num_names = tnames->count;
count             179 source4/torture/rpc/lsa.c 	r.in.count = &count;
count             180 source4/torture/rpc/lsa.c 	r.out.count = &count;
count             188 source4/torture/rpc/lsa.c 		for (i=0;i< tnames->count;i++) {
count             189 source4/torture/rpc/lsa.c 			if (i < count && sids.sids[i].sid_type == SID_NAME_UNKNOWN) {
count             192 source4/torture/rpc/lsa.c 			} else if (i >=count) {
count             204 source4/torture/rpc/lsa.c 	for (i=0;i< tnames->count;i++) {
count             205 source4/torture/rpc/lsa.c 		if (i < count && sids.sids[i].sid_type != tnames->names[i].sid_type) {
count             208 source4/torture/rpc/lsa.c 		} else if (i >=count) {
count             226 source4/torture/rpc/lsa.c 	uint32_t count = 0;
count             234 source4/torture/rpc/lsa.c 	tnames.count = 2;
count             240 source4/torture/rpc/lsa.c 	sids.count = 0;
count             243 source4/torture/rpc/lsa.c 	names = talloc_array(tctx, struct lsa_String, tnames.count);
count             244 source4/torture/rpc/lsa.c 	for (i=0;i<tnames.count;i++) {
count             249 source4/torture/rpc/lsa.c 	r.in.num_names = tnames.count;
count             253 source4/torture/rpc/lsa.c 	r.in.count = &count;
count             254 source4/torture/rpc/lsa.c 	r.out.count = &count;
count             280 source4/torture/rpc/lsa.c 	tnames.count = 1;
count             329 source4/torture/rpc/lsa.c 	uint32_t count = 0;
count             333 source4/torture/rpc/lsa.c 	printf("\nTesting LookupNames2 with %d names\n", tnames->count);
count             335 source4/torture/rpc/lsa.c 	sids.count = 0;
count             338 source4/torture/rpc/lsa.c 	names = talloc_array(tctx, struct lsa_String, tnames->count);
count             339 source4/torture/rpc/lsa.c 	for (i=0;i<tnames->count;i++) {
count             344 source4/torture/rpc/lsa.c 	r.in.num_names = tnames->count;
count             348 source4/torture/rpc/lsa.c 	r.in.count = &count;
count             351 source4/torture/rpc/lsa.c 	r.out.count = &count;
count             362 source4/torture/rpc/lsa.c 		torture_assert_int_equal(tctx, count, sids.count,
count             364 source4/torture/rpc/lsa.c 		if (sids.count > 0) {
count             385 source4/torture/rpc/lsa.c 	uint32_t count = 0;
count             389 source4/torture/rpc/lsa.c 	printf("\nTesting LookupNames3 with %d names\n", tnames->count);
count             391 source4/torture/rpc/lsa.c 	sids.count = 0;
count             394 source4/torture/rpc/lsa.c 	names = talloc_array(tctx, struct lsa_String, tnames->count);
count             395 source4/torture/rpc/lsa.c 	for (i=0;i<tnames->count;i++) {
count             400 source4/torture/rpc/lsa.c 	r.in.num_names = tnames->count;
count             404 source4/torture/rpc/lsa.c 	r.in.count = &count;
count             407 source4/torture/rpc/lsa.c 	r.out.count = &count;
count             418 source4/torture/rpc/lsa.c 		torture_assert_int_equal(tctx, count, sids.count,
count             420 source4/torture/rpc/lsa.c 		if (sids.count > 0) {
count             439 source4/torture/rpc/lsa.c 	uint32_t count = 0;
count             443 source4/torture/rpc/lsa.c 	printf("\nTesting LookupNames4 with %d names\n", tnames->count);
count             445 source4/torture/rpc/lsa.c 	sids.count = 0;
count             448 source4/torture/rpc/lsa.c 	names = talloc_array(tctx, struct lsa_String, tnames->count);
count             449 source4/torture/rpc/lsa.c 	for (i=0;i<tnames->count;i++) {
count             453 source4/torture/rpc/lsa.c 	r.in.num_names = tnames->count;
count             457 source4/torture/rpc/lsa.c 	r.in.count = &count;
count             460 source4/torture/rpc/lsa.c 	r.out.count = &count;
count             471 source4/torture/rpc/lsa.c 		torture_assert_int_equal(tctx, count, sids.count,
count             473 source4/torture/rpc/lsa.c 		if (sids.count > 0) {
count             492 source4/torture/rpc/lsa.c 	uint32_t count = sids->num_sids;
count             497 source4/torture/rpc/lsa.c 	names.count = 0;
count             504 source4/torture/rpc/lsa.c 	r.in.count = &count;
count             505 source4/torture/rpc/lsa.c 	r.out.count = &count;
count             533 source4/torture/rpc/lsa.c 	uint32_t count = sids->num_sids;
count             538 source4/torture/rpc/lsa.c 	names.count = 0;
count             545 source4/torture/rpc/lsa.c 	r.in.count = &count;
count             548 source4/torture/rpc/lsa.c 	r.out.count = &count;
count             578 source4/torture/rpc/lsa.c 	uint32_t count = sids->num_sids;
count             583 source4/torture/rpc/lsa.c 	names.count = 0;
count             589 source4/torture/rpc/lsa.c 	r.in.count = &count;
count             593 source4/torture/rpc/lsa.c 	r.out.count = &count;
count             621 source4/torture/rpc/lsa.c 	uint32_t count;
count             637 source4/torture/rpc/lsa.c 	count = sids.num_sids;
count             643 source4/torture/rpc/lsa.c 		names.count = 0;
count             650 source4/torture/rpc/lsa.c 		r.in.count = &names.count;
count             651 source4/torture/rpc/lsa.c 		r.out.count = &count;
count             672 source4/torture/rpc/lsa.c 		names.count = 0;
count             680 source4/torture/rpc/lsa.c 		r.in.count = &count;
count             683 source4/torture/rpc/lsa.c 		r.out.count = &count;
count             732 source4/torture/rpc/lsa.c 	uint32_t *count;
count             741 source4/torture/rpc/lsa.c 	count = talloc_array(tctx, uint32_t, num_async_requests);
count             756 source4/torture/rpc/lsa.c 		count[i] = 0;
count             757 source4/torture/rpc/lsa.c 		names[i].count = 0;
count             764 source4/torture/rpc/lsa.c 		r[i].in.count = &names[i].count;
count             765 source4/torture/rpc/lsa.c 		r[i].out.count = &count[i];
count             853 source4/torture/rpc/lsa.c 	privs.count = 1;
count             903 source4/torture/rpc/lsa.c 	privs.count = 1;
count             939 source4/torture/rpc/lsa.c 	if (privs && privs->count > 0) {
count             941 source4/torture/rpc/lsa.c 		for (i=0;i<privs->count;i++) {
count            1747 source4/torture/rpc/lsa.c 	for (i = 0; i< privs1.count; i++) {
count            1807 source4/torture/rpc/lsa.c 	for (i=0; i< domains->count; i++) {
count            1828 source4/torture/rpc/lsa.c 	for (i=0; i< domains->count; i++) {
count            2004 source4/torture/rpc/lsa.c 		if (domains.count == 0) {
count            2027 source4/torture/rpc/lsa.c 			if (domains.count == 0) {
count            2034 source4/torture/rpc/lsa.c 			if (r.out.domains->count < 3 || r.out.domains->count > 4) {
count            2037 source4/torture/rpc/lsa.c 				       r.out.domains->count, LSA_ENUM_TRUST_DOMAIN_MULTIPLIER * 3,
count            2046 source4/torture/rpc/lsa.c 		if (domains.count == 0) {
count            2082 source4/torture/rpc/lsa.c 			if (domains_ex.count == 0) {
count            2089 source4/torture/rpc/lsa.c 			if (r_ex.out.domains->count < 3 || r_ex.out.domains->count > 4) {
count            2092 source4/torture/rpc/lsa.c 				       r_ex.out.domains->count,
count            2102 source4/torture/rpc/lsa.c 		if (domains_ex.count == 0) {
count            2260 source4/torture/rpc/lsa.c 		auth_struct.outgoing.count = 0;
count            2261 source4/torture/rpc/lsa.c 		auth_struct.incoming.count = 0;
count            2464 source4/torture/rpc/lsa.c 			tnames.count = 14;
count            2465 source4/torture/rpc/lsa.c 			tnames.names = talloc_zero_array(tctx, struct lsa_TranslatedName, tnames.count);
count            2724 source4/torture/rpc/lsa.c 	tnames.count = 1;
count            2725 source4/torture/rpc/lsa.c 	tnames.names = talloc_array(tctx, struct lsa_TranslatedName, tnames.count);
count            2734 source4/torture/rpc/lsa.c 	tnames2.count = 1;
count            2735 source4/torture/rpc/lsa.c 	tnames2.names = talloc_array(tctx, struct lsa_TranslatedName2, tnames2.count);
count              92 source4/torture/rpc/lsa_lookup.c 	uint32_t count = 0;
count              95 source4/torture/rpc/lsa_lookup.c 	names->count = 0;
count             109 source4/torture/rpc/lsa_lookup.c 	r.in.count = &count;
count             111 source4/torture/rpc/lsa_lookup.c 	r.out.count = &count;
count             193 source4/torture/rpc/lsa_lookup.c 	if (domains.count == 0) {
count             197 source4/torture/rpc/lsa_lookup.c 	for (i=0; i<domains.count; i++) {
count             340 source4/torture/rpc/lsa_lookup.c 	uint32_t count = 0;
count             357 source4/torture/rpc/lsa_lookup.c 	names.count = 0;
count             371 source4/torture/rpc/lsa_lookup.c 	r.in.count	= &count;
count             373 source4/torture/rpc/lsa_lookup.c 	r.out.count	= &count;
count             381 source4/torture/rpc/lsa_lookup.c 	torture_assert_int_equal(tctx, names.count, num_sids,
count             390 source4/torture/rpc/lsa_lookup.c 	torture_assert_int_equal(tctx, domains->count, num_sids,
count              66 source4/torture/rpc/mgmt.c 	for (i=0;i<vector->count;i++) {
count             100 source4/torture/rpc/mgmt.c 	if (statistics.count != MGMT_STATS_ARRAY_MAX_SIZE) {
count             101 source4/torture/rpc/mgmt.c 		printf("Unexpected array size %d\n", statistics.count);
count            1396 source4/torture/rpc/netlogon.c 	r.in.count=10;
count            1806 source4/torture/rpc/netlogon.c 	if (r.out.trusts->count) {
count            1812 source4/torture/rpc/netlogon.c 	for (i=0; i<r.out.trusts->count; i++) {
count            2018 source4/torture/rpc/netlogon.c 	r.in.count = 1;
count            2019 source4/torture/rpc/netlogon.c 	r.in.addresses = talloc_zero_array(tctx, struct netr_DsRAddress, r.in.count);
count            2050 source4/torture/rpc/netlogon.c 	r.in.count = 1;
count            2051 source4/torture/rpc/netlogon.c 	r.in.addresses = talloc_zero_array(tctx, struct	netr_DsRAddress, r.in.count);
count            2313 source4/torture/rpc/netlogon.c 	for (i=0; i<domains.count * 4; i++) {
count            2315 source4/torture/rpc/netlogon.c 			&domains.domains[rand()%domains.count];
count            1553 source4/torture/rpc/samba3rpc.c 	uint32_t count = 0;
count            1585 source4/torture/rpc/samba3rpc.c 	sids.count = 0;
count            1595 source4/torture/rpc/samba3rpc.c 	l.in.count = &count;
count            1596 source4/torture/rpc/samba3rpc.c 	l.out.count = &count;
count            2024 source4/torture/rpc/samba3rpc.c 			if (ctr->count > 0) {
count            2599 source4/torture/rpc/samba3rpc.c 	for (i=0; i<c1->count; i++) {
count            2621 source4/torture/rpc/samba3rpc.c 	uint32_t count;
count            2630 source4/torture/rpc/samba3rpc.c 	r.out.count = &count;
count            2664 source4/torture/rpc/samba3rpc.c 	*num_printers = count;
count            3324 source4/torture/rpc/samr.c 		rights.count = 1;
count            3379 source4/torture/rpc/samr.c 		if (user_rights.count < 1) {
count            3482 source4/torture/rpc/samr.c 		if (user_rights.count < 1) {
count            4934 source4/torture/rpc/samr.c 		if (sam->count == 0) {
count            4938 source4/torture/rpc/samr.c 		for (i=0;i<sam->count;i++) {
count            4951 source4/torture/rpc/samr.c 	n.in.num_names = sam->count;
count            4952 source4/torture/rpc/samr.c 	n.in.names = talloc_array(tctx, struct lsa_String, sam->count);
count            4955 source4/torture/rpc/samr.c 	for (i=0;i<sam->count;i++) {
count            4967 source4/torture/rpc/samr.c 	lr.in.num_rids = sam->count;
count            4968 source4/torture/rpc/samr.c 	lr.in.rids = talloc_array(tctx, uint32_t, sam->count);
count            4971 source4/torture/rpc/samr.c 	for (i=0;i<sam->count;i++) {
count            5054 source4/torture/rpc/samr.c 	for (i=0;i<sam->count;i++) {
count            5094 source4/torture/rpc/samr.c 	for (i=0;i<sam->count;i++) {
count            5226 source4/torture/rpc/samr.c 			if (i >= querydisplayinfo->out.info->info1.count) {
count            5232 source4/torture/rpc/samr.c 			if (i >= querydisplayinfo->out.info->info2.count) {
count            5358 source4/torture/rpc/samr.c 				r.in.start_idx += r.out.info->info1.count;
count            5364 source4/torture/rpc/samr.c 				r.in.start_idx += r.out.info->info2.count;
count            5367 source4/torture/rpc/samr.c 				r.in.start_idx += r.out.info->info3.count;
count            5370 source4/torture/rpc/samr.c 				r.in.start_idx += r.out.info->info4.count;
count            5373 source4/torture/rpc/samr.c 				r.in.start_idx += r.out.info->info5.count;
count            5757 source4/torture/rpc/samr.c 		for (i=0; i<q2.out.info->info5.count; i++) {
count            5777 source4/torture/rpc/samr.c 		q2.in.start_idx += q2.out.info->info5.count;
count            6479 source4/torture/rpc/samr.c 	for (i=0;i<sam->count;i++) {
count             691 source4/torture/rpc/samsync.c 		TEST_INT_EQUAL(rids->count, info3->base.groups.count);
count             692 source4/torture/rpc/samsync.c 		if (rids->count == info3->base.groups.count) {
count             694 source4/torture/rpc/samsync.c 			int count = rids->count;
count             695 source4/torture/rpc/samsync.c 			bool *matched = talloc_zero_array(mem_ctx, bool, rids->count);
count             697 source4/torture/rpc/samsync.c 			for (i = 0; i < count; i++) {
count             698 source4/torture/rpc/samsync.c 				for (j = 0; j < count; j++) {
count             708 source4/torture/rpc/samsync.c 			for (i = 0; i < rids->count; i++) {
count            1101 source4/torture/rpc/samsync.c 	if (!account->privilege_entries && privs && privs->count) {
count            1107 source4/torture/rpc/samsync.c 	TEST_INT_EQUAL(account->privilege_entries, privs->count);
count            1109 source4/torture/rpc/samsync.c 	for (i=0;i< privs->count; i++) {
count             520 source4/torture/rpc/schannel.c 	uint32_t count;
count             539 source4/torture/rpc/schannel.c 	uint32_t count;
count             654 source4/torture/rpc/schannel.c 	conn->count++;
count             110 source4/torture/rpc/spoolss.c 		uint32_t count;
count             118 source4/torture/rpc/spoolss.c 		r.out.count = &count;
count             144 source4/torture/rpc/spoolss.c 		ctx->port_count[level]	= count;
count             313 source4/torture/rpc/spoolss.c 		uint32_t count;
count             326 source4/torture/rpc/spoolss.c 		r.out.count		= &count;
count             350 source4/torture/rpc/spoolss.c 		ctx->driver_count[level]	= count;
count             437 source4/torture/rpc/spoolss.c 		uint32_t count;
count             445 source4/torture/rpc/spoolss.c 		r.out.count = &count;
count             469 source4/torture/rpc/spoolss.c 		ctx->monitor_count[level]	= count;
count             512 source4/torture/rpc/spoolss.c 		uint32_t count;
count             521 source4/torture/rpc/spoolss.c 		r.out.count = &count;
count             545 source4/torture/rpc/spoolss.c 		ctx->print_processor_count[level]	= count;
count             587 source4/torture/rpc/spoolss.c 		uint32_t count;
count             596 source4/torture/rpc/spoolss.c 		r.out.count = &count;
count             638 source4/torture/rpc/spoolss.c 		uint32_t count;
count             647 source4/torture/rpc/spoolss.c 		r.out.count	= &count;
count             671 source4/torture/rpc/spoolss.c 		ctx->printer_count[level]	= count;
count             856 source4/torture/rpc/spoolss.c 	uint32_t count;
count             869 source4/torture/rpc/spoolss.c 		r.out.count = &count;
count             895 source4/torture/rpc/spoolss.c 			for (j = 0; j < count; j++) {
count             996 source4/torture/rpc/spoolss.c 	uint32_t count;
count            1005 source4/torture/rpc/spoolss.c 	r.out.count = &count;
count            1197 source4/torture/rpc/spoolss.c 	uint32_t count;
count            1207 source4/torture/rpc/spoolss.c 	r.out.count = &count;
count            1227 source4/torture/rpc/spoolss.c 		for (j = 0; j < count; j++) {
count            1523 source4/torture/rpc/spoolss.c 	uint32_t count;
count            1529 source4/torture/rpc/spoolss.c 	r.out.count = &count;
count            1843 source4/torture/rpc/spoolss.c 		uint32_t count;
count            1851 source4/torture/rpc/spoolss.c 		r.out.count	= &count;
count            1876 source4/torture/rpc/spoolss.c 		for (j=0;j<count;j++) {
count            1964 source4/torture/rpc/spoolss.c 		uint32_t count;
count            1973 source4/torture/rpc/spoolss.c 		r.out.count = &count;
count             171 source4/torture/rpc/spoolss_notify.c 	for (i=0;i<ndr_table_spoolss.endpoints->count;i++) {
count             253 source4/torture/rpc/spoolss_notify.c 	t1.count = 2;
count             256 source4/torture/rpc/spoolss_notify.c 	t1.types[0].count = 1;
count             261 source4/torture/rpc/spoolss_notify.c 	t1.types[1].count = 1;
count             194 source4/torture/rpc/spoolss_win.c 	uint32_t count;
count             203 source4/torture/rpc/spoolss_win.c 	ep.out.count = &count;
count             219 source4/torture/rpc/spoolss_win.c 	ctx->printer_count = count;
count             278 source4/torture/rpc/spoolss_win.c 	uint32_t count;
count             288 source4/torture/rpc/spoolss_win.c 	ej.out.count = &count;
count             350 source4/torture/rpc/spoolss_win.c 	uint32_t count;
count             360 source4/torture/rpc/spoolss_win.c 	ef.out.count = &count;
count             427 source4/torture/rpc/spoolss_win.c 	uint32_t count;
count             435 source4/torture/rpc/spoolss_win.c 	epde.out.count = &count;
count             126 source4/torture/rpc/srvsvc.c 			for (j=0;j<r.out.info_ctr->ctr.ctr1->count;j++) {
count             273 source4/torture/rpc/srvsvc.c 			for (j=0;j<r.out.info_ctr->ctr.ctr1->count;j++) {
count             807 source4/torture/rpc/srvsvc.c 			for (j=0;j<r.out.info_ctr->ctr.ctr2->count;j++) {
count              78 source4/torture/rpc/unixinfo.c 	r.in.count = &num_uids;
count              80 source4/torture/rpc/unixinfo.c 	r.out.count = &num_uids;
count             446 source4/torture/rpc/wkssvc.c 	for (k=0; k < r.out.info->ctr.ctr0->count; k++) {
count             543 source4/torture/rpc/wkssvc.c 	if ((level == NetPrimaryComputerName) && ctr->count != 1) {
count             546 source4/torture/rpc/wkssvc.c 				"name but %u\n", ctr->count);
count             553 source4/torture/rpc/wkssvc.c 		for (i=0; i<ctr->count; i++) {
count              40 source4/torture/smb2/dir.c 	uint_t count;
count              55 source4/torture/smb2/dir.c 		status = smb2_find_level(tree, tree, &f, &count, &d);
count              61 source4/torture/smb2/dir.c 		printf("Got %d files\n", count);
count              62 source4/torture/smb2/dir.c 		for (i=0;i<count;i++) {
count              68 source4/torture/smb2/dir.c 	} while (count != 0);
count             121 source4/torture/smb2/find.c 		uint_t count;
count             125 source4/torture/smb2/find.c 		levels[i].status = smb2_find_level(tree, tree, &f, &count, &d);
count             131 source4/torture/smb2/find.c 		if (count != 1) {
count             132 source4/torture/smb2/find.c 			printf("Expected count 1 - got %d in %s\n", count, levels[i].name);
count              48 source4/torture/smb2/oplocks.c 	int count;
count              77 source4/torture/smb2/oplocks.c 	break_info.count++;
count             150 source4/torture/smb2/oplocks.c 	CHECK_VAL(break_info.count, 0);
count             156 source4/torture/smb2/oplocks.c 	CHECK_VAL(break_info.count, 1);
count             250 source4/torture/unix/unix_info2.c 	torture_assert_int_equal(torture, search.t2ffirst.out.count, 1,
count             478 source4/torture/winbind/struct_based.c 	uint32_t i, count = 0;
count             505 source4/torture/winbind/struct_based.c 		count++;
count             509 source4/torture/winbind/struct_based.c 		torture_assert(torture, count > 0,
count             521 source4/torture/winbind/struct_based.c 	uint32_t count = 0;
count             562 source4/torture/winbind/struct_based.c 		count++;
count             565 source4/torture/winbind/struct_based.c 	if (count == 0) {
count             572 source4/torture/winbind/struct_based.c 		torture_assert(torture, count > 0,
count             584 source4/torture/winbind/struct_based.c 	uint32_t count;
count             596 source4/torture/winbind/struct_based.c 	for(count = 0;
count             598 source4/torture/winbind/struct_based.c 	    count++)
count             600 source4/torture/winbind/struct_based.c 		u = talloc_realloc(torture, u, char *, count + 2);
count             601 source4/torture/winbind/struct_based.c 		u[count+1] = NULL;
count             602 source4/torture/winbind/struct_based.c 		u[count] = talloc_strdup(u, name);
count             614 source4/torture/winbind/struct_based.c 	uint32_t count;
count             622 source4/torture/winbind/struct_based.c 	for (count = 0; users[count]; count++) { }
count             624 source4/torture/winbind/struct_based.c 	torture_comment(torture, "got %d users\n", count);
count             634 source4/torture/winbind/struct_based.c 	uint32_t count;
count             646 source4/torture/winbind/struct_based.c 	for(count = 0;
count             648 source4/torture/winbind/struct_based.c 	    count++)
count             650 source4/torture/winbind/struct_based.c 		g = talloc_realloc(torture, g, char *, count + 2);
count             651 source4/torture/winbind/struct_based.c 		g[count+1] = NULL;
count             652 source4/torture/winbind/struct_based.c 		g[count] = talloc_strdup(g, name);
count             664 source4/torture/winbind/struct_based.c 	uint32_t count;
count             672 source4/torture/winbind/struct_based.c 	for (count = 0; groups[count]; count++) { }
count             674 source4/torture/winbind/struct_based.c 	torture_comment(torture, "got %d groups\n", count);
count             691 source4/torture/winbind/struct_based.c 	uint32_t count = 0;
count             707 source4/torture/winbind/struct_based.c 				   count + 2);
count             708 source4/torture/winbind/struct_based.c 		ZERO_STRUCT(s[count+1]);
count             714 source4/torture/winbind/struct_based.c 		s[count].netbios_name = talloc_strdup(s, lp);
count             729 source4/torture/winbind/struct_based.c 		s[count].seq = seq;
count             731 source4/torture/winbind/struct_based.c 		count++;
count             735 source4/torture/winbind/struct_based.c 	torture_assert(torture, count >= 2, "The list of domain sequence "
count             890 source4/torture/winbind/struct_based.c 	uint32_t count;
count             892 source4/torture/winbind/struct_based.c 	for (count = 0; list[count]; count++) {
count             901 source4/torture/winbind/struct_based.c 		parse_domain_user(torture, list[count], req.data.name.dom_name,
count             920 source4/torture/winbind/struct_based.c 		torture_assert_casestr_equal(torture, list[count], name,
count             924 source4/torture/winbind/struct_based.c 		torture_comment(torture, " %s -> %s -> %s\n", list[count],
count             937 source4/torture/winbind/struct_based.c 	uint32_t count;
count             939 source4/torture/winbind/struct_based.c 	for (count = 0; list[count]; count++) {
count             940 source4/torture/winbind/struct_based.c 		if (strequal(name, list[count])) {
count             958 source4/torture/winbind/struct_based.c 	uint32_t count;
count             990 source4/torture/winbind/struct_based.c 	count = 0;
count             993 source4/torture/winbind/struct_based.c 		count++;
count             996 source4/torture/winbind/struct_based.c 					       invalid_user, count);
count            1003 source4/torture/winbind/struct_based.c 				count));
count              43 source4/utils/ad2oLschema.c 	int count;
count              88 source4/utils/ad2oLschema.c 		if (schema_res->count != 1) {
count              99 source4/utils/ad2oLschema.c 	if (rootdse_res->count != 1) {
count             144 source4/utils/ad2oLschema.c 	ret.count = 0;
count             298 source4/utils/ad2oLschema.c 		ret.count++;
count             386 source4/utils/ad2oLschema.c 		ret.count++;
count             439 source4/utils/ad2oLschema.c 	printf("Converted %d records (skipped %d) with %d failures\n", ret.count, ret.skipped, ret.failures);
count              55 source4/utils/oLschema2ldif.c 	int count;
count             474 source4/utils/oLschema2ldif.c 	ret.count = 0;
count             499 source4/utils/oLschema2ldif.c 					ret.count++;
count             523 source4/utils/oLschema2ldif.c 				ret.count++;
count             601 source4/utils/oLschema2ldif.c 	printf("Converted %d records with %d failures\n", ret.count, ret.failures);
count              60 source4/winbind/idmap.c 	if (res->count != 1) {
count             238 source4/winbind/idmap.c 	if (res->count == 1) {
count             355 source4/winbind/idmap.c 	if (res->count == 1) {
count             411 source4/winbind/idmap.c 	if (res->count > 0) {
count             439 source4/winbind/idmap.c 	if (res->count != 1) {
count             639 source4/winbind/idmap.c 			    TALLOC_CTX *mem_ctx, int count,
count             645 source4/winbind/idmap.c 	for (i = 0; i < count; ++i) {
count             659 source4/winbind/idmap.c 	if (error_count == count) {
count             684 source4/winbind/idmap.c 			    TALLOC_CTX *mem_ctx, int count,
count             690 source4/winbind/idmap.c 	for (i = 0; i < count; ++i) {
count             704 source4/winbind/idmap.c 	if (error_count == count) {
count              45 source4/winbind/wb_async_helpers.c 	uint32_t count;
count              83 source4/winbind/wb_async_helpers.c 	state->count = 0;
count              85 source4/winbind/wb_async_helpers.c 	state->names.count = 0;
count              92 source4/winbind/wb_async_helpers.c 	state->r.in.count = &state->count;
count              94 source4/winbind/wb_async_helpers.c 	state->r.out.count = &state->count;
count             145 source4/winbind/wb_async_helpers.c 		if (name->sid_index >= domains->count) {
count             194 source4/winbind/wb_async_helpers.c 	uint32_t count;
count             221 source4/winbind/wb_async_helpers.c 	state->sids.count = 0;
count             224 source4/winbind/wb_async_helpers.c 	state->count = 0;
count             241 source4/winbind/wb_async_helpers.c 	state->r.in.count = &state->count;
count             242 source4/winbind/wb_async_helpers.c 	state->r.out.count = &state->count;
count             292 source4/winbind/wb_async_helpers.c 		if (sid->sid_index >= domains->count) {
count             444 source4/winbind/wb_async_helpers.c 	*num_rids = state->rid_array->count;
count              71 source4/winbind/wb_cmd_getpwent.c 	if (pwent->page_index < pwent->user_list->out.count) {
count             144 source4/winbind/wb_cmd_list_groups.c 	for (i = 0; i < group_list->out.count; ++i) {
count             107 source4/winbind/wb_cmd_list_trustdom.c 	state->domainlist.count = 0;
count             142 source4/winbind/wb_cmd_list_trustdom.c 	state->num_domains += state->r.out.domains->count;
count             149 source4/winbind/wb_cmd_list_trustdom.c 	for (i=0; i<state->r.out.domains->count; i++) {
count             168 source4/winbind/wb_cmd_list_trustdom.c 	state->domainlist.count = 0;
count             144 source4/winbind/wb_cmd_list_users.c 	for (i = 0; i < user_list->out.count; ++i) {
count             122 source4/winbind/wb_cmd_usersids.c 	state->rids.count = 0;
count             146 source4/winbind/wb_cmd_usersids.c 	state->num_sids = 1 + state->num_domgroups + state->r.out.rids->count;
count             157 source4/winbind/wb_cmd_usersids.c 	for (i=0; i<state->r.out.rids->count; i++) {
count             102 source4/winbind/wb_irpc.c 			ctx = wb_sids2xids_send(msg, service, req->in.count,
count             106 source4/winbind/wb_irpc.c 			ctx = wb_xids2sids_send(msg, service, req->in.count,
count              34 source4/winbind/wb_sids2xids.c 	int count;
count              39 source4/winbind/wb_sids2xids.c 					    int count, struct id_mapping *ids)
count              55 source4/winbind/wb_sids2xids.c 	state->count = count;
count              59 source4/winbind/wb_sids2xids.c 						count, state->ids);
count              34 source4/winbind/wb_xids2sids.c 	int count;
count              39 source4/winbind/wb_xids2sids.c 					    int count, struct id_mapping *ids)
count              55 source4/winbind/wb_xids2sids.c 	state->count = count;
count              59 source4/winbind/wb_xids2sids.c 					        count, state->ids);
count             267 source4/wrepl_server/wrepl_in_call.c 	DEBUG(10,("WINSREPL: filter '%s' count %d\n", filter, res->count));
count             269 source4/wrepl_server/wrepl_in_call.c 	if (res->count == 0) {
count             271 source4/wrepl_server/wrepl_in_call.c 			res->count, owner_in->address, 
count             278 source4/wrepl_server/wrepl_in_call.c 	names = talloc_array(call, struct wrepl_wins_name, res->count);
count             281 source4/wrepl_server/wrepl_in_call.c 	for (i=0, j=0; i < res->count; i++) {
count              81 source4/wrepl_server/wrepl_scavenging.c 	DEBUG(10,("WINS scavenging: filter '%s' count %d\n", filter, res->count));
count              88 source4/wrepl_server/wrepl_scavenging.c 	for (i=0; i < res->count; i++) {
count             234 source4/wrepl_server/wrepl_scavenging.c 	DEBUG(10,("WINS scavenging: filter '%s' count %d\n", filter, res->count));
count             241 source4/wrepl_server/wrepl_scavenging.c 	for (i=0; i < res->count; i++) {
count             449 source4/wrepl_server/wrepl_scavenging.c 	DEBUG(10,("WINS scavenging: filter '%s' count %d\n", filter, res->count));
count             451 source4/wrepl_server/wrepl_scavenging.c 	for (i=0; i < res->count; i++) {
count              60 source4/wrepl_server/wrepl_server.c 	if (res->count > 1) goto failed;
count              62 source4/wrepl_server/wrepl_server.c 	if (res->count == 1) {
count             168 source4/wrepl_server/wrepl_server.c 	for (i=0; i < res->count; i++) {
count             217 source4/wrepl_server/wrepl_server.c 		res->count, (unsigned long long)service->config.seqnumber));
count             397 source4/wrepl_server/wrepl_server.c 	for (i=0; i < res->count; i++) {