Searched refs:hello (Results 1 - 23 of 23) sorted by relevance

/freebsd-10.2-release/bin/ed/test/
H A De1.d0 hello world
H A De2.d1 E !echo hello world-
H A De3.d1 E !echo hello world-
H A De4.d1 E !echo hello world-
/freebsd-10.2-release/usr.bin/bmake/tests/basic/t2/
H A DMakefile.test6 echo hello
/freebsd-10.2-release/contrib/netbsd-tests/share/examples/
H A Dt_asm.sh59 atf_test_case hello
61 atf_set "descr" "Builds, runs and validates the 'hello' asm example"
62 atf_set "require.files" "/usr/share/examples/asm/hello/"
66 check_implemented hello
67 copy_example hello
69 atf_check -s exit:0 -o inline:'Hello, world!\n' -e empty ./hello
73 atf_add_test_case hello
/freebsd-10.2-release/contrib/netbsd-tests/share/mk/
H A Dt_prog.sh34 cat >hello.c <<EOF
38 cat >hello.1 <<EOF
39 Manpage of hello(1).
44 PROG = hello
55 atf_check -o inline:'Hello, test!\n' ./root/the/bin/dir/hello
56 atf_check -o inline:'Manpage of hello(1).\n' \
57 cat root/usr/share/man/man1/hello.1
58 atf_check -o match:'Manpage of hello' \
59 cat root/usr/share/man/html1/hello.html
64 cat >hello
[all...]
H A Dt_own.sh54 .PHONY: hello
55 hello:
66 make MAKECONF="$(pwd)/non-existent.conf" hello
/freebsd-10.2-release/share/examples/kld/syscall/module/
H A Dsyscall.c41 hello(struct thread *td, void *arg) function
44 printf("hello kernel\n");
53 hello /* sy_call */
/freebsd-10.2-release/contrib/netbsd-tests/usr.bin/cc/
H A Dt_hello.sh28 atf_test_case hello
30 atf_set "descr" "compile and run \"hello world\""
36 atf_set "descr" "compile and run PIC \"hello world\""
42 atf_set "descr" "compile and run position independend (PIE) \"hello world\""
48 atf_set "descr" "compile and run \"hello world\" for/in netbsd32 emulation"
56 int main(void) {printf("hello world\n");exit(0);}
58 atf_check -s exit:0 -o ignore -e ignore cc -o hello test.c
59 atf_check -s exit:0 -o inline:"hello world\n" ./hello
69 int callpic(void) {printf("hello worl
[all...]
/freebsd-10.2-release/contrib/netbsd-tests/net/sys/
H A Dt_rfc6056.c53 static const char hello[] = "hello\n"; local
94 if (sendto(s, hello, sizeof(hello) - 1, 0,
111 if (send(s, hello, sizeof(hello) - 1, 0) == -1)
/freebsd-10.2-release/lib/libz/test/
H A Dexample.c29 z_const char hello[] = "hello, hello!"; variable
30 /* "hello world" would be more standard, but the repeated "hello"
34 const char dictionary[] = "hello";
93 uLong len = (uLong)strlen(hello)+1;
95 err = compress(compr, &comprLen, (const Bytef*)hello, len);
103 if (strcmp((char*)uncompr, hello)) {
123 int len = (int)strlen(hello)
[all...]
/freebsd-10.2-release/contrib/openpam/t/
H A Dt_openpam_readlinev.c118 static const char *hello[] = {
119 "hello",
124 "hello",
223 t_fprintf(tf, "hello\n");
225 ret = orlv_expect(tf, hello, 1 /*lines*/, 0 /*eof*/);
236 t_fprintf(tf, "hello world\n");
249 t_fprintf(tf, "hello world");
117 static const char *hello[] = { variable
/freebsd-10.2-release/lib/libz/
H A DMakefile69 echo hello world | ./minigzip | ./minigzip -d )
/freebsd-10.2-release/contrib/wpa/src/tls/
H A Dtlsv1_client_write.c47 u8 *hello, *end, *pos, *hs_length, *hs_start, *rhdr; local
65 hello = os_malloc(len);
66 if (hello == NULL)
68 end = hello + len;
70 rhdr = hello;
119 os_free(hello);
125 return hello;
/freebsd-10.2-release/contrib/tcpdump/
H A Dprint-olsr.c257 const struct olsr_hello *hello; member in union:__anon4703
370 ptr.hello = (struct olsr_hello *)msg_data;
371 printf("\n\t hello-time %.3lfs, MPR willingness %u",
372 ME_TO_DOUBLE(ptr.hello->htime), ptr.hello->will);
H A Dprint-decnet.c183 int src, dst, info, blksize, eco, ueco, hello, other, vers; local
201 hello = EXTRACT_LE_16BITS(cmp->cm_init.in_hello);
204 "src %sblksize %d vers %d eco %d ueco %d hello %d",
206 hello);
250 (void)printf("router-hello ");
263 hello = EXTRACT_LE_16BITS(cmp->cm_rhello.rh_hello);
266 "vers %d eco %d ueco %d src %s blksize %d pri %d hello %d",
268 blksize, priority, hello);
273 (void)printf("endnode-hello ");
289 hello
[all...]
/freebsd-10.2-release/contrib/apr-util/test/
H A Dtestbuckets.c118 bb = make_simple_brigade(ba, "hello, ", "world");
120 flatten_match(tc, "flatten brigade", bb, "hello, world");
146 bb = make_simple_brigade(ba, "hello, ", "world");
157 flatten_match(tc, "match original brigade", bb, "hello, ");
166 #define THESTR "hello"
387 "world" "hello" "brave" " ,\n");
399 "hello, brave world\n");
413 apr_file_t *f = make_test_file(tc, "testfile.txt", "hello");
442 static const char hello[] = "hello, worl variable
[all...]
/freebsd-10.2-release/contrib/atf/atf-sh/
H A Dintegration_test.sh77 >>> hello bye <<<
81 ' hello bye ' 'foo bar'
/freebsd-10.2-release/contrib/binutils/bfd/doc/
H A Dchew.c50 hello - print "hello\n" to stdout
53 print - print TOS-1 on TOS (eg: "hello\n" stdout print)
347 static void hello (void);
1396 hello () function
1398 printf ("hello\n");
1490 add_intrinsic ("hello", hello);
/freebsd-10.2-release/contrib/binutils/
H A DMakefile.in627 maybe-configure-hello \
765 all-host: maybe-all-hello
890 info-host: maybe-info-hello
996 dvi-host: maybe-dvi-hello
1102 pdf-host: maybe-pdf-hello
1208 html-host: maybe-html-hello
1314 TAGS-host: maybe-TAGS-hello
1420 install-info-host: maybe-install-info-hello
1526 install-pdf-host: maybe-install-pdf-hello
1632 install-html-host: maybe-install-html-hello
[all...]
H A DMakefile.def74 host_modules= { module= hello; };
440 dependencies = { module=all-hello; on=all-intl; };
441 dependencies = { module=all-hello; on=all-build-texinfo; };
/freebsd-10.2-release/share/examples/
H A DMakefile65 ibcs2/hello.uu \

Completed in 415 milliseconds