char_flags         82 source3/smbd/globals.c unsigned char char_flags[256];
char_flags        194 source3/smbd/globals.c 	ZERO_STRUCT(char_flags);
char_flags         79 source3/smbd/globals.h extern unsigned char char_flags[256];
char_flags         85 source3/smbd/mangle_hash2.c #define FLAG_CHECK(c, flag) (char_flags[(unsigned char)(c)] & (flag))
char_flags        629 source3/smbd/mangle_hash2.c 	memset(char_flags, 0, sizeof(char_flags));
char_flags        634 source3/smbd/mangle_hash2.c 			char_flags[i] |= FLAG_ILLEGAL;
char_flags        640 source3/smbd/mangle_hash2.c 			char_flags[i] |=  (FLAG_ASCII | FLAG_BASECHAR);
char_flags        643 source3/smbd/mangle_hash2.c 			char_flags[i] |= FLAG_ASCII;
char_flags        647 source3/smbd/mangle_hash2.c 			char_flags[i] |= FLAG_ILLEGAL;
char_flags        651 source3/smbd/mangle_hash2.c 			char_flags[i] |= FLAG_WILDCARD;
char_flags        670 source3/smbd/mangle_hash2.c 		char_flags[c1] |= FLAG_POSSIBLE1;
char_flags        671 source3/smbd/mangle_hash2.c 		char_flags[c2] |= FLAG_POSSIBLE2;
char_flags        672 source3/smbd/mangle_hash2.c 		char_flags[c3] |= FLAG_POSSIBLE3;
char_flags        673 source3/smbd/mangle_hash2.c 		char_flags[c4] |= FLAG_POSSIBLE4;
char_flags        674 source3/smbd/mangle_hash2.c 		char_flags[tolower_ascii(c1)] |= FLAG_POSSIBLE1;
char_flags        675 source3/smbd/mangle_hash2.c 		char_flags[tolower_ascii(c2)] |= FLAG_POSSIBLE2;
char_flags        676 source3/smbd/mangle_hash2.c 		char_flags[tolower_ascii(c3)] |= FLAG_POSSIBLE3;
char_flags        677 source3/smbd/mangle_hash2.c 		char_flags[tolower_ascii(c4)] |= FLAG_POSSIBLE4;
char_flags        679 source3/smbd/mangle_hash2.c 		char_flags[(unsigned char)'.'] |= FLAG_POSSIBLE4;
char_flags         78 source4/ntvfs/posix/pvfs_shortname.c #define FLAG_CHECK(c, flag) (ctx->char_flags[(uint8_t)(c)] & (flag))
char_flags         86 source4/ntvfs/posix/pvfs_shortname.c 	uint8_t char_flags[256];
char_flags        552 source4/ntvfs/posix/pvfs_shortname.c 	ZERO_STRUCT(ctx->char_flags);
char_flags        558 source4/ntvfs/posix/pvfs_shortname.c 			ctx->char_flags[i] |=  (FLAG_ASCII | FLAG_BASECHAR);
char_flags        561 source4/ntvfs/posix/pvfs_shortname.c 			ctx->char_flags[i] |= FLAG_ASCII;
char_flags        565 source4/ntvfs/posix/pvfs_shortname.c 			ctx->char_flags[i] |= FLAG_ILLEGAL;
char_flags        569 source4/ntvfs/posix/pvfs_shortname.c 			ctx->char_flags[i] |= FLAG_WILDCARD;
char_flags        588 source4/ntvfs/posix/pvfs_shortname.c 		ctx->char_flags[c1] |= FLAG_POSSIBLE1;
char_flags        589 source4/ntvfs/posix/pvfs_shortname.c 		ctx->char_flags[c2] |= FLAG_POSSIBLE2;
char_flags        590 source4/ntvfs/posix/pvfs_shortname.c 		ctx->char_flags[c3] |= FLAG_POSSIBLE3;
char_flags        591 source4/ntvfs/posix/pvfs_shortname.c 		ctx->char_flags[c4] |= FLAG_POSSIBLE4;
char_flags        592 source4/ntvfs/posix/pvfs_shortname.c 		ctx->char_flags[tolower(c1)] |= FLAG_POSSIBLE1;
char_flags        593 source4/ntvfs/posix/pvfs_shortname.c 		ctx->char_flags[tolower(c2)] |= FLAG_POSSIBLE2;
char_flags        594 source4/ntvfs/posix/pvfs_shortname.c 		ctx->char_flags[tolower(c3)] |= FLAG_POSSIBLE3;
char_flags        595 source4/ntvfs/posix/pvfs_shortname.c 		ctx->char_flags[tolower(c4)] |= FLAG_POSSIBLE4;
char_flags        597 source4/ntvfs/posix/pvfs_shortname.c 		ctx->char_flags[(unsigned char)'.'] |= FLAG_POSSIBLE4;