Searched refs:written (Results 126 - 150 of 352) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/tests/server/
H A Dsws.c572 then be written as "example.com.123". */
807 size_t written; local
829 written = fwrite(&reqbuf[totalsize-writeleft],
833 if(written > 0)
834 writeleft -= written;
991 ssize_t written; local
1015 written = swrite(sock, STREAMTHIS, count);
1018 if(written != (ssize_t)count) {
1164 written = swrite(sock, buffer, num);
1165 if (written <
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/libxml/
H A DxmlIO.c758 * Returns the number of bytes written
778 * Returns the number of bytes written
953 * Returns the number of bytes written or < 0 in case of failure
974 * Returns the number of bytes written
1048 * Returns the number of bytes written
1200 * Returns the number of bytes written
1220 * Returns the number of bytes written
1747 * Returns the number of bytes written
1765 * Returns number of bytes written.
2026 * Returns the number of bytes written
2324 int written; local
3118 int written = 0; /* number of char written to I/O so far */ local
3282 int written = 0; /* number of char written to I/O so far */ local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/libxml/
H A DxmlIO.c758 * Returns the number of bytes written
778 * Returns the number of bytes written
953 * Returns the number of bytes written or < 0 in case of failure
974 * Returns the number of bytes written
1048 * Returns the number of bytes written
1200 * Returns the number of bytes written
1220 * Returns the number of bytes written
1747 * Returns the number of bytes written
1765 * Returns number of bytes written.
2026 * Returns the number of bytes written
2324 int written; local
3118 int written = 0; /* number of char written to I/O so far */ local
3282 int written = 0; /* number of char written to I/O so far */ local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/mtd/onenand/
H A Donenand_base.c1698 * @param retlen pointer to variable to store the number of written bytes
1708 int written = 0; local
1740 while (written < len) {
1741 int thislen = min_t(int, mtd->writesize - column, len - written);
1773 written += thislen;
1775 if (written == len)
1783 *retlen = written;
1840 int written = 0, column, thislen = 0, subpage = 0; local
1886 if (written < len) {
1889 thislen = min_t(int, mtd->writesize - column, len - written);
2025 int written = 0, oobcmd; local
2884 int written = 0; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/mtd/ubi/
H A Dio.c85 * When the VID header is being written out, it shifts the VID header pointer
211 * of physical eraseblock @pnum. If all the data were successfully written,
216 * Note, in case of an error, it is possible that something was still written
223 size_t written; local
270 err = ubi->mtd->write(ubi->mtd, addr, len, &written, buf);
272 ubi_err("error %d while writing %d bytes to PEB %d:%d, written "
273 "%zd bytes", err, len, pnum, offset, written);
277 ubi_assert(written == len);
498 size_t written; local
504 err = ubi->mtd->write(ubi->mtd, addr, 4, &written, (voi
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/ntfs-3g-2009.3.8/libntfs-3g/
H A Drunlist.c1137 * On success, return the number of successfully written bytes. If this number
1140 * is partial. 0 means nothing was written (also return 0 when @count is 0).
1142 * On error and nothing has been written, return -1 with errno set
1149 s64 written, to_write, ofs, total = 0; local
1188 written = ntfs_pwrite(vol->dev, (rl->lcn <<
1192 written = to_write;
1194 if (written > 0) {
1195 total += written;
1196 count -= written;
1197 b = (u8*)b + written;
[all...]
H A Dattrib.c984 s64 written, size, end = pos + count; local
1001 written = ntfs_rl_pwrite(na->ni->vol, na->rl, pos, size, buf);
1002 if (written <= 0) {
1006 pos += written;
1148 * On success, return the number of successfully written bytes. If this number
1150 * write so that the write is partial. 0 means nothing was written (also return
1153 * On error and nothing has been written, return -1 with errno set
1159 s64 written, to_write, ofs, old_initialized_size, old_data_size; local
1379 written = ntfs_pwrite(vol->dev, wpos, rounding, cb);
1380 if (written
1569 s64 written, i; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/libcryptoxx-5.6.0/
H A Dsocketft.cpp1 // socketft.cpp - written and placed in the public domain by Wei Dai
413 DWORD written = 0; local
416 if (WSASend(m_s, &wsabuf, 1, &written, 0, &m_overlapped, NULL) == 0)
419 m_lastResult = written;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/ntfs/
H A Dfile.c250 /* Set the page dirty so it gets written out. */
460 * @bytes: number of bytes to be written
469 * only partially being written to.
582 * the buffer is only partially being written to, we
629 * gets written out if we allocated it. On the other
652 * uptodate and is only partially being written
687 * written out. If it is partially being written to,
1466 * @bytes: number of bytes to be written
1570 /* Mark the mft record dirty, so it gets written bac
1788 ssize_t status, written; local
2082 ssize_t written, err; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/examples_cxx/wce_tpcb/
H A DTpcbUI.cpp163 int ret, valid, ntxns, written; local
280 written = MultiByteToWideChar(CP_ACP, NULL,
283 msg[written] = L'\0';
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/conf/
H A Dkeysets.pl59 * This package is an SSL implementation written
61 * The implementation was written so as to conform with Netscapes SSL.
87 * "This product includes cryptographic software written by
93 * "This product includes software written by Tim Hudson (tjh\@cryptsoft.com)"
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/libFLAC/ia32/
H A Dnasm.h17 ; this software without specific prior written permission.
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/conf/
H A Dkeysets.pl59 * This package is an SSL implementation written
61 * The implementation was written so as to conform with Netscapes SSL.
87 * "This product includes cryptographic software written by
93 * "This product includes software written by Tim Hudson (tjh\@cryptsoft.com)"
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/conf/
H A Dkeysets.pl59 * This package is an SSL implementation written
61 * The implementation was written so as to conform with Netscapes SSL.
87 * "This product includes cryptographic software written by
93 * "This product includes software written by Tim Hudson (tjh\@cryptsoft.com)"
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/
H A Dwxchar.cpp322 // buffer. Returns the number of characters written in 'buf' or -1 if
324 int Process(wxChar *buf, size_t lenMax, wxPrintfArg *p, size_t written);
761 int wxPrintfConvSpec::Process(wxChar *buf, size_t lenMax, wxPrintfArg *p, size_t written) argument
939 *p->pad_nint = written;
943 *p->pad_nshortint = (short int)written;
947 *p->pad_nlongint = written;
1028 // number of chars actually written. Does not treat null specially.
1036 size_t written = 0;
1042 for ( i = 0; i < maxIn-1 && written < maxOut; source++, i++)
1044 dest[written
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dfileconf.tex57 written back to the file this object is associated with until you change its
H A Dnode.tex15 written as wxNode<T> even though it isn't really a template class -- but it
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/nfs/
H A Dfile.c338 * page must be completely written to stable storage on the server
509 * occurs that requires the cached contents of an inode to be written back or
608 unsigned long written = 0; local
637 written = result;
646 nfs_add_stats(inode, NFSIOS_NORMALWRITTENBYTES, written);
661 unsigned long written = 0; local
674 written = ret;
682 nfs_add_stats(inode, NFSIOS_NORMALWRITTENBYTES, written);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/lirc/
H A Dlirc_zilog.c721 int ret = 0, written = 0; local
749 while (written < n && ret == 0) {
752 * According to the read(2) man page, 'written' can be
757 if (written)
771 ret = copy_to_user((void *)outbuf+written, buf,
773 written += ir->buf.chunk_size;
784 return ret ? ret : written;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/zlib-1.2.3/contrib/masmx64/
H A Dgvmat64.asm8 ; File written by Gilles Vollant, by converting to assembly the longest_match
12 ; from Brian Raiter, written 1998
76 ; in the deflate_state structure since the asm code was first written
94 ; in zlib in the deflate_state structure since the asm code was first written
505 db 0dh,0ah,"asm686 with masm, optimised assembly code from Brian Raiter, written 1998, converted to amd 64 by Gilles Vollant 2005",0dh,0ah,0
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/zlib-1.2.3/contrib/masmx64/
H A Dgvmat64.asm8 ; File written by Gilles Vollant, by converting to assembly the longest_match
12 ; from Brian Raiter, written 1998
76 ; in the deflate_state structure since the asm code was first written
94 ; in zlib in the deflate_state structure since the asm code was first written
505 db 0dh,0ah,"asm686 with masm, optimised assembly code from Brian Raiter, written 1998, converted to amd 64 by Gilles Vollant 2005",0dh,0ah,0
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zip30/win32/
H A Dgvmat64.asm8 ; File written by Gilles Vollant, by converting to assembly the longest_match
12 ; from Brian Raiter, written 1998
76 ; in the deflate_state structure since the asm code was first written
94 ; in zlib in the deflate_state structure since the asm code was first written
505 db 0dh,0ah,"asm686 with masm, optimised assembly code from Brian Raiter, written 1998, converted to amd 64 by Gilles Vollant 2005",0dh,0ah,0
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/net/cxgb4/
H A Dsge.c694 * The caller must provide adequate space for the SGL that will be written.
1039 * @wr: most recent WR written to the queue
1108 unsigned int written = 0; local
1129 written += ndesc;
1140 if (written > 16) {
1141 ring_tx_db(q->adap, &q->q, written);
1142 written = 0;
1147 ringdb: if (written)
1148 ring_tx_db(q->adap, &q->q, written);
1225 * being written t
1248 unsigned int written = 0; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/libpng/libpng-1.2.50/
H A Dpngtest.c432 png_size_t written, remaining, err; local
437 written = MIN(NEAR_BUF_SIZE, remaining);
438 png_memcpy(buf, data, written); /* Copy far buffer to near buffer */
439 WRITEFILE(io_ptr, buf, written, err);
440 if (err != written)
444 data += written;
445 remaining -= written;
1152 * haven't written anything yet.
1318 * haven't written the end_info yet.
1400 " Was %s written wit
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/png/
H A Dpngtest.c418 png_size_t written, remaining, err; local
423 written = MIN(NEAR_BUF_SIZE, remaining);
424 png_memcpy(buf, data, written); /* copy far buffer to near buffer */
425 WRITEFILE(io_ptr, buf, written, err);
426 if (err != written)
430 data += written;
431 remaining -= written;
1048 haven't written anything yet */
1175 haven't written the end_info yet */
1254 " Was %s written wit
[all...]

Completed in 371 milliseconds

1234567891011>>