Searched refs:put (Results 1 - 25 of 134) sorted by relevance

123456

/freebsd-9.3-release/bin/stty/
H A Dprint.c91 #define put(n, f, d) \ macro
98 put("-icanon", ICANON, 1);
99 put("-isig", ISIG, 1);
100 put("-iexten", IEXTEN, 1);
101 put("-echo", ECHO, 1);
102 put("-echoe", ECHOE, 0);
103 put("-echok", ECHOK, 0);
104 put("-echoke", ECHOKE, 0);
105 put("-echonl", ECHONL, 0);
106 put("
[all...]
/freebsd-9.3-release/sys/dev/isci/scil/
H A Dsci_pool.h61 * operation and pool condition full before a put operation.
91 U32 put; \
102 ((this_pool).get == (this_pool).put)
106 * the pool is full the user should not perform any put operation.
109 (SCI_POOL_INCREMENT(this_pool, (this_pool).put) == (this_pool).get)
114 * get and put pointers can be written simultaneously by different
132 (this_pool).get > (this_pool).put \
133 ? ((this_pool).size - (this_pool).get + (this_pool).put) \
134 : ((this_pool).put - (this_pool).get) \
146 (this_pool).put
[all...]
/freebsd-9.3-release/crypto/openssh/regress/
H A Dsftp-batch.sh12 put ${COPY} ${COPY}.1
14 -put ${COPY} ${COPY}.2
26 put ${COPY} ${COPY}.3
29 put ${COPY}.3 ${COPY}.4
H A Dsftp.sh4 tid="basic sftp put/get"
10 put $DATA ${COPY}.2
27 cmp $DATA ${COPY}.2 || fail "corrupted copy after put"
H A Dssh-com-sftp.sh4 tid="basic sftp put/get with ssh.com server"
11 put $DATA ${COPY}.2
59 cmp $DATA ${COPY}.2 || fail "corrupted copy after put"
/freebsd-9.3-release/contrib/groff/src/roff/troff/
H A Dnode.cpp771 void put(char c);
772 void put(unsigned char c);
773 void put(int i);
774 void put(unsigned int i);
775 void put(const char *s);
817 inline void troff_output_file::put(char c) function in class:troff_output_file
822 inline void troff_output_file::put(unsigned char c) function in class:troff_output_file
827 inline void troff_output_file::put(const char *s) function in class:troff_output_file
832 inline void troff_output_file::put(int i) function in class:troff_output_file
837 inline void troff_output_file::put(unsigne function in class:troff_output_file
4021 void suppress_node::put(troff_output_file *out, const char *s) function in class:suppress_node
[all...]
/freebsd-9.3-release/contrib/libstdc++/src/
H A Dstrstream.cc86 strstreambuf::strstreambuf(char* get, streamsize n, char* put) argument
89 { _M_setup(get, put, n); }
91 strstreambuf::strstreambuf(signed char* get, streamsize n, signed char* put) argument
94 { _M_setup(reinterpret_cast<char*>(get), reinterpret_cast<char*>(put), n); }
97 unsigned char* put)
100 { _M_setup(reinterpret_cast<char*>(get), reinterpret_cast<char*>(put), n); }
323 strstreambuf::_M_setup(char* get, char* put, streamsize n) argument
329 if (put)
331 setg(get, get, put);
332 setp(put, pu
96 strstreambuf(unsigned char* get, streamsize n, unsigned char* put) argument
[all...]
/freebsd-9.3-release/contrib/gdtoa/
H A Dprintf.c0669 #define put(x) { *outbuf++ = x; if (outbuf == obe) outbuf = (*fput)(f,&rv); }
715 put(c)
796 put(c)
799 put(conv)
862 put('0') /* for 0x */
864 put(sign)
866 put('0')
867 do put(*--s)
870 put(' ')
876 put('
[all...]
/freebsd-9.3-release/contrib/nvi/ex/
H A Dex_put.c44 if (put(sp, NULL,
/freebsd-9.3-release/sys/gnu/fs/xfs/
H A Dxfs_dir2.h61 * For getdents, argument struct for put routines.
71 xfs_dir2_put_t put; /* put function ptr (i/o) */ member in struct:xfs_dir2_put_args
H A Dxfs_dir_leaf.h140 xfs_dir_put_t put; /* put function ptr (i/o) */ member in struct:xfs_dir_put_args
179 struct xfs_dirent *dbp, xfs_dir_put_t put);
206 xfs_dir_put_t put, xfs_daddr_t nextda);
H A Dxfs_dir2_block.h87 struct xfs_dirent *dbp, xfs_dir2_put_t put);
/freebsd-9.3-release/contrib/nvi/vi/
H A Dv_put.c51 if (put(sp, NULL,
84 if (put(sp, NULL,
98 * after the last one put. For example, `"4p.' would put buffer #4
102 * contents of the default buffer after each put, so after `"4p' the
108 * the buffer increment gets done regardless of the success of the put.
/freebsd-9.3-release/usr.sbin/pwd_mkdb/
H A Dpwd_mkdb.c349 if ((dp->put)(dp, &key, &data, 0) == -1)
350 error("put");
351 if ((dp->put)(sdp, &key, &data, 0) == -1)
352 error("put");
413 if ((dp->put)(dp, &key, &data, method) == -1)
414 error("put");
421 if ((dp->put)(dp, &key, &data, method) == -1)
422 error("put");
429 if ((dp->put)(dp, &key, &data, methoduid) == -1)
430 error("put");
[all...]
/freebsd-9.3-release/contrib/ntp/lib/isc/include/isc/
H A Dmem.h235 void (*put)(isc_mempool_t *mpctx, void *mem _ISC_MEM_FLARG); member in struct:isc_mempoolmethods
280 ISCMEMFUNC(put)((c), (p), (s) _ISC_MEM_FILELINE); \
295 ISCMEMPOOLFUNC(put)((c), (p) _ISC_MEM_FILELINE); \
299 #define isc_mem_put(c, p, s) ISCMEMFUNC(put)((c), (p), (s) _ISC_MEM_FILELINE)
303 #define isc_mempool_put(c, p) ISCMEMPOOLFUNC(put)((c), (p) _ISC_MEM_FILELINE)
589 *\li The pool has no un"put" allocations outstanding
707 ISCMEMFUNC(put)(isc_mem_t *, void *, size_t _ISC_MEM_FLARG);
719 ISCMEMPOOLFUNC(put)(isc_mempool_t *, void * _ISC_MEM_FLARG);
/freebsd-9.3-release/crypto/heimdal/appl/ftp/ftp/
H A Dcmdtab.c127 { "append", appendhelp, 1, 1, 1, put },
169 { "put", sendhelp, 1, 1, 1, put },
182 { "send", sendhelp, 1, 1, 1, put },
/freebsd-9.3-release/lib/libz/
H A Dinfback.c130 put = strm->next_out; \
141 strm->next_out = put; \
213 put = state->window; \
216 if (out(out_desc, put, left)) { \
259 unsigned char FAR *put; /* next output */ local
286 put = state->window;
347 zmemcpy(put, next, copy);
351 put += copy;
517 *put++ = (unsigned char)(state->length);
590 from = put
[all...]
/freebsd-9.3-release/contrib/groff/contrib/mm/
H A DNOTES15 put before any text output.
/freebsd-9.3-release/contrib/ipfilter/FreeBSD-2.2/
H A Dminstall11 cat FreeBSD-2.2/ip_{in,out}put.c.diffs FreeBSD-2.2/in_proto.c.diffs | \
H A Dunminstall11 cat FreeBSD-2.2/ip_{in,out}put.c.diffs FreeBSD-2.2/in_proto.c.diffs | \
/freebsd-9.3-release/lib/libc/db/db/
H A Ddb.c91 dbp->put = (int (*)(const struct __db *, DBT *, const DBT *, u_int))__dberr;
/freebsd-9.3-release/lib/libc/db/test/hash.tests/
H A Ddriver2.c99 if ((db->put)(db, &key, &content, R_NOOVERWRITE)) {
H A Dtcreat3.c86 * put info in structure, and structure in the item
94 if ((dbp->put)(dbp, &key, &item, R_NOOVERWRITE) != NULL) {
/freebsd-9.3-release/libexec/ypxfr/
H A Dyp_dbwrite.c95 if ((rval = (dbp->put)(dbp,key,data, allow_overwrite ? 0 :
/freebsd-9.3-release/sys/ofed/drivers/infiniband/core/
H A Daddr.c250 goto put;
256 goto put;
265 goto put;
271 put:
294 goto put;
300 goto put;
310 goto put;
316 goto put;
323 goto put;
327 put
[all...]

Completed in 236 milliseconds

123456