HelenOS sources

match             166 kernel/arch/ia64/src/mm/page.c 	bool match;
match             189 kernel/arch/ia64/src/mm/page.c 	match = (ttag(page) == v->present.tag.tag_word);
match             194 kernel/arch/ia64/src/mm/page.c 	return match;
match            1875 uspace/app/edit/edit.c 	match_t match;
match            1876 uspace/app/edit/edit.c 	errno_t rc = search_next_match(search, &match);
match            1882 uspace/app/edit/edit.c 	if (match.end) {
match            1884 uspace/app/edit/edit.c 		assert(match.end != NULL);
match            1885 uspace/app/edit/edit.c 		spt_t *end = match.end;
match            1887 uspace/app/edit/edit.c 		while (match.length > 0) {
match            1888 uspace/app/edit/edit.c 			match.length--;
match             105 uspace/app/edit/search.c errno_t search_next_match(search_t *s, match_t *match)
match             121 uspace/app/edit/search.c 				rc = s->ops.mark(s->client_data, &match->end);
match             124 uspace/app/edit/search.c 				match->length = s->pattern_length;
match             130 uspace/app/edit/search.c 	match->end = NULL;
match             131 uspace/app/edit/search.c 	match->length = 0;
match             106 uspace/app/usbinfo/dump.c 	list_foreach(matches->ids, link, match_id_t, match) {
match             107 uspace/app/usbinfo/dump.c 		printf("%s%3d %s\n", line_prefix, match->score, match->id);
match            1396 uspace/dist/src/c/demos/edit/edit.c 	match_t match;
match            1397 uspace/dist/src/c/demos/edit/edit.c 	errno_t rc = search_next_match(search, &match);
match            1403 uspace/dist/src/c/demos/edit/edit.c 	if (match.end) {
match            1405 uspace/dist/src/c/demos/edit/edit.c 		assert(match.end != NULL);
match            1406 uspace/dist/src/c/demos/edit/edit.c 		spt_t *end = match.end;
match            1408 uspace/dist/src/c/demos/edit/edit.c 		while (match.length > 0) {
match            1409 uspace/dist/src/c/demos/edit/edit.c 			match.length--;
match             104 uspace/dist/src/c/demos/edit/search.c errno_t search_next_match(search_t *s, match_t *match)
match             120 uspace/dist/src/c/demos/edit/search.c 				rc = s->ops.mark(s->client_data, &match->end);
match             123 uspace/dist/src/c/demos/edit/search.c 				match->length = s->pattern_length;
match             129 uspace/dist/src/c/demos/edit/search.c 	match->end = NULL;
match             130 uspace/dist/src/c/demos/edit/search.c 	match->length = 0;
match             341 uspace/lib/c/generic/getopt.c 		int i, ambiguous, match;
match             344 uspace/lib/c/generic/getopt.c 		match = -1;
match             379 uspace/lib/c/generic/getopt.c 				match = i;
match             383 uspace/lib/c/generic/getopt.c 			if (match == -1)		/* partial match */
match             384 uspace/lib/c/generic/getopt.c 				match = i;
match             385 uspace/lib/c/generic/getopt.c 			else if (!IDENTICAL_INTERPRETATION(i, match))
match             396 uspace/lib/c/generic/getopt.c 		if (match != -1) {			/* option found */
match             397 uspace/lib/c/generic/getopt.c 			if (long_options[match].has_arg == no_argument &&
match             406 uspace/lib/c/generic/getopt.c 				if (long_options[match].flag == NULL)
match             407 uspace/lib/c/generic/getopt.c 					optopt = long_options[match].val;
match             412 uspace/lib/c/generic/getopt.c 			if (long_options[match].has_arg == required_argument ||
match             413 uspace/lib/c/generic/getopt.c 			    long_options[match].has_arg == optional_argument) {
match             416 uspace/lib/c/generic/getopt.c 				else if (long_options[match].has_arg ==
match             425 uspace/lib/c/generic/getopt.c 			if ((long_options[match].has_arg == required_argument) &&
match             437 uspace/lib/c/generic/getopt.c 				if (long_options[match].flag == NULL)
match             438 uspace/lib/c/generic/getopt.c 					optopt = long_options[match].val;
match             450 uspace/lib/c/generic/getopt.c 		if (long_options[match].flag) {
match             451 uspace/lib/c/generic/getopt.c 			*long_options[match].flag = long_options[match].val;
match             454 uspace/lib/c/generic/getopt.c 			retval = long_options[match].val;
match             456 uspace/lib/c/generic/getopt.c 			*idx = match;
match             874 uspace/lib/ext4/src/ops.c 	.match = ext4_match,
match             597 uspace/lib/fs/libfs.c 		rc = ops->match(&tmp, cur, component);
match              68 uspace/lib/fs/libfs.h 	errno_t (*match)(fs_node_t **, fs_node_t *, const char *);
match             319 uspace/lib/gfxfont/test/glyph.c 	bool match;
match             347 uspace/lib/gfxfont/test/glyph.c 	match = gfx_glyph_matches(glyph, "A", &msize);
match             348 uspace/lib/gfxfont/test/glyph.c 	PCUT_ASSERT_FALSE(match);
match             350 uspace/lib/gfxfont/test/glyph.c 	match = gfx_glyph_matches(glyph, "AB", &msize);
match             351 uspace/lib/gfxfont/test/glyph.c 	PCUT_ASSERT_TRUE(match);
match             354 uspace/lib/gfxfont/test/glyph.c 	match = gfx_glyph_matches(glyph, "ABC", &msize);
match             355 uspace/lib/gfxfont/test/glyph.c 	PCUT_ASSERT_TRUE(match);
match             358 uspace/lib/gfxfont/test/glyph.c 	match = gfx_glyph_matches(glyph, "BAB", &msize);
match             359 uspace/lib/gfxfont/test/glyph.c 	PCUT_ASSERT_FALSE(match);
match             314 uspace/lib/posix/src/fnmatch.c #define _matched(match) { \
match             315 uspace/lib/posix/src/fnmatch.c 		int _match = match; \
match             646 uspace/lib/posix/src/fnmatch.c 	match("", "", 0);
match             647 uspace/lib/posix/src/fnmatch.c 	match("*", "hello", 0);
match             648 uspace/lib/posix/src/fnmatch.c 	match("hello", "hello", 0);
match             649 uspace/lib/posix/src/fnmatch.c 	match("hello*", "hello", 0);
match             651 uspace/lib/posix/src/fnmatch.c 	match("*hello", "prdel hello", 0);
match             652 uspace/lib/posix/src/fnmatch.c 	match("he[sl]lo", "hello", 0);
match             653 uspace/lib/posix/src/fnmatch.c 	match("he[sl]lo", "heslo", 0);
match             657 uspace/lib/posix/src/fnmatch.c 	match("he[^sl]lo", "heblo", 0);
match             660 uspace/lib/posix/src/fnmatch.c 	match("he[!sl]lo", "heblo", 0);
match             661 uspace/lib/posix/src/fnmatch.c 	match("al*[c-t]a*vis*ta", "alheimer talir jehovista", 0);
match             662 uspace/lib/posix/src/fnmatch.c 	match("al*[c-t]a*vis*ta", "alfons had jehovista", 0);
match             663 uspace/lib/posix/src/fnmatch.c 	match("[a-ce-z]", "a", 0);
match             664 uspace/lib/posix/src/fnmatch.c 	match("[a-ce-z]", "c", 0);
match             666 uspace/lib/posix/src/fnmatch.c 	match("[a-ce-z]", "e", 0);
match             667 uspace/lib/posix/src/fnmatch.c 	match("[a-ce-z]", "z", 0);
match             670 uspace/lib/posix/src/fnmatch.c 	match("[^a-ce-z]", "d", 0);
match             673 uspace/lib/posix/src/fnmatch.c 	match("helen??", "helenos", 0);
match             674 uspace/lib/posix/src/fnmatch.c 	match("****booo****", "booo", 0);
match             676 uspace/lib/posix/src/fnmatch.c 	match("hello[[:space:]]world", "hello world", 0);
match             679 uspace/lib/posix/src/fnmatch.c 	match("/hoooo*", "/hooooooo/hooo", 0);
match             682 uspace/lib/posix/src/fnmatch.c 	match("/hoooo*/*", "/hooooooo/hooo", FNM_PATHNAME);
match             683 uspace/lib/posix/src/fnmatch.c 	match("/hoooo*/hooo", "/hooooooo/hooo", FNM_PATHNAME);
match             684 uspace/lib/posix/src/fnmatch.c 	match("/hoooo*", "/hooooooo/hooo", FNM_PATHNAME | FNM_LEADING_DIR);
match             687 uspace/lib/posix/src/fnmatch.c 	match("/hooooooo", "/hooooooo/hooo", FNM_LEADING_DIR);
match             689 uspace/lib/posix/src/fnmatch.c 	match("*", "hell", 0);
match             690 uspace/lib/posix/src/fnmatch.c 	match("*?", "hell", 0);
match             691 uspace/lib/posix/src/fnmatch.c 	match("?*?", "hell", 0);
match             692 uspace/lib/posix/src/fnmatch.c 	match("?*??", "hell", 0);
match             693 uspace/lib/posix/src/fnmatch.c 	match("??*??", "hell", 0);
match             700 uspace/lib/posix/src/fnmatch.c 	match("????", "hell", 0);
match             702 uspace/lib/posix/src/fnmatch.c 	match("*", "h.ello", FNM_PERIOD);
match             703 uspace/lib/posix/src/fnmatch.c 	match("*", "h.ello", FNM_PATHNAME | FNM_PERIOD);
match             705 uspace/lib/posix/src/fnmatch.c 	match("h?ello", "h.ello", FNM_PERIOD);
match             707 uspace/lib/posix/src/fnmatch.c 	match("/home/user/.*", "/home/user/.hello", FNM_PATHNAME | FNM_PERIOD);
match             708 uspace/lib/posix/src/fnmatch.c 	match("/home/user/*", "/home/user/.hello", FNM_PERIOD);
match             712 uspace/lib/posix/src/fnmatch.c 	match("HeLlO", "hello", FNM_CASEFOLD);
match             832 uspace/srv/fs/cdfs/cdfs_ops.c 	.match = cdfs_match,
match             858 uspace/srv/fs/cdfs/cdfs_ops.c 	bool match;
match             866 uspace/srv/fs/cdfs/cdfs_ops.c 			match = true;
match             869 uspace/srv/fs/cdfs/cdfs_ops.c 					match = false;
match             870 uspace/srv/fs/cdfs/cdfs_ops.c 			if (match) {
match             875 uspace/srv/fs/cdfs/cdfs_ops.c 		if (!match)
match             995 uspace/srv/fs/exfat/exfat_ops.c 	.match = exfat_match,
match             892 uspace/srv/fs/fat/fat_ops.c 	.match = fat_match,
match             434 uspace/srv/fs/locfs/locfs_ops.c 	.match = locfs_match,
match              84 uspace/srv/fs/mfs/mfs_ops.c 	.match = mfs_match,
match             120 uspace/srv/fs/tmpfs/tmpfs_ops.c 	.match = tmpfs_match,
match             275 uspace/srv/fs/udf/udf_ops.c 	.match = udf_match,
match             585 uspace/srv/hid/input/input.c 	bool match = false;
match             603 uspace/srv/hid/input/input.c 	match = (serial_console != NULL) &&
match             606 uspace/srv/hid/input/input.c 	if (match) {
HelenOS homepage, sources at GitHub