Home
last modified time | relevance | path

Searched refs:seen (Results 1 – 25 of 262) sorted by relevance

1234567891011

/freebsd/contrib/pam-krb5/tests/fakepam/
H A Dscript.c64 like(const char *wanted, const char *seen, const char *format, ...) in like() argument
71 if (seen == NULL) { in like()
85 status = regexec(&regex, seen, 0, NULL, 0); in like()
93 printf("# wanted: /%s/\n# seen: %s\n", wanted, seen); in like()
106 like(const char *wanted, const char *seen, const char *format UNUSED, ...) in like() argument
109 diag(" seen %s", seen); in like()
124 compare_string(char *wanted, char *seen, const char *format, ...) in compare_string() argument
139 like(regex, seen, "%s", comment); in compare_string()
142 is_string(wanted, seen, "%s", comment); in compare_string()
212 check_output(const struct output *wanted, const struct output *seen) in check_output() argument
[all …]
/freebsd/contrib/pam-krb5/tests/pam-util/
H A Dlogging-t.c49 seen = pam_output(); \
50 is_int((p), seen->lines[0].priority, "priority %d", (p)); \
51 is_string("foo", seen->lines[0].line, "line %s", (n)); \
52 pam_output_free(seen); \
64 seen = pam_output(); \
65 is_int((p), seen->lines[0].priority, "priority %s", (n)); \
66 is_string(expected, seen->lines[0].line, "line %s", (n)); \
67 pam_output_free(seen); \
81 seen = pam_output(); \
82 is_int((p), seen->lines[0].priority, "priority %s", (n)); \
[all …]
H A Doptions-t.c101 seen = pam_output(); \
102 if (seen == NULL) \
105 is_int((p), seen->lines[0].priority, "...priority for %s", (a)); \
106 is_string((e), seen->lines[0].line, "...error for %s", (a)); \
108 pam_output_free(seen); \
145 struct output *seen; in main() local
423 seen = pam_output(); in main()
425 seen->lines[0].line, "...and correct error reported"); in main()
426 is_int(LOG_ERR, seen->lines[0].priority, "...with correct priority"); in main()
427 pam_output_free(seen); in main()
[all …]
/freebsd/sys/compat/linux/
H A Dlinux_util.h133 static int seen = 0; \
135 if (seen == 0 && linux_debug >= 2) { \
139 seen = 1; \
145 static int seen = 0; \
147 if (seen == 0) { \
151 seen = 1; \
157 static int seen = 0; \
159 if (seen == 0) { \
163 seen = 1; \
169 static int seen
[all...]
/freebsd/sys/kern/
H A Dsubr_acl_nfs4.c720 mode_t old_mode = *_mode, mode = 0, seen = 0; in acl_nfs4_sync_mode_from_acl() local
744 ((seen & S_IRUSR) == 0)) { in acl_nfs4_sync_mode_from_acl()
745 seen |= S_IRUSR; in acl_nfs4_sync_mode_from_acl()
750 ((seen & S_IWUSR) == 0)) { in acl_nfs4_sync_mode_from_acl()
751 seen |= S_IWUSR; in acl_nfs4_sync_mode_from_acl()
756 ((seen & S_IXUSR) == 0)) { in acl_nfs4_sync_mode_from_acl()
757 seen |= S_IXUSR; in acl_nfs4_sync_mode_from_acl()
763 ((seen & S_IRGRP) == 0)) { in acl_nfs4_sync_mode_from_acl()
764 seen |= S_IRGRP; in acl_nfs4_sync_mode_from_acl()
769 ((seen & S_IWGRP) == 0)) { in acl_nfs4_sync_mode_from_acl()
[all …]
/freebsd/contrib/lib9p/pytest/
H A Dpfod.py135 seen = set()
142 or name in seen):
144 seen.add(name)
157 seen = set()
165 if name in seen:
167 seen.add(name)
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/privs/
H A Dtst.providers.ksh52 int seen[string];
57 /err == 0 && progenyof(\$pid) && !seen["provider"]/ \
68 seen["provider"]++; \
80 /err == 0 && !seen["provider"]/ \
89 printf("saw %d probes from provider\n", seen["provider"]); \
/freebsd/crypto/krb5/src/util/
H A Ddepfix.pl178 my(%seen);
179 undef %seen;
181 next if defined($seen{$w});
182 $seen{$w} = 1;
/freebsd/contrib/googletest/googlemock/src/
H A Dgmock-matchers.cc134 ::std::vector<char> seen; in Compute()
153 seen.assign(graph_->RhsSize(), 0); in Compute()
154 TryAugment(ilhs, &seen); in Compute()
184 bool TryAugment(size_t ilhs, ::std::vector<char>* seen) { in TryAugment() argument
186 if ((*seen)[irhs]) continue; in TryAugment()
189 (*seen)[irhs] = 1; in TryAugment()
200 if (right_[irhs] == kUnused || TryAugment(right_[irhs], seen)) { in TryAugment()
/freebsd/tools/test/stress2/misc/
H A Dall.exclude29 graid1_3.sh Hang seen 20250915
33 lockf5.sh Spinning threads seen 20160718
39 mlockall2.sh Unrecoverable OOM killing seen 20190203
43 newfs4.sh watchdog fired. newbuf (still seen 20240729) 20190225
48 nullfs28.sh Hang in "mount drain" seen 20220111
50 overcommit2.sh CAM stuck in vmwait seen 20200112
94 vunref.sh No problems ever seen
95 vunref2.sh No problems ever seen
103 tmpfs18.sh mntref hang seen 20191019
/freebsd/crypto/openssl/test/
H A Dcert_comp_test.c110 int *seen = (int *)SSL_get_app_data(s); in cert_comp_info_cb() local
114 if (!strcmp(SSL_state_string(s), "TRCCC") && seen != NULL) in cert_comp_info_cb()
115 *seen = 1; in cert_comp_info_cb()
118 if (!strcmp(SSL_state_string(s), "TRSCC") && seen != NULL) in cert_comp_info_cb()
119 *seen = 1; in cert_comp_info_cb()
/freebsd/sys/contrib/openzfs/module/os/freebsd/zfs/
H A Dzfs_acl.c890 mode_t seen = 0; in zfs_mode_compute() local
916 (!(seen & S_IRUSR))) { in zfs_mode_compute()
917 seen |= S_IRUSR; in zfs_mode_compute()
923 (!(seen & S_IWUSR))) { in zfs_mode_compute()
924 seen |= S_IWUSR; in zfs_mode_compute()
930 (!(seen & S_IXUSR))) { in zfs_mode_compute()
931 seen |= S_IXUSR; in zfs_mode_compute()
939 (!(seen & S_IRGRP))) { in zfs_mode_compute()
940 seen |= S_IRGRP; in zfs_mode_compute()
946 (!(seen & S_IWGRP))) { in zfs_mode_compute()
[all …]
/freebsd/sys/contrib/openzfs/module/os/linux/zfs/
H A Dzfs_acl.c908 mode_t seen = 0; in zfs_mode_compute() local
934 (!(seen & S_IRUSR))) { in zfs_mode_compute()
935 seen |= S_IRUSR; in zfs_mode_compute()
941 (!(seen & S_IWUSR))) { in zfs_mode_compute()
942 seen |= S_IWUSR; in zfs_mode_compute()
948 (!(seen & S_IXUSR))) { in zfs_mode_compute()
949 seen |= S_IXUSR; in zfs_mode_compute()
957 (!(seen & S_IRGRP))) { in zfs_mode_compute()
958 seen |= S_IRGRP; in zfs_mode_compute()
964 (!(seen & S_IWGRP))) { in zfs_mode_compute()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDIE.cpp424 llvm::SmallSet<lldb::user_id_t, 4> &seen, in GetDeclContextImpl() argument
427 while (die && seen.insert(die.GetID()).second) { in GetDeclContextImpl()
457 llvm::SmallSet<lldb::user_id_t, 4> seen; in GetDeclContext() local
459 GetDeclContextImpl(*this, derive_template_names, seen, context); in GetDeclContext()
465 llvm::SmallSet<lldb::user_id_t, 4> &seen, in GetTypeLookupContextImpl() argument
468 while (die && seen.insert(die.GetID()).second) { in GetTypeLookupContextImpl()
504 llvm::SmallSet<lldb::user_id_t, 4> seen; in GetTypeLookupContext() local
506 GetTypeLookupContextImpl(*this, derive_template_names, seen, context); in GetTypeLookupContext()
H A DDWARFDebugInfoEntry.cpp288 llvm::SmallSet<DWARFDebugInfoEntry const *, 3> &seen, in GetAttributes() argument
291 assert(seen.size() >= 1 && in GetAttributes()
310 const bool is_first_die = seen.size() == 1; in GetAttributes()
338 if (seen.insert(spec_die.GetDIE()).second) in GetAttributes()
369 llvm::SmallSet<DWARFDebugInfoEntry const *, 3> seen; in GetAttributes() local
370 seen.insert(this); in GetAttributes()
373 if (!::GetAttributes(worklist, seen, attributes)) { in GetAttributes()
/freebsd/share/mk/
H A Dmeta2deps.sh375 seen="$rdir,$dir"
377 *) seen=$dir;;
408 seenit="$seenit,$seen"
428 seenit="$seenit,$seen"
431 seenit="$seenit,$seen"
/freebsd/contrib/bmake/mk/
H A Dmeta2deps.sh373 seen="$rdir,$dir"
375 *) seen=$dir;;
406 seenit="$seenit,$seen"
426 seenit="$seenit,$seen"
429 seenit="$seenit,$seen"
/freebsd/sys/dev/random/fenestrasX/
H A Dfx_pool.c389 unsigned rem, seen; in fxrng_event_processor() local
392 seen = fxrng_reseed_seen[src]; in fxrng_event_processor()
393 if (seen == FXENT_HI_SRC_POOL0_BYTES) in fxrng_event_processor()
396 rem = FXENT_HI_SRC_POOL0_BYTES - seen; in fxrng_event_processor()
399 fxrng_reseed_seen[src] = seen + rem; in fxrng_event_processor()
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/
H A Dtst.reeval.ksh81 seen = 1;
87 exit(seen ? 0 : 2);
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DFloat2Int.cpp116 void Float2IntPass::seen(Instruction *I, ConstantRange R) { in seen() function in Float2IntPass
162 seen(I, badRange()); in walkBackwards()
172 seen(I, validateRange(Input.castOp(CastOp, MaxIntegerBW+1))); in walkBackwards()
183 seen(I, unknownRange()); in walkBackwards()
195 seen(I, badRange()); in walkBackwards()
303 seen(I, *Range); in walkForwards()
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/nfs/
H A Dtst.call3.d73 /seen[probename] == 0/
76 seen[probename] = 1;
/freebsd/sys/contrib/openzfs/cmd/zstream/
H A Dzstream_drop_record.c117 boolean_t seen = B_FALSE; in zstream_do_drop_record() local
135 seen = B_TRUE; in zstream_do_drop_record()
161 VERIFY3B(seen, ==, B_TRUE); in zstream_do_drop_record()
H A Dzstream_recompress.c107 boolean_t seen = B_FALSE; in zstream_do_recompress() local
126 seen = B_TRUE; in zstream_do_recompress()
152 VERIFY3B(seen, ==, B_TRUE); in zstream_do_recompress()
/freebsd/contrib/bmake/unit-tests/
H A Ddeptgt-posix.mk60 check-not-seen-sys-mk: .USE
121 no-builtins: .PHONY set-up-sysdir check-is-posix check-not-seen-sys-mk run
/freebsd/sbin/routed/rtquery/
H A Drtquery.c352 struct seen { in query_loop() struct
353 struct seen *next; in query_loop() argument
355 } *seen, *sp; in query_loop() local
401 seen = NULL; in query_loop()
429 for (sp = seen; sp != NULL; sp = sp->next) { in query_loop()
441 sp->next = seen; in query_loop()
442 seen = sp; in query_loop()

1234567891011