Home
last modified time | relevance | path

Searched full:written (Results 1 – 25 of 30880) sorted by relevance

12345678910>>...1236

/aosp_15_r20/external/llvm-libc/test/src/stdio/
H A Dsprintf_test.cpp38 written = LIBC_NAMESPACE::sprintf(buff, "%" FMT, X); \
39 ASSERT_STREQ_LEN(written, buff, expected); \
44 int written; in TEST() local
55 int written; in TEST() local
57 written = in TEST()
59 ASSERT_STREQ_LEN(written, buff, "A simple string with no conversions."); in TEST()
64 int written; in TEST() local
66 written = LIBC_NAMESPACE::sprintf(buff, "%%"); in TEST()
67 ASSERT_STREQ_LEN(written, buff, "%"); in TEST()
69 written = LIBC_NAMESPACE::sprintf(buff, "abc %% def"); in TEST()
[all …]
H A Dasprintf_test.cpp16 int written; in TEST() local
17 written = in TEST()
19 EXPECT_EQ(written, 36); in TEST()
26 int written; in TEST() local
28 written = LIBC_NAMESPACE::asprintf(&buff, "%%"); in TEST()
29 EXPECT_EQ(written, 1); in TEST()
33 written = LIBC_NAMESPACE::asprintf(&buff, "abc %% def"); in TEST()
34 EXPECT_EQ(written, 9); in TEST()
38 written = LIBC_NAMESPACE::asprintf(&buff, "%%%%%%"); in TEST()
39 EXPECT_EQ(written, 3); in TEST()
[all …]
/aosp_15_r20/external/llvm-libc/test/src/stdlib/
H A DStrfromTest.h66 int written; in improperFormatString() local
69 written = func(buff, 37, "A simple string with no conversions.", 1.0); in improperFormatString()
70 ASSERT_STREQ_LEN(written, buff, "A simple string with no conversions."); in improperFormatString()
72 written = in improperFormatString()
77 ASSERT_STREQ_LEN(written, buff, "0X8P-3"); in improperFormatString()
79 ASSERT_STREQ_LEN(written, buff, "0X1P+0"); in improperFormatString()
81 ASSERT_STREQ_LEN(written, buff, "0X1P+0"); in improperFormatString()
85 ASSERT_STREQ_LEN(written, buff, "0X1P+0"); in improperFormatString()
87 written = func(buff, 74, in improperFormatString()
91 ASSERT_STREQ_LEN(written, buff, in improperFormatString()
[all …]
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/asio/include/boost/asio/
Dwrite.hpp46 * @li All of the data in the supplied buffers has been written. That is, the
54 * @param s The stream to which the data is to be written. The type must support
57 * @param buffers One or more buffers containing the data to be written. The sum
88 * @li All of the data in the supplied buffers has been written. That is, the
96 * @param s The stream to which the data is to be written. The type must support
99 * @param buffers One or more buffers containing the data to be written. The sum
131 * @li All of the data in the supplied buffers has been written. That is, the
139 * @param s The stream to which the data is to be written. The type must support
142 * @param buffers One or more buffers containing the data to be written. The sum
157 * non-zero return value indicates the maximum number of bytes to be written on
[all …]
Dwrite_at.hpp47 * @li All of the data in the supplied buffers has been written. That is, the
55 * @param d The device to which the data is to be written. The type must support
58 * @param offset The offset at which the data will be written.
60 * @param buffers One or more buffers containing the data to be written. The sum
90 * @li All of the data in the supplied buffers has been written. That is, the
98 * @param d The device to which the data is to be written. The type must support
101 * @param offset The offset at which the data will be written.
103 * @param buffers One or more buffers containing the data to be written. The sum
135 * @li All of the data in the supplied buffers has been written. That is, the
143 * @param d The device to which the data is to be written. The type must support
[all …]
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/0/libcore/ojluni/src/main/java/java/io/
DDataOutputStream.java40 * The number of bytes written to the data output stream so far.
43 protected int written; field in DataOutputStream
52 * underlying output stream. The counter <code>written</code> is
64 * Increases the written counter by the specified value
68 int temp = written + value; in incCount()
72 written = temp; in incCount()
78 * is thrown, the counter <code>written</code> is incremented by
83 * @param b the <code>byte</code> to be written.
95 * If no exception is thrown, the counter <code>written</code> is
113 * bytes to be written out to the stream.
[all …]
DDataOutput.java41 * a byte cannot be written for any reason,
57 * @param b the byte to be written.
67 * no bytes are written. Otherwise, the byte
68 * <code>b[0]</code> is written first, then
70 * written is <code>b[b.length-1]</code>.
87 * then no bytes are written. Otherwise, the
88 * byte <code>b[off]</code> is written first,
90 * last byte written is <code>b[off+len-1]</code>.
103 * is written; if <code>v</code> is <code>false</code>,
104 * the value <code>(byte)0</code> is written.
[all …]
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/gensrcs/libcore/ojluni/src/main/java/java/io/
DDataOutputStream.java40 * The number of bytes written to the data output stream so far.
43 protected int written; field in DataOutputStream
52 * underlying output stream. The counter <code>written</code> is
64 * Increases the written counter by the specified value
68 int temp = written + value; in incCount()
72 written = temp; in incCount()
78 * is thrown, the counter <code>written</code> is incremented by
83 * @param b the <code>byte</code> to be written.
95 * If no exception is thrown, the counter <code>written</code> is
113 * bytes to be written out to the stream.
[all …]
DDataOutput.java41 * a byte cannot be written for any reason,
57 * @param b the byte to be written.
67 * no bytes are written. Otherwise, the byte
68 * <code>b[0]</code> is written first, then
70 * written is <code>b[b.length-1]</code>.
87 * then no bytes are written. Otherwise, the
88 * byte <code>b[off]</code> is written first,
90 * last byte written is <code>b[off+len-1]</code>.
103 * is written; if <code>v</code> is <code>false</code>,
104 * the value <code>(byte)0</code> is written.
[all …]
/aosp_15_r20/libcore/ojluni/src/main/java/java/io/
H A DDataOutputStream.java40 * The number of bytes written to the data output stream so far.
43 protected int written; field in DataOutputStream
52 * underlying output stream. The counter <code>written</code> is
64 * Increases the written counter by the specified value
68 int temp = written + value; in incCount()
72 written = temp; in incCount()
78 * is thrown, the counter <code>written</code> is incremented by
83 * @param b the <code>byte</code> to be written.
95 * If no exception is thrown, the counter <code>written</code> is
113 * bytes to be written out to the stream.
[all …]
H A DDataOutput.java41 * a byte cannot be written for any reason,
57 * @param b the byte to be written.
67 * no bytes are written. Otherwise, the byte
68 * <code>b[0]</code> is written first, then
70 * written is <code>b[b.length-1]</code>.
87 * then no bytes are written. Otherwise, the
88 * byte <code>b[off]</code> is written first,
90 * last byte written is <code>b[off+len-1]</code>.
103 * is written; if <code>v</code> is <code>false</code>,
104 * the value <code>(byte)0</code> is written.
[all …]
/aosp_15_r20/external/python/pyfakefs/pyfakefs/tests/
Dfake_stat_time_test.py73 written = self.stat_time(self.file_path)
76 return created, written, closed
97 written = self.stat_time(self.file_path)
100 return before, opened, written, closed
123 written = self.stat_time(self.file_path)
128 return before, opened, written, flushed, closed
184 created, written, closed = self.open_write_close_new_file()
186 self.assertEqual(created.st_ctime, written.st_ctime)
187 self.assertLessExceptWindows(written.st_ctime, closed.st_ctime)
189 self.assertEqual(created.st_atime, written.st_atime)
[all …]
/aosp_15_r20/external/curl/docs/
H A DBINDINGS.md10 Creative people have written bindings or interfaces for various environments
21 [Ada95](https://web.archive.org/web/20070403105909/www.almroth.com/adacurl/index.html) Written by A…
23 [Basic](https://scriptbasic.com/) ScriptBasic bindings written by Peter Verhas
25 C++: [curlpp](https://github.com/jpbarrette/curlpp/) Written by Jean-Philippe Barrette-LaPierre,
29 [Ch](https://chcurl.sourceforge.net/) Written by Stephen Nestinger and Jonathan Rogado
31 Cocoa: [BBHTTP](https://github.com/biasedbit/BBHTTP) written by Bruno de Carvalho
32 [curlhandle](https://github.com/karelia/curlhandle) Written by Dan Wood
36 [D](https://dlang.org/library/std/net/curl.html) Written by Kenneth Bogert
38 [Delphi](https://github.com/Mercury13/curl4delphi) Written by Mikhail Merkuryev
40 [Dylan](https://dylanlibs.sourceforge.net/) Written by Chris Double
[all …]
/aosp_15_r20/external/pigweed/pw_bluetooth_sapphire/host/sdp/
H A Dpdu.cc221 size_t written = sizeof(Header); in GetPDU() local
226 written); in GetPDU()
307 size_t written = sizeof(Header); in GetPDU() local
310 auto write_view = buf->mutable_view(written); in GetPDU()
311 written += search_pattern.Write(&write_view); in GetPDU()
315 written); in GetPDU()
316 written += sizeof(uint16_t); in GetPDU()
318 write_view = buf->mutable_view(written); in GetPDU()
319 written += WriteContinuationState(&write_view); in GetPDU()
321 PW_DCHECK(written == sizeof(Header) + size); in GetPDU()
[all …]
/aosp_15_r20/external/llvm-libc/test/integration/src/stdio/gpu/
H A Dprintf_test.cpp22 int written = 0; in TEST_MAIN() local
23 written = LIBC_NAMESPACE::fprintf(file, "A simple string\n"); in TEST_MAIN()
24 ASSERT_EQ(written, 16); in TEST_MAIN()
27 written = LIBC_NAMESPACE::fprintf(file, "%s", str); in TEST_MAIN()
28 ASSERT_EQ(written, 16); in TEST_MAIN()
32 written = LIBC_NAMESPACE::fprintf(file, "%8ld\n", thread_id); in TEST_MAIN()
33 ASSERT_EQ(written, 9); in TEST_MAIN()
35 written = LIBC_NAMESPACE::fprintf(file, "%d%c%.1f\n", 1, 'c', 1.0); in TEST_MAIN()
36 ASSERT_EQ(written, 6); in TEST_MAIN()
38 written = LIBC_NAMESPACE::fprintf(file, "%032b%s\n", 1, "A simple string\n"); in TEST_MAIN()
[all …]
/aosp_15_r20/external/coreboot/src/vendorcode/intel/edk2/edk2-stable202302/MdePkg/Include/Library/
H A DIoLib.h64 @return The value written the I/O port.
103 The port is written Count times, and the write data is
130 result to the 8-bit I/O port specified by Port. The value written to the I/O
139 @return The value written back to the I/O port.
155 the 8-bit I/O port specified by Port. The value written to the I/O port is
164 @return The value written back to the I/O port.
182 written to the I/O port is returned. This function must guarantee that all
191 @return The value written back to the I/O port.
235 register are preserved. The value written to the I/O port is returned.
250 @return The value written back to the I/O port.
[all …]
H A DS3IoLib.h49 @return The value written the I/O port.
66 result to the 8-bit I/O port specified by Port. The value written to the I/O
75 @return The value written back to the I/O port.
92 the 8-bit I/O port specified by Port. The value written to the I/O port is
101 @return The value written back to the I/O port.
120 written to the I/O port is returned. This function must guarantee that all
129 @return The value written back to the I/O port.
175 register are preserved. The value written to the I/O port is returned.
191 @return The value written back to the I/O port.
210 result to the 8-bit I/O port specified by Port. The value written to the I/O
[all …]
/aosp_15_r20/external/coreboot/src/vendorcode/intel/edk2/edk2-stable202111/MdePkg/Include/Library/
H A DIoLib.h64 @return The value written the I/O port.
103 The port is written Count times, and the write data is
130 result to the 8-bit I/O port specified by Port. The value written to the I/O
139 @return The value written back to the I/O port.
155 the 8-bit I/O port specified by Port. The value written to the I/O port is
164 @return The value written back to the I/O port.
182 written to the I/O port is returned. This function must guarantee that all
191 @return The value written back to the I/O port.
235 register are preserved. The value written to the I/O port is returned.
250 @return The value written back to the I/O port.
[all …]
H A DS3IoLib.h49 @return The value written the I/O port.
66 result to the 8-bit I/O port specified by Port. The value written to the I/O
75 @return The value written back to the I/O port.
92 the 8-bit I/O port specified by Port. The value written to the I/O port is
101 @return The value written back to the I/O port.
120 written to the I/O port is returned. This function must guarantee that all
129 @return The value written back to the I/O port.
175 register are preserved. The value written to the I/O port is returned.
191 @return The value written back to the I/O port.
210 result to the 8-bit I/O port specified by Port. The value written to the I/O
[all …]
/aosp_15_r20/external/coreboot/src/vendorcode/intel/edk2/edk2-stable202005/MdePkg/Include/Library/
H A DIoLib.h64 @return The value written the I/O port.
103 The port is written Count times, and the write data is
130 result to the 8-bit I/O port specified by Port. The value written to the I/O
139 @return The value written back to the I/O port.
155 the 8-bit I/O port specified by Port. The value written to the I/O port is
164 @return The value written back to the I/O port.
182 written to the I/O port is returned. This function must guarantee that all
191 @return The value written back to the I/O port.
235 register are preserved. The value written to the I/O port is returned.
250 @return The value written back to the I/O port.
[all …]
H A DS3IoLib.h49 @return The value written the I/O port.
66 result to the 8-bit I/O port specified by Port. The value written to the I/O
75 @return The value written back to the I/O port.
92 the 8-bit I/O port specified by Port. The value written to the I/O port is
101 @return The value written back to the I/O port.
120 written to the I/O port is returned. This function must guarantee that all
129 @return The value written back to the I/O port.
175 register are preserved. The value written to the I/O port is returned.
191 @return The value written back to the I/O port.
210 result to the 8-bit I/O port specified by Port. The value written to the I/O
[all …]
/aosp_15_r20/external/icu/icu4c/source/io/
H A Dsprintf.cpp64 int32_t written = 0; in u_sprintf_pad_and_justify() local
87 written += paddingLeft; in u_sprintf_pad_and_justify()
91 written += u_sprintf_write(output, result, resultLen); in u_sprintf_pad_and_justify()
99 written += u_sprintf_write(output, result, resultLen); in u_sprintf_pad_and_justify()
104 written = u_sprintf_write(output, result, resultLen); in u_sprintf_pad_and_justify()
107 if (written >= 0 && lengthOfResult > written) { in u_sprintf_pad_and_justify()
111 return written; in u_sprintf_pad_and_justify()
120 int32_t written; in u_sprintf() local
123 written = u_vsnprintf(buffer, INT32_MAX, patternSpecification, ap); in u_sprintf()
126 return written; in u_sprintf()
[all …]
/aosp_15_r20/external/cronet/third_party/icu/source/io/
H A Dsprintf.cpp64 int32_t written = 0; in u_sprintf_pad_and_justify() local
87 written += paddingLeft; in u_sprintf_pad_and_justify()
91 written += u_sprintf_write(output, result, resultLen); in u_sprintf_pad_and_justify()
99 written += u_sprintf_write(output, result, resultLen); in u_sprintf_pad_and_justify()
104 written = u_sprintf_write(output, result, resultLen); in u_sprintf_pad_and_justify()
107 if (written >= 0 && lengthOfResult > written) { in u_sprintf_pad_and_justify()
111 return written; in u_sprintf_pad_and_justify()
120 int32_t written; in u_sprintf() local
123 written = u_vsnprintf(buffer, INT32_MAX, patternSpecification, ap); in u_sprintf()
126 return written; in u_sprintf()
[all …]
/aosp_15_r20/external/coreboot/src/vendorcode/intel/edk2/UDK2017/MdePkg/Include/Library/
H A DS3IoLib.h56 @return The value written the I/O port.
73 result to the 8-bit I/O port specified by Port. The value written to the I/O
82 @return The value written back to the I/O port.
99 the 8-bit I/O port specified by Port. The value written to the I/O port is
108 @return The value written back to the I/O port.
127 written to the I/O port is returned. This function must guarantee that all
136 @return The value written back to the I/O port.
182 register are preserved. The value written to the I/O port is returned.
198 @return The value written back to the I/O port.
217 result to the 8-bit I/O port specified by Port. The value written to the I/O
[all …]
H A DIoLib.h70 @return The value written the I/O port.
109 The port is written Count times, and the write data is
136 result to the 8-bit I/O port specified by Port. The value written to the I/O
145 @return The value written back to the I/O port.
161 the 8-bit I/O port specified by Port. The value written to the I/O port is
170 @return The value written back to the I/O port.
188 written to the I/O port is returned. This function must guarantee that all
197 @return The value written back to the I/O port.
241 register are preserved. The value written to the I/O port is returned.
256 @return The value written back to the I/O port.
[all …]

12345678910>>...1236