Searched refs:cc (Results 51 - 75 of 558) sorted by relevance

1234567891011>>

/freebsd-9.3-release/usr.bin/rsh/
H A Drsh.c240 int cc, wc; local
251 if ((cc = read(0, buf, sizeof buf)) <= 0)
268 wc = write(rem, bp, cc);
275 cc -= wc;
276 if (cc == 0)
311 cc = read(rfd2, buf, sizeof buf);
312 if (cc <= 0) {
316 (void)write(STDERR_FILENO, buf, cc);
320 cc = read(rem, buf, sizeof buf);
321 if (cc <
351 int cc; local
[all...]
/freebsd-9.3-release/contrib/bmake/mk/sys/
H A DAIX.mk12 .SUFFIXES: .out .a .ln .o .c .cc .C .F .f .r .y .l .s .S .cl .p .h .sh .m4
31 CC= cc
41 COMPILE.cc= ${CXX} ${CXXFLAGS} ${CPPFLAGS} -c
42 LINK.cc= ${CXX} ${CXXFLAGS} ${CPPFLAGS} ${LDFLAGS}
94 .cc:
95 ${LINK.cc} -o ${.TARGET} ${.IMPSRC} ${LDLIBS}
96 .cc.o:
97 ${COMPILE.cc} ${.IMPSRC}
98 .cc.a:
99 ${COMPILE.cc}
[all...]
H A DDarwin.mk7 .SUFFIXES: .out .a .ln .o .s .S .c .cc .cpp .cxx .C .F .f .r .y .l .cl .p .h
30 CC?= cc -pipe
43 COMPILE.cc?= ${CXX} ${CXXFLAGS} ${CPPFLAGS} -c
44 LINK.cc?= ${CXX} ${CXXFLAGS} ${CPPFLAGS} ${LDFLAGS}
117 .cc:
118 ${LINK.cc} -o ${.TARGET} ${.IMPSRC} ${LDLIBS}
119 .cc.o:
120 ${COMPILE.cc} ${.IMPSRC}
121 .cc.a:
122 ${COMPILE.cc}
[all...]
H A DLinux.mk15 .SUFFIXES: .out .a .ln .o .c .cc .C .F .f .r .y .l .s .S .cl .p .h .sh .m4
34 CC= cc -pipe
44 COMPILE.cc= ${CXX} ${CXXFLAGS} ${CPPFLAGS} -c
45 LINK.cc= ${CXX} ${CXXFLAGS} ${CPPFLAGS} ${LDFLAGS}
97 .cc:
98 ${LINK.cc} -o ${.TARGET} ${.IMPSRC} ${LDLIBS}
99 .cc.o:
100 ${COMPILE.cc} ${.IMPSRC}
101 .cc.a:
102 ${COMPILE.cc}
[all...]
H A DOSF1.mk14 .SUFFIXES: .out .a .ln .o .c .cc .C .F .f .r .y .l .s .S .cl .p .h .sh .m4
36 CC?= cc -std
51 COMPILE.cc= ${CXX} ${CXXFLAGS} ${CPPFLAGS} -c
52 LINK.cc= ${CXX} ${CXXFLAGS} ${CPPFLAGS} ${LDFLAGS}
108 .cc:
109 ${LINK.cc} -o ${.TARGET} ${.IMPSRC} ${LDLIBS}
110 .cc.o:
111 ${COMPILE.cc} ${.IMPSRC}
112 .cc.a:
113 ${COMPILE.cc}
[all...]
H A DSunOS.mk44 .SUFFIXES: .out .a .ln .o .c .cc .C .F .f .r .y .l .s .S .cl .p .h .sh .m4
63 CC ?= cc
73 COMPILE.cc= ${CXX} ${CXXFLAGS} ${CPPFLAGS} -c
74 LINK.cc= ${CXX} ${CXXFLAGS} ${CPPFLAGS} ${LDFLAGS}
129 .cc:
130 ${LINK.cc} -o ${.TARGET} ${.IMPSRC} ${LDLIBS}
131 .cc.o:
132 ${COMPILE.cc} ${.IMPSRC}
133 .cc.a:
134 ${COMPILE.cc}
[all...]
/freebsd-9.3-release/contrib/traceroute/
H A Dfindsaddr-socket.c113 register int s, size, cc, seq, i; local
137 cc = write(s, (char *)rp, size);
138 if (cc < 0) {
143 if (cc != size) {
144 sprintf(errbuf, "short write (%d != %d)", cc, size);
152 cc = read(s, (char *)rp, size);
153 if (cc < 0) {
167 if (rp->rtm_msglen > cc) {
168 sprintf(errbuf, "bad msglen %d > %d", rp->rtm_msglen, cc);
/freebsd-9.3-release/lib/libstand/
H A Dnet.c78 ssize_t cc; local
97 cc = (*sproc)(d, sbuf, ssize);
98 if (cc != -1 && cc < ssize)
100 cc, ssize);
107 if (cc == -1) {
119 cc = (*rproc)(d, rbuf, rsize, tleft);
121 if (cc != -1 || errno != 0)
122 return (cc);
/freebsd-9.3-release/contrib/cvs/diff/
H A Dside.c86 char cc; local
107 cc = c;
108 write_output (&cc, 1);
117 cc = c;
118 write_output (&cc, 1);
133 cc = c;
134 write_output (&cc, 1);
143 cc = c;
144 write_output (&cc, 1);
156 cc
194 char cc; local
[all...]
/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/
H A Dtst.dlclose1.ksh49 cc -o main main.o
52 cc -c main.c
56 cc -z defs -G -o livelib.so livelib.o prov.o -lc
59 cc -c livelib.c
69 cc -z defs -G -o deadlib.so deadlib.o -lc
72 cc -c deadlib.c
H A Dtst.dlclose2.ksh44 cc -o main main.o
47 cc -c main.c
51 cc -z defs -G -o livelib.so livelib.o prov.o -lc
54 cc -c livelib.c
64 cc -z defs -G -o deadlib.so deadlib.o -lc
67 cc -c deadlib.c
H A Dtst.dlclose3.ksh49 cc -o main main.o
52 cc -c main.c
56 cc -z defs -G -o livelib.so livelib.o prov.o -lc
59 cc -c livelib.c
69 cc -z defs -G -o deadlib.so deadlib.o -lc
72 cc -c deadlib.c
H A Dtst.badguess.ksh64 cc -xarch=generic64 -c -o test64.o test.c
69 cc -xarch=generic -c -o test32.o test.c
H A Dtst.eliminate.ksh75 cc -c test.c
85 cc -o test test.o prov.o
H A Dtst.enabled.ksh64 cc -c test.c
74 cc -o test test.o prov.o
H A Dtst.fork.ksh74 cc -c test.c
84 cc -o test test.o prov.o
H A Dtst.header.ksh68 cc -c test.c
78 cc -o test test.o prov.o
H A Dtst.multiple.ksh68 cc -c test.c
78 cc -o test test.o prov.o
H A Dtst.nodtrace.ksh73 cc -I. -xarch=generic -c test.c
78 cc -xarch=generic -o test test.o
H A Dtst.reeval.ksh55 cc -c test.c
65 cc -o test test.o prov.o
H A Dtst.user.ksh65 cc -c test.c
75 cc -o test test.o prov.o
/freebsd-9.3-release/sys/dev/hwpmc/
H A Dhwpmc_arm.c68 pmc_save_kernel_callchain(uintptr_t *cc, int maxsamples, argument
80 *cc++ = pc;
102 *cc++ = pc;
117 pmc_save_user_callchain(uintptr_t *cc, int maxsamples, argument
129 *cc++ = pc;
148 *cc++ = pc;
/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/
H A Dtst.provregex1.ksh49 cc -o main main.o
52 cc -c main.c
/freebsd-9.3-release/contrib/libpcap/
H A Dpcap-enet.c61 register int cc, caplen; local
70 if ((cc = read(if_fd, (char *)buf.p, sizeof(buf))) < 0)
78 while (cc > 0) {
91 cc -= inc;
95 caplen = cc > snaplen ? snaplen : cc ;
96 if (bpf_filter(fcode, buf.hdr.packet, cc, caplen)) {
99 (*printit)(buf.hdr.packet, &tv, cc, caplen);
/freebsd-9.3-release/contrib/libpcap/tests/
H A Dfiltertest.c74 register int i, fd, cc; local
89 cc = read(fd, cp, (u_int)buf.st_size);
90 if (cc < 0)
92 if (cc != buf.st_size)
93 error("short read %s (%d != %d)", fname, cc, (int)buf.st_size);
97 for (i = 0; i < cc; i++) {
99 while (i < cc && cp[i] != '\n')
102 cp[cc] = '\0';

Completed in 148 milliseconds

1234567891011>>