ut                 67 lib/zlib/contrib/minizip/miniunz.c   struct utimbuf ut;
ut                 80 lib/zlib/contrib/minizip/miniunz.c   ut.actime=ut.modtime=mktime(&newdate);
ut                 81 lib/zlib/contrib/minizip/miniunz.c   utime(filename,&ut);
ut               1454 source3/auth/auth_util.c 	groups = (gid_t *)memdup(src->ut.groups,
ut               1455 source3/auth/auth_util.c 				 sizeof(gid_t) * src->ut.ngroups);
ut               1456 source3/auth/auth_util.c 	if ((src->ut.ngroups != 0) && (groups == NULL)) {
ut               1468 source3/auth/auth_util.c 	dst->ut.uid = src->ut.uid;
ut               1469 source3/auth/auth_util.c 	dst->ut.gid = src->ut.gid;
ut               1470 source3/auth/auth_util.c 	dst->ut.ngroups = src->ut.ngroups;
ut               1471 source3/auth/auth_util.c 	dst->ut.groups = groups;
ut                618 source3/include/smb.h 	UNIX_USER_TOKEN ut;
ut                 70 source3/lib/smbrun.c 	uid_t uid = current_user.ut.uid;
ut                 71 source3/lib/smbrun.c 	gid_t gid = current_user.ut.gid;
ut                233 source3/lib/smbrun.c 	uid_t uid = current_user.ut.uid;
ut                234 source3/lib/smbrun.c 	gid_t gid = current_user.ut.gid;
ut                 76 source3/lib/util_str.c 		char us, ut;
ut                 90 source3/lib/util_str.c 		ut = toupper_ascii_fast(*pt);
ut                 91 source3/lib/util_str.c 		if (us == ut)
ut                 93 source3/lib/util_str.c 		else if (us < ut)
ut                 95 source3/lib/util_str.c 		else if (us > ut)
ut                133 source3/lib/util_str.c 		char us, ut;
ut                147 source3/lib/util_str.c 		ut = toupper_ascii_fast(*pt);
ut                148 source3/lib/util_str.c 		if (us == ut)
ut                150 source3/lib/util_str.c 		else if (us < ut)
ut                152 source3/lib/util_str.c 		else if (us > ut)
ut                 79 source3/printing/print_generic.c 				current_user.ut.gid,
ut               1513 source3/printing/printing.c 			current_user.ut.gid,
ut               1533 source3/printing/printing.c 			current_user.ut.gid,
ut                289 source3/smbd/close.c 		set_delete_on_close_lck(lck, True, &current_user.ut);
ut                341 source3/smbd/close.c 	if (!unix_token_equal(lck->delete_token, &current_user.ut)) {
ut                658 source3/smbd/close.c 		set_delete_on_close_lck(lck, True, &current_user.ut);
ut                146 source3/smbd/globals.h 	UNIX_USER_TOKEN ut;
ut               1179 source3/smbd/posix_acls.c 				*puser = current_user.ut.uid;
ut               1202 source3/smbd/posix_acls.c 				*pgrp = current_user.ut.gid;
ut               1280 source3/smbd/posix_acls.c 	if (uid_ace->unix_ug.uid == current_user.ut.uid) {
ut               1283 source3/smbd/posix_acls.c 		if (group_ace->unix_ug.gid == current_user.ut.gid) {
ut               1287 source3/smbd/posix_acls.c 		for (i=0; i < current_user.ut.ngroups; i++) {
ut               1288 source3/smbd/posix_acls.c 			if (group_ace->unix_ug.gid == current_user.ut.groups[i]) {
ut               2536 source3/smbd/posix_acls.c 	for (i = 0; i < current_user.ut.ngroups; i++) {
ut               2537 source3/smbd/posix_acls.c 		if (current_user.ut.groups[i] == gid) {
ut               3415 source3/smbd/posix_acls.c 		if ( ( has_take_ownership_priv && ( uid == current_user.ut.uid ) ) ||
ut               3437 source3/smbd/posix_acls.c 	if (uid != current_user.ut.uid) {
ut                206 source3/smbd/sec_ctx.c 	ctx_p->ut.uid = geteuid();
ut                207 source3/smbd/sec_ctx.c 	ctx_p->ut.gid = getegid();
ut                210 source3/smbd/sec_ctx.c  		  (unsigned int)ctx_p->ut.uid, (unsigned int)ctx_p->ut.gid, sec_ctx_stack_ndx ));
ut                215 source3/smbd/sec_ctx.c 	ctx_p->ut.ngroups = sys_getgroups(0, NULL);
ut                217 source3/smbd/sec_ctx.c 	if (ctx_p->ut.ngroups != 0) {
ut                218 source3/smbd/sec_ctx.c 		if (!(ctx_p->ut.groups = SMB_MALLOC_ARRAY(gid_t, ctx_p->ut.ngroups))) {
ut                224 source3/smbd/sec_ctx.c 		sys_getgroups(ctx_p->ut.ngroups, ctx_p->ut.groups);
ut                226 source3/smbd/sec_ctx.c 		ctx_p->ut.groups = NULL;
ut                318 source3/smbd/sec_ctx.c 	ctx_p->ut.ngroups = ngroups;
ut                320 source3/smbd/sec_ctx.c 	SAFE_FREE(ctx_p->ut.groups);
ut                328 source3/smbd/sec_ctx.c 		ctx_p->ut.groups = (gid_t *)memdup(groups,
ut                330 source3/smbd/sec_ctx.c 		if (!ctx_p->ut.groups) {
ut                334 source3/smbd/sec_ctx.c 		ctx_p->ut.groups = NULL;
ut                346 source3/smbd/sec_ctx.c 	ctx_p->ut.uid = uid;
ut                347 source3/smbd/sec_ctx.c 	ctx_p->ut.gid = gid;
ut                351 source3/smbd/sec_ctx.c 	current_user.ut.uid = uid;
ut                352 source3/smbd/sec_ctx.c 	current_user.ut.gid = gid;
ut                353 source3/smbd/sec_ctx.c 	current_user.ut.ngroups = ngroups;
ut                354 source3/smbd/sec_ctx.c 	current_user.ut.groups = groups;
ut                389 source3/smbd/sec_ctx.c 	ctx_p->ut.uid = (uid_t)-1;
ut                390 source3/smbd/sec_ctx.c 	ctx_p->ut.gid = (gid_t)-1;
ut                392 source3/smbd/sec_ctx.c 	SAFE_FREE(ctx_p->ut.groups);
ut                393 source3/smbd/sec_ctx.c 	ctx_p->ut.ngroups = 0;
ut                404 source3/smbd/sec_ctx.c 	set_unix_security_ctx(prev_ctx_p->ut.uid,
ut                405 source3/smbd/sec_ctx.c 			prev_ctx_p->ut.gid,
ut                406 source3/smbd/sec_ctx.c 			prev_ctx_p->ut.ngroups,
ut                407 source3/smbd/sec_ctx.c 			prev_ctx_p->ut.groups);
ut                411 source3/smbd/sec_ctx.c 	current_user.ut.uid = prev_ctx_p->ut.uid;
ut                412 source3/smbd/sec_ctx.c 	current_user.ut.gid = prev_ctx_p->ut.gid;
ut                413 source3/smbd/sec_ctx.c 	current_user.ut.ngroups = prev_ctx_p->ut.ngroups;
ut                414 source3/smbd/sec_ctx.c 	current_user.ut.groups = prev_ctx_p->ut.groups;
ut                435 source3/smbd/sec_ctx.c 		sec_ctx_stack[i].ut.uid = (uid_t)-1;
ut                436 source3/smbd/sec_ctx.c 		sec_ctx_stack[i].ut.gid = (gid_t)-1;
ut                442 source3/smbd/sec_ctx.c 	ctx_p->ut.uid = geteuid();
ut                443 source3/smbd/sec_ctx.c 	ctx_p->ut.gid = getegid();
ut                445 source3/smbd/sec_ctx.c 	get_current_groups(ctx_p->ut.gid, &ctx_p->ut.ngroups, &ctx_p->ut.groups);
ut                451 source3/smbd/sec_ctx.c 	current_user.ut.uid = ctx_p->ut.uid;
ut                452 source3/smbd/sec_ctx.c 	current_user.ut.gid = ctx_p->ut.gid;
ut                453 source3/smbd/sec_ctx.c 	current_user.ut.ngroups = ctx_p->ut.ngroups;
ut                454 source3/smbd/sec_ctx.c 	current_user.ut.groups = ctx_p->ut.groups;
ut                248 source3/smbd/uid.c 	   (current_user.ut.uid == conn->server_info->utok.uid)) {
ut                254 source3/smbd/uid.c 		   (current_user.ut.uid == vuser->server_info->utok.uid)) {
ut                343 source3/smbd/uid.c 	current_user.ut.ngroups = num_groups;
ut                344 source3/smbd/uid.c 	current_user.ut.groups  = group_list;	
ut                346 source3/smbd/uid.c 	set_sec_ctx(uid, gid, current_user.ut.ngroups, current_user.ut.groups,