Searched refs:F_IGNCASE (Results 1 – 3 of 3) sorted by relevance
/freebsd/usr.bin/find/ |
H A D | option.c | 95 { "-ilname", c_name, f_name, F_LINK | F_IGNCASE }, 96 { "-iname", c_name, f_name, F_IGNCASE }, 98 { "-ipath", c_name, f_path, F_IGNCASE }, 99 { "-iregex", c_regex, f_regex, F_IGNCASE }, 100 { "-iwholename",c_name, f_path, F_IGNCASE },
|
H A D | find.h | 92 #define F_IGNCASE 0x00010000 /* iname ipath iregex */ macro 93 #define F_EXACTTIME F_IGNCASE /* -[acm]time units syntax */
|
H A D | function.c | 1166 plan->flags & F_IGNCASE ? FNM_CASEFOLD : 0); in f_name() 1298 plan->flags & F_IGNCASE ? FNM_CASEFOLD : 0); in f_path() 1436 plan->flags & F_IGNCASE ? "-iregex" : "-regex", errbuf); in f_regex() 1460 regexp_flags | (option->flags & F_IGNCASE ? REG_ICASE : 0))) != 0) { in c_regex() 1463 option->flags & F_IGNCASE ? "-iregex" : "-regex", in c_regex()
|