HomeSort by: relevance | last modified time | path
    Searched refs:templ (Results 1 - 13 of 13) sorted by relevancy

  /src/lib/librefuse/
fuse_opt.h 50 const char *templ; member in struct:fuse_opt
55 #define FUSE_OPT_KEY(templ, key) { templ, -1, key }
56 #define FUSE_OPT_END { .templ = NULL }
refuse_opt.c 183 static bool match_templ(const char *templ, const char *opt, ssize_t *sep_idx)
185 const char *sep = strpbrk(templ, "= ");
189 (size_t)(sep[0] == '=' ? sep - templ + 1 : sep - templ);
191 if (strlen(opt) >= cmp_len && strncmp(templ, opt, cmp_len) == 0) {
193 *sep_idx = (ssize_t)(sep - templ);
201 if (strcmp(templ, opt) == 0) {
215 for (; opts != NULL && opts->templ != NULL; opts++) {
216 if (match_templ(opts->templ, opt, sep_idx))
298 if (sep_idx > 0 && opt->templ[sep_idx + 1] == '%')
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_common.cc 195 bool TemplateMatch(const char *templ, const char *str) {
199 if (templ && templ[0] == '^') {
201 templ++;
204 while (templ && templ[0]) {
205 if (templ[0] == '*') {
206 templ++;
211 if (templ[0] == '$')
215 char *tpos = (char*)internal_strchr(templ, '*');
    [all...]
sanitizer_libignore.cc 33 lib->templ = internal_strdup(name_templ);
48 TemplateMatch(lib->templ, name))
63 if (!TemplateMatch(lib->templ, mod.full_name()) &&
70 SanitizerToolName, lib->templ, lib->name, mod.full_name());
79 lib->templ, mod.full_name());
94 SanitizerToolName, lib->name, lib->templ);
sanitizer_suppressions.h 25 char *templ; member in struct:__sanitizer::Suppression
sanitizer_suppressions.cc 88 if (0 == internal_strcmp(cur.type, type) && TemplateMatch(cur.templ, str)) {
135 s.templ = (char*)InternalAlloc(end2 - line + 1);
136 internal_memcpy(s.templ, line, end2 - line);
137 s.templ[end2 - line] = 0;
sanitizer_libignore.h 54 char *templ; member in struct:__sanitizer::LibIgnore::Lib
sanitizer_common.h 250 bool TemplateMatch(const char *templ, const char *str);
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
sanitizer_suppressions_test.cc 20 static bool MyMatch(const char *templ, const char *func) {
22 strcpy(tmp, templ); // NOLINT
78 EXPECT_STREQ(templs[i], s->templ);
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_suppressions.cc 108 VPrintf(2, "ThreadSanitizer: matched suppression '%s'\n", (*sp)->templ);
146 VPrintf(2, "ThreadSanitizer: matched suppression '%s'\n", s->templ);
167 matched[i]->type, matched[i]->templ);
tsan_interceptors.cc 224 libignore()->AddIgnoredLibrary(s->templ);
  /src/lib/libc/resolv/
res_debug.c 1051 u_int32_t templ; local in function:loc_ntoa
1071 GETLONG(templ, cp);
1072 latval = (templ - ((unsigned)1<<31));
1074 GETLONG(templ, cp);
1075 longval = (templ - ((unsigned)1<<31));
1077 GETLONG(templ, cp);
1078 if (templ < referencealt) { /*%< below WGS 84 spheroid */
1079 altval = referencealt - templ;
1082 altval = templ - referencealt;
  /src/sys/external/bsd/compiler_rt/dist/lib/lsan/
lsan_common.cc 521 &matched[i]->hit_count)), matched[i]->weight, matched[i]->templ);

Completed in 19 milliseconds