Searched refs:written (Results 26 - 50 of 352) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/src/macos/src/
H A Dcurl_GUSIConfig.cpp62 /**************** BEGIN GUSI CONFIGURATION **************************** * * GUSI Configuration section generated by GUSI Configurator * last modified: Mon Oct 29 15:41:51 2001 * * This section will be overwritten by the next run of Configurator. */ #define GUSI_SOURCE #include <GUSIConfig.h> #include <sys/cdefs.h> /* Declarations of Socket Factories */ __BEGIN_DECLS void GUSIwithInetSockets(); void GUSIwithLocalSockets(); void GUSIwithMTInetSockets(); void GUSIwithMTTcpSockets(); void GUSIwithMTUdpSockets(); void GUSIwithOTInetSockets(); void GUSIwithOTTcpSockets(); void GUSIwithOTUdpSockets(); void GUSIwithPPCSockets(); void GUSISetupFactories(); __END_DECLS /* Configure Socket Factories */ void GUSISetupFactories() { #ifdef GUSISetupFactories_BeginHook GUSISetupFactories_BeginHook #endif GUSIwithInetSockets(); #ifdef GUSISetupFactories_EndHook GUSISetupFactories_EndHook #endif } /* Declarations of File Devices */ __BEGIN_DECLS void GUSIwithNullSockets(); void GUSISetupDevices(); __END_DECLS /* Configure File Devices */ void GUSISetupDevices() { #ifdef GUSISetupDevices_BeginHook GUSISetupDevices_BeginHook #endif GUSIwithNullSockets(); #ifdef GUSISetupDevices_EndHook GUSISetupDevices_EndHook #endif } #ifndef __cplusplus #error GUSISetupConfig() needs to be written in C++ #endif GUSIConfiguration::FileSuffix sSuffices[] = { "", '????', '????' }; extern "C" vo (…)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/lib/
H A Dsocks_gssapi.c120 ssize_t written; local
207 code = Curl_write_plain(conn, sock, (char *)socksreq, 4, &written);
208 if((code != CURLE_OK) || (4 != written)) {
218 gss_send_token.length, &written);
220 if((code != CURLE_OK) || ((ssize_t)gss_send_token.length != written)) {
413 code = Curl_write_plain(conn, sock, (char *)socksreq, 4, &written);
414 if((code != CURLE_OK) || (4 != written)) {
423 code = Curl_write_plain(conn, sock, socksreq, 1, &written);
424 if((code != CURLE_OK) || ( 1 != written)) {
432 gss_w_token.length, &written);
[all...]
H A Dsocks_sspi.c77 ssize_t written; local
208 code = Curl_write_plain(conn, sock, (char *)socksreq, 4, &written);
209 if((code != CURLE_OK) || (4 != written)) {
220 sspi_send_token.cbBuffer, &written);
221 if((code != CURLE_OK) || (sspi_send_token.cbBuffer != (size_t)written)) {
459 code = Curl_write_plain(conn, sock, (char *)socksreq, 4, &written);
460 if((code != CURLE_OK) || (4 != written)) {
469 code = Curl_write_plain(conn, sock, (char *)socksreq, 1, &written);
470 if((code != CURLE_OK) || (1 != written)) {
478 sspi_send_token.cbBuffer, &written);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/mtd/tests/
H A Dmtd_speedtest.c110 size_t written = 0; local
114 err = mtd->write(mtd, addr, mtd->erasesize, &written, iobuf);
115 if (err || written != mtd->erasesize) {
126 size_t written = 0; local
132 err = mtd->write(mtd, addr, pgsize, &written, buf);
133 if (err || written != pgsize) {
149 size_t written = 0, sz = pgsize * 2; local
155 err = mtd->write(mtd, addr, sz, &written, buf);
156 if (err || written != sz) {
167 err = mtd->write(mtd, addr, pgsize, &written, bu
[all...]
H A Dmtd_pagetest.c98 size_t written = 0; local
103 err = mtd->write(mtd, addr, mtd->erasesize, &written, writebuf);
104 if (err || written != mtd->erasesize)
312 size_t read = 0, written = 0; local
338 err = mtd->write(mtd, addr0, pgsize, &written, writebuf);
339 if (err || written != pgsize) {
371 err = mtd->write(mtd, addr0, pgsize, &written, writebuf);
372 if (err || written != pgsize) {
408 size_t read = 0, written = 0; local
428 err = mtd->write(mtd, addr0, pgsize, &written, writebu
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dtgrid.tex53 Yet to be written
56 Yet to be written
59 Yet to be written
H A Ddatostrm.tex4 portable way. Data can be written in either big-endian or little-endian
56 If {\it be\_order} is true, all data will be written in big-endian
58 always use big-endian order), otherwise data will be written in
123 In ANSI build of wxWidgets, the string is written to the stream in exactly
127 written by Unicode application, as long as they agree on encoding) and this
128 representation is written to the stream. UTF-8 is used by default.
H A Doutptstr.tex53 Returns the number of bytes written during the last
95 that not all data can always be written so you must check the number of bytes
96 really written to the stream using \helpref{LastWrite()}{wxoutputstreamlastwrite}
99 bytes have been written.
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/s390/char/
H A Dmonwriter.c219 size_t len, written; local
224 for (written = 0; written < count; ) {
226 len = min(count - written, monpriv->hdr_to_read);
229 if (copy_from_user(to, data + written, len)) {
234 written += len;
245 len = min(count - written, monpriv->data_to_read);
248 if (copy_from_user(to, data + written, len)) {
253 written += len;
263 return written;
[all...]
H A Dsclp_con.c141 int written; local
166 written = sclp_write(sclp_conbuf, (const unsigned char *)
168 if (written == count)
171 * Not all characters could be written to the current
178 message += written;
179 count -= written;
313 * written at start of each line by VM/CP
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/char/
H A Dnwflash.c149 int written; local
181 written = 0;
225 count - written);
230 rc = write_block(p, buf, count - written);
255 written += rc;
259 printk(KERN_DEBUG "flash_write: written 0x%X bytes OK.\n", written);
269 return written;
438 * write_block will limit number of bytes written to the space in this block
H A Dlp.c301 ssize_t written; local
339 written = parport_write (port, kbuf, copy_size);
340 if (written > 0) {
341 copy_size -= written;
342 count -= written;
343 buf += written;
344 retv += written;
770 ssize_t written; local
789 written = parport_write (port, s, canwrite);
791 if (written <
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/libxml2-2.7.2/source/
H A Dencoding.c246 * Returns the number of bytes written if success, or -1 otherwise
295 * Returns the number of bytes written, or -1 if lack of space.
334 * Returns the number of bytes written if success, -2 if the transcoding fails,
427 * Returns the number of bytes written, or -1 if lack of space, or -2
514 * Returns the number of bytes written, or -1 if lack of space, or -2
623 * Returns the number of bytes written, or -1 if lack of space, or -2
665 * Returns the number of bytes written, or -1 if lack of space, or -2
756 * Returns the number of byte written, or -1 by lack of space, or -2
1748 * Returns the number of byte written if success, or
1757 int written; local
1846 int written; local
1946 int written; local
2184 int toconv = in->end - in->cur, written = 32000; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Drtmppkt.c181 int written = 0; local
185 written++;
192 written += channel_id + 1;
209 written += 3;
214 written += 3;
218 written++;
223 written += 4;
242 p->read = written;
256 p->read = prev->read + written;
312 int written local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/libxml/
H A Dencoding.c246 * Returns the number of bytes written if success, or -1 otherwise
295 * Returns the number of bytes written, or -1 if lack of space.
334 * Returns the number of bytes written if success, -2 if the transcoding fails,
427 * Returns the number of bytes written, or -1 if lack of space, or -2
514 * Returns the number of bytes written, or -1 if lack of space, or -2
623 * Returns the number of bytes written, or -1 if lack of space, or -2
665 * Returns the number of bytes written, or -1 if lack of space, or -2
756 * Returns the number of byte written, or -1 by lack of space, or -2
1748 * Returns the number of byte written if success, or
1757 int written; local
1844 int written; local
1944 int written; local
2180 int toconv = in->end - in->cur, written = 32000; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libxml2-2.7.2/
H A Dencoding.c246 * Returns the number of bytes written if success, or -1 otherwise
295 * Returns the number of bytes written, or -1 if lack of space.
334 * Returns the number of bytes written if success, -2 if the transcoding fails,
427 * Returns the number of bytes written, or -1 if lack of space, or -2
514 * Returns the number of bytes written, or -1 if lack of space, or -2
623 * Returns the number of bytes written, or -1 if lack of space, or -2
665 * Returns the number of bytes written, or -1 if lack of space, or -2
756 * Returns the number of byte written, or -1 by lack of space, or -2
1748 * Returns the number of byte written if success, or
1757 int written; local
1846 int written; local
1946 int written; local
2184 int toconv = in->end - in->cur, written = 32000; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/libxml/
H A Dencoding.c246 * Returns the number of bytes written if success, or -1 otherwise
295 * Returns the number of bytes written, or -1 if lack of space.
334 * Returns the number of bytes written if success, -2 if the transcoding fails,
427 * Returns the number of bytes written, or -1 if lack of space, or -2
514 * Returns the number of bytes written, or -1 if lack of space, or -2
623 * Returns the number of bytes written, or -1 if lack of space, or -2
665 * Returns the number of bytes written, or -1 if lack of space, or -2
756 * Returns the number of byte written, or -1 by lack of space, or -2
1748 * Returns the number of byte written if success, or
1757 int written; local
1844 int written; local
1944 int written; local
2180 int toconv = in->end - in->cur, written = 32000; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/mm/
H A Dfilemap.c343 * written partially (e.g. -ENOSPC), so we wait for it.
365 * Note that `lend' is inclusive (describes the last byte to be written) so
1217 desc->written += size;
1342 desc.written = 0;
1349 retval += desc.written;
2071 * If we have written data it becomes a short write. If we have
2136 ssize_t written; local
2146 written = filemap_write_and_wait_range(mapping, pos, pos + write_len - 1);
2147 if (written)
2157 written
2236 ssize_t written = 0; local
2320 generic_file_buffered_write(struct kiocb *iocb, const struct iovec *iov, unsigned long nr_segs, loff_t pos, loff_t *ppos, size_t count, ssize_t written) argument
2368 ssize_t written; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/ubifs/
H A Dtnc_commit.c32 * @lnum: LEB number where new index node will be written
33 * @offs: offset where new index node will be written
106 * This function returns the number of index nodes written into the gap.
111 int len, gap_remains, gap_pos, written, pad_len; local
121 written = 0;
139 written += 1;
150 dbg_gc("LEB %d:%d to %d len %d nodes written %d wasted bytes %d",
151 lnum, gap_start, gap_end, gap_end - gap_start, written, pad_len);
154 return written;
223 * This function returns the number of index nodes written int
230 int lnum, dirt = 0, gap_start, gap_end, err, written, tot_written; local
361 int err, leb_needed_cnt, written, *p; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/libcryptoxx-5.6.0/
H A Dwinpipes.cpp1 // winpipes.cpp - written and placed in the public domain by Wei Dai
166 DWORD written = 0; local
169 if (WriteFile(h, buf, UnsignedMin((DWORD)128*1024, bufLen), &written, &m_overlapped))
172 m_lastResult = written;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/isdn/hardware/eicon/
H A Distream.c64 does return amount of data written to stream.
65 'final' does indicate that pice of data to be written is
67 return 0 if zero lengh packet was written
78 int written = 0, to_write = -1; local
93 break; /* only part of message was written */
106 written += to_write;
134 return (written);
139 Does return amount of data written to buffer
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dpcxenc.c55 * @return number of bytes written to dst or -1 on error
106 int bpp, nplanes, i, y, line_bytes, written; local
169 if ((written = pcx_rle_encode(buf, buf_end - buf,
174 buf += written;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dpcxenc.c61 * @return number of bytes written to dst or -1 on error
110 int bpp, nplanes, i, y, line_bytes, written, ret, max_pkt_size, sw, sh; local
186 if ((written = pcx_rle_encode(buf, buf_end - buf,
191 buf += written;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/docs/examples/
H A Dexternalsocket.c56 int written = fwrite(ptr, size, nmemb, (FILE *)stream); local
57 return written;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/cris/arch-v10/drivers/
H A Deeprom.c503 int i, written, restart=1; local
517 written = 0;
521 while( (written < count) && (p < eeprom.size))
625 i2c_outbyte(buf[written]);
633 written++;
635 } while( written < count && ( p % eeprom.sequential_write_pagesize ));
644 if (written == 0 && p >= eeprom.size){
648 return written;

Completed in 403 milliseconds

1234567891011>>