Home
last modified time | relevance | path

Searched refs:type_string (Results 1 – 7 of 7) sorted by relevance

/openbsd-src/usr.bin/hexdump/
H A Dodsyntax.c201 posixtypes(char *type_string) in posixtypes() argument
205 while (*type_string) { in posixtypes()
206 switch (*type_string) { in posixtypes()
208 type_string++; in posixtypes()
212 type_string++; in posixtypes()
216 type_string++; in posixtypes()
217 if (*type_string == 'F' || in posixtypes()
218 *type_string == '4') { in posixtypes()
219 type_string++; in posixtypes()
221 } else if (*type_string == 'L' || in posixtypes()
[all …]
/openbsd-src/usr.bin/file/
H A Dmagic-load.c273 magic_warn(ml, "bad format for %s: %%%.*s", ml->type_string, in magic_set_result()
642 ml->type_string = xstrdup(s); in magic_parse_type()
647 ml->type_string = xstrdup(s); in magic_parse_type()
654 ml->type_string = xstrdup(s + 1); in magic_parse_type()
656 ml->type_string = xstrdup(s); in magic_parse_type()
664 ml->type_string = xstrdup(s + 1); in magic_parse_type()
666 ml->type_string = xstrdup(s); in magic_parse_type()
674 ml->type_string = xstrdup(s + 1); in magic_parse_type()
676 ml->type_string = xstrdup(s); in magic_parse_type()
683 ml->type_string = xstrdup(s + 1); in magic_parse_type()
[all …]
H A Dmagic-dump.c35 printf(" %s %s\n", ml->type_string, ml->name); in magic_dump_line()
37 printf(" %s/%s%s%s%s [%u]%s\n", ml->type_string, in magic_dump_line()
H A Dmagic-test.c653 cp = &ml->type_string[(sizeof "string") - 1]; in magic_test_type_string()
720 cp = &ml->type_string[(sizeof "pstring") - 1]; in magic_test_type_pstring()
1000 cp = &ml->type_string[(sizeof "regex") - 1]; in magic_test_type_regex()
1049 cp = &ml->type_string[(sizeof "search") - 1]; in magic_test_type_search()
1345 magic_warn(ml, "test %s/%c failed", ml->type_string, in magic_test_line()
1350 magic_warn(ml, "test %s/%c not implemented", ml->type_string, in magic_test_line()
1360 "'%s'", ml->type_string, ml->test_operator, offset, in magic_test_line()
H A Dmagic.h127 const char *type_string; member
/openbsd-src/gnu/usr.bin/gcc/gcc/java/
H A Dmangle.c553 const char *type_string = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type))); local
558 for (ptr = (char *)type_string, qualifications = 0; *ptr; ptr++)
562 for (ptr = (char *)type_string, i = 0; i < qualifications; ptr++)
573 identifier = get_identifier (type_string);
578 type_string = ptr+1;
583 elt = build_tree_list (type, get_identifier (type_string));
/openbsd-src/regress/lib/libssl/interop/botan/
H A Dclient.cpp102 errx(1, "alert: %s", alert.type_string().c_str()); in tls_alert()