Searched refs:ok (Results 1 - 25 of 403) sorted by relevance

1234567891011>>

/freebsd-11-stable/tests/sys/mac/portacl/
H A Droot_test.sh15 bind_test ok ok uid root tcp 77
16 bind_test ok ok uid root tcp 7777
17 bind_test ok ok uid root udp 77
18 bind_test ok ok uid root udp 7777
20 bind_test ok ok gi
[all...]
H A Dnobody_test.sh19 bind_test ok ok uid nobody tcp 7777
21 bind_test ok ok uid nobody udp 7777
24 bind_test ok ok gid nobody tcp 7777
26 bind_test ok ok gid nobody udp 7777
31 bind_test ok ok ui
[all...]
/freebsd-11-stable/crypto/openssl/crypto/ui/
H A Dui_util.c75 int ok = 0; local
83 ok = UI_add_input_string(ui, prompt, 0, buf, 0, size - 1);
84 if (ok >= 0 && verify)
85 ok = UI_add_verify_string(ui, prompt, 0, buff, 0, size - 1, buf);
86 if (ok >= 0)
87 ok = UI_process(ui);
90 if (ok > 0)
91 ok = 0;
92 return (ok);
/freebsd-11-stable/stand/libsa/
H A Duuid_from_string.c52 fromhex(const char *s, int len, int *ok) argument
57 if (!*ok)
63 *ok = 0;
90 int ok = 1; local
106 u->time_low = fromhex(s , 8, &ok);
107 u->time_mid = fromhex(s + 9, 4, &ok);
108 u->time_hi_and_version = fromhex(s + 14, 4, &ok);
110 u->clock_seq_hi_and_reserved = fromhex(s + 19, 2, &ok);
111 u->clock_seq_low = fromhex(s + 21, 2, &ok);
112 u->node[0] = fromhex(s + 24, 2, &ok);
[all...]
/freebsd-11-stable/crypto/openssl/crypto/des/
H A Dread2pwd.c119 int ok; local
122 if ((ok = UI_UTIL_read_pw(buf, buff, BUFSIZ, prompt, verify)) == 0)
126 return (ok);
132 int ok; local
135 if ((ok = UI_UTIL_read_pw(buf, buff, BUFSIZ, prompt, verify)) == 0)
139 return (ok);
/freebsd-11-stable/usr.bin/bmake/tests/syntax/enl/
H A DMakefile.test13 @echo ok
17 # This should print ok because the second assignment to foo is actually
19 FOO=ok
22 FOO=not ok
/freebsd-11-stable/sys/dev/drm2/i915/
H A Ddvo_ns2501.c315 bool ok; local
331 ok = true;
346 ok &= ns2501_writeb(dvo, 0x11, 0xc8); // 0xc7 also works.
347 ok &= ns2501_writeb(dvo, 0x1b, 0x19);
348 ok &= ns2501_writeb(dvo, 0x1c, 0x62); // VBIOS left 0x64 here, but 0x62 works nicer
349 ok &= ns2501_writeb(dvo, 0x1d, 0x02);
351 ok &= ns2501_writeb(dvo, 0x34, 0x03);
352 ok &= ns2501_writeb(dvo, 0x35, 0xff);
354 ok &= ns2501_writeb(dvo, 0x80, 0x27);
355 ok
525 bool ok; local
[all...]
/freebsd-11-stable/usr.bin/fortune/tools/
H A DDo_spell9 sort $F $1.sp.ok | uniq -u | column
/freebsd-11-stable/libexec/rpc.rstatd/
H A Drstatd.c59 int ok; local
96 ok = svc_reg(transp, RSTATPROG, RSTATVERS_TIME,
99 ok = svc_create(rstat_service,
101 if (!ok) {
106 ok = svc_reg(transp, RSTATPROG, RSTATVERS_SWTCH,
109 ok = svc_create(rstat_service,
111 if (!ok) {
116 ok = svc_reg(transp, RSTATPROG, RSTATVERS_ORIG,
119 ok = svc_create(rstat_service,
121 if (!ok) {
[all...]
/freebsd-11-stable/libexec/rpc.rusersd/
H A Drusersd.c58 int ok; local
89 ok = svc_reg(transp, RUSERSPROG, RUSERSVERS_IDLE,
92 ok = svc_create(rusers_service,
94 if (!ok) {
99 ok = svc_reg(transp, RUSERSPROG, RUSERSVERS_ORIG,
102 ok = svc_create(rusers_service,
104 if (!ok) {
/freebsd-11-stable/tests/sys/file/
H A Dclosefrom_test.c58 ok(const char *descr) function
61 printf("ok %d - %s\n", test, descr);
70 printf("not ok %d - %s", test, descr);
155 ok("open");
161 ok("highest_fd");
168 ok("closefrom");
176 ok("open 16");
183 ok("closefrom");
188 ok("close 2");
195 ok("clos
[all...]
/freebsd-11-stable/contrib/dialog/samples/
H A Dyesno-both8 --ok-label "Next" \
H A Dyesno-extra8 --ok-label "Next" \
H A Dradiolist28 $DIALOG --ok-label Okay \
H A Dradiolist38 $DIALOG --item-help --ok-label Okay \
/freebsd-11-stable/bin/pax/tests/
H A Dlegacy_test.pl52 system "pax -wf ustar.ok $work94";
53 ok($? == 0, "Wrote 'ustar.ok' containing files with lengths @l");
59 system "pax -rf ustar.ok";
60 ok($? == 0, "Restored 'ustar.ok' containing files with lengths @l");
63 ok($? == 0, "Restored files are identical");
73 ok($?, "Failed to write 'ustar.fail1' containing files with lengths @l");
81 ok($?, "Failed to write 'ustar.fail2' with a 100 char filename");
88 ok(
[all...]
/freebsd-11-stable/contrib/telnet/libtelnet/
H A Dread_password.c79 int ok = 0; local
105 while (!ok) {
127 ok = 1;
131 if (!ok)
137 ok = 0;
145 return !ok; /* return nonzero if not okay */
/freebsd-11-stable/contrib/netbsd-tests/net/net/
H A Dt_tcp.c77 int ok, fl; local
94 ok = bind(srvr, (const struct sockaddr *)&sin, (socklen_t)sizeof(sin));
95 if (ok == -1)
99 ok = getsockname(srvr, (struct sockaddr *)&ba, &addrlen);
100 if (ok == -1)
103 ok = listen(srvr, SOMAXCONN);
104 if (ok == -1)
112 ok = connect(clnt, (struct sockaddr *) &ba, addrlen);
113 if (ok != -1 || errno != EINPROGRESS)
116 ok
[all...]
/freebsd-11-stable/lib/libc/i386/sys/
H A Dbrk.S44 jmp ok
55 jbe ok
58 ok: label
71 jbe ok
74 ok: label
/freebsd-11-stable/crypto/heimdal/lib/sl/
H A Dtest_sl.c36 int ok; member in struct:__anon6069
77 if (!lines[i].ok)
80 } else if (!lines[i].ok)
/freebsd-11-stable/contrib/bmake/unit-tests/
H A Dcond2.mk5 # this should be ok
10 # expect: Bad conditional expression ` == "empty"' in == "empty"?oops:ok
11 X:= ${${TEST_NOT_SET} == "empty":?oops:ok}
/freebsd-11-stable/crypto/openssl/util/
H A Dselftest.pl18 my $ok=0;
154 $ok=1;
157 if ($ok and open(IN,"<maketest.log")) {
159 $ok=2 if /^platform: $platform/;
164 if ($ok != 2) {
202 die if $ok != 2;
/freebsd-11-stable/contrib/apr-util/buckets/
H A Dapr_buckets_mmap.c25 apr_status_t ok; local
33 ok = apr_mmap_offset(&addr, m->mmap, b->start);
34 if (ok != APR_SUCCESS) {
35 return ok;
108 apr_status_t ok; local
121 ok = apr_mmap_dup(&new_mm, mm, p);
122 if (ok != APR_SUCCESS) {
123 return ok;
/freebsd-11-stable/contrib/apr-util/include/
H A Dapr_optional_hooks.h87 * @param ok Success value
90 #define APR_IMPLEMENT_OPTIONAL_HOOK_RUN_ALL(ns,link,ret,name,args_decl,args_use,ok,decline) \
99 return ok; \
106 if(rv != ok && rv != decline) \
109 return ok; \
/freebsd-11-stable/usr.sbin/bsdinstall/scripts/
H A Dtime41 --ok-label 'Set Date' \
53 --ok-label 'Set Time' \

Completed in 406 milliseconds

1234567891011>>