Searched refs:pv (Results 26 - 50 of 121) sorted by relevance

12345

/external/chromium_org/third_party/webrtc/base/
H A Dsocketadapters.h36 virtual int Send(const void* pv, size_t cb);
37 virtual int Recv(void* pv, size_t cb);
40 int DirectSend(const void* pv, size_t cb) { argument
41 return AsyncSocketAdapter::Send(pv, cb);
222 virtual int Send(const void *pv, size_t cb);
223 virtual int SendTo(const void *pv, size_t cb, const SocketAddress& addr);
224 virtual int Recv(void *pv, size_t cb);
225 virtual int RecvFrom(void *pv, size_t cb, SocketAddress *paddr);
H A Dsocket.h142 virtual int Send(const void *pv, size_t cb) = 0;
143 virtual int SendTo(const void *pv, size_t cb, const SocketAddress& addr) = 0;
144 virtual int Recv(void *pv, size_t cb) = 0;
145 virtual int RecvFrom(void *pv, size_t cb, SocketAddress *paddr) = 0;
H A Dasyncpacketsocket.h89 virtual int Send(const void *pv, size_t cb, const PacketOptions& options) = 0;
90 virtual int SendTo(const void *pv, size_t cb, const SocketAddress& addr,
H A Dsocketadapters.cc51 int BufferedReadAdapter::Send(const void *pv, size_t cb) { argument
57 return AsyncSocketAdapter::Send(pv, cb);
60 int BufferedReadAdapter::Recv(void *pv, size_t cb) { argument
70 memcpy(pv, buffer_, read);
75 pv = static_cast<char *>(pv) + read;
81 int res = AsyncSocketAdapter::Recv(pv, cb);
843 int LoggingSocketAdapter::Send(const void *pv, size_t cb) {
844 int res = AsyncSocketAdapter::Send(pv, cb);
846 LogMultiline(level_, label_.c_str(), false, pv, re
[all...]
/external/chromium_org/third_party/skia/src/utils/win/
H A DSkIStream.cpp54 HRESULT STDMETHODCALLTYPE SkBaseIStream::Read(void* pv
59 HRESULT STDMETHODCALLTYPE SkBaseIStream::Write(void const* pv
133 HRESULT STDMETHODCALLTYPE SkIStream::Read(void* pv, ULONG cb, ULONG* pcbRead) { argument
134 *pcbRead = static_cast<ULONG>(this->fSkStream->read(pv, cb));
139 HRESULT STDMETHODCALLTYPE SkIStream::Write(void const* pv
244 HRESULT STDMETHODCALLTYPE SkWIStream::Write(void const* pv
249 bool wrote = this->fSkWStream->write(pv, cb);
/external/skia/src/utils/win/
H A DSkIStream.cpp54 HRESULT STDMETHODCALLTYPE SkBaseIStream::Read(void* pv
59 HRESULT STDMETHODCALLTYPE SkBaseIStream::Write(void const* pv
133 HRESULT STDMETHODCALLTYPE SkIStream::Read(void* pv, ULONG cb, ULONG* pcbRead) { argument
134 *pcbRead = static_cast<ULONG>(this->fSkStream->read(pv, cb));
139 HRESULT STDMETHODCALLTYPE SkIStream::Write(void const* pv
244 HRESULT STDMETHODCALLTYPE SkWIStream::Write(void const* pv
249 bool wrote = this->fSkWStream->write(pv, cb);
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dasyncstuntcpsocket.cc68 int AsyncStunTCPSocket::Send(const void *pv, size_t cb, argument
80 size_t expected_pkt_len = GetExpectedLength(pv, cb, &pad_bytes);
86 AppendToOutBuffer(pv, cb);
/external/valgrind/main/none/tests/ppc32/
H A Dtest_isa_2_07_part2.c923 unsigned int * inA, * inB, * pv; local
932 pv = (unsigned int *)&vec_out;
939 for (idx = 0; idx < 4; idx++, pv++)
940 *pv = 0;
1070 unsigned int * pv; local
1073 pv = (unsigned int *)&vec_out;
1075 for (idx = 0; idx < 4; idx++, pv++)
1076 *pv = 0;
1114 pv = (unsigned int *)&vec_inB;
1115 for (idx = 0; idx < 4; idx++, pv
1177 unsigned int * pv; local
1216 unsigned int * pv = (unsigned int *) storeTest.base_addr; local
1328 unsigned int * inB, * pv; local
1356 unsigned int * pv; local
[all...]
/external/valgrind/main/none/tests/ppc64/
H A Dtest_isa_2_07_part2.c923 unsigned int * inA, * inB, * pv; local
932 pv = (unsigned int *)&vec_out;
939 for (idx = 0; idx < 4; idx++, pv++)
940 *pv = 0;
1070 unsigned int * pv; local
1073 pv = (unsigned int *)&vec_out;
1075 for (idx = 0; idx < 4; idx++, pv++)
1076 *pv = 0;
1114 pv = (unsigned int *)&vec_inB;
1115 for (idx = 0; idx < 4; idx++, pv
1177 unsigned int * pv; local
1216 unsigned int * pv = (unsigned int *) storeTest.base_addr; local
1328 unsigned int * inB, * pv; local
1356 unsigned int * pv; local
[all...]
/external/qemu/
H A Dsavevm.c1223 static int get_bool(QEMUFile *f, void *pv, size_t size) argument
1225 bool *v = pv;
1230 static void put_bool(QEMUFile *f, void *pv, size_t size) argument
1232 bool *v = pv;
1244 static int get_int8(QEMUFile *f, void *pv, size_t size) argument
1246 int8_t *v = pv;
1251 static void put_int8(QEMUFile *f, void *pv, size_t size) argument
1253 int8_t *v = pv;
1265 static int get_int16(QEMUFile *f, void *pv, size_t size) argument
1267 int16_t *v = pv;
1272 put_int16(QEMUFile *f, void *pv, size_t size) argument
1286 get_int32(QEMUFile *f, void *pv, size_t size) argument
1293 put_int32(QEMUFile *f, void *pv, size_t size) argument
1308 get_int32_equal(QEMUFile *f, void *pv, size_t size) argument
1328 get_int32_le(QEMUFile *f, void *pv, size_t size) argument
1347 get_int64(QEMUFile *f, void *pv, size_t size) argument
1354 put_int64(QEMUFile *f, void *pv, size_t size) argument
1368 get_uint8(QEMUFile *f, void *pv, size_t size) argument
1375 put_uint8(QEMUFile *f, void *pv, size_t size) argument
1389 get_uint16(QEMUFile *f, void *pv, size_t size) argument
1396 put_uint16(QEMUFile *f, void *pv, size_t size) argument
1410 get_uint32(QEMUFile *f, void *pv, size_t size) argument
1417 put_uint32(QEMUFile *f, void *pv, size_t size) argument
1432 get_uint32_equal(QEMUFile *f, void *pv, size_t size) argument
1452 get_uint64(QEMUFile *f, void *pv, size_t size) argument
1459 put_uint64(QEMUFile *f, void *pv, size_t size) argument
1474 get_uint64_equal(QEMUFile *f, void *pv, size_t size) argument
1495 get_uint8_equal(QEMUFile *f, void *pv, size_t size) argument
1515 get_uint16_equal(QEMUFile *f, void *pv, size_t size) argument
1534 get_float64(QEMUFile *f, void *pv, size_t size) argument
1542 put_float64(QEMUFile *f, void *pv, size_t size) argument
1557 get_timer(QEMUFile *f, void *pv, size_t size) argument
1564 put_timer(QEMUFile *f, void *pv, size_t size) argument
1578 get_buffer(QEMUFile *f, void *pv, size_t size) argument
1585 put_buffer(QEMUFile *f, void *pv, size_t size) argument
1600 get_unused_buffer(QEMUFile *f, void *pv, size_t size) argument
1613 put_unused_buffer(QEMUFile *f, void *pv, size_t size) argument
1638 get_bitmap(QEMUFile *f, void *pv, size_t size) argument
1652 put_bitmap(QEMUFile *f, void *pv, size_t size) argument
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/windows/
H A Dport.cc144 static void NTAPI on_tls_callback(HINSTANCE h, DWORD dwReason, PVOID pv) { argument
159 HINSTANCE h, DWORD dwReason, PVOID pv) = on_tls_callback;
169 BOOL WINAPI DllMain(HINSTANCE h, DWORD dwReason, PVOID pv) { argument
171 on_tls_callback(h, dwReason, pv);
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_surfaces.h41 void* pv; member in union:util_surfaces::__anon13788
76 if(!us->u.pv)
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_surfaces.h41 void* pv; member in union:util_surfaces::__anon27199
76 if(!us->u.pv)
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Ducnvseltst.c510 UPropsVectors *pv = upvec_open(100, &errorCode); local
511 if (pv != NULL) {
516 pv = upvec_open(-1, &errorCode);
517 if (pv != NULL || U_SUCCESS(errorCode)) {
522 pv = upvec_open(100, &errorCode);
523 if (pv == NULL || U_FAILURE(errorCode)) {
528 if (upvec_getValue(pv, 0, 1) != 0) {
531 if (upvec_getRow(pv, 0, NULL, NULL) == NULL) {
534 if (upvec_getArray(pv, NULL, NULL) != NULL) {
538 upvec_close(pv);
[all...]
/external/icu/icu4c/source/test/cintltst/
H A Ducnvseltst.c510 UPropsVectors *pv = upvec_open(100, &errorCode); local
511 if (pv != NULL) {
516 pv = upvec_open(-1, &errorCode);
517 if (pv != NULL || U_SUCCESS(errorCode)) {
522 pv = upvec_open(100, &errorCode);
523 if (pv == NULL || U_FAILURE(errorCode)) {
528 if (upvec_getValue(pv, 0, 1) != 0) {
531 if (upvec_getRow(pv, 0, NULL, NULL) == NULL) {
534 if (upvec_getArray(pv, NULL, NULL) != NULL) {
538 upvec_close(pv);
[all...]
/external/valgrind/main/memcheck/tests/
H A Dunit_oset.c90 UWord *pv; local
194 pv = NULL;
197 while ( (pv = VG_(OSetGen_Next)(oset)) ) {
198 UWord curr = *pv;
210 assert( pv = VG_(OSetGen_Remove)(oset, vs[i]) );
211 assert( pv == vs[i] );
219 assert( pv = VG_(OSetGen_LookupWithCmp)(oset, vs[i], NULL) );
220 assert( pv == vs[i] );
231 assert( pv = VG_(OSetGen_Remove)(oset, vs[i]) );
232 assert( pv
465 Block *pv; local
[all...]
/external/clang/test/CXX/expr/expr.unary/expr.unary.noexcept/
H A Dsema.cpp135 V *pv = 0; local
139 N(dynamic_cast<D&>(*pv));
140 P(dynamic_cast<D*>(pv));
/external/pdfium/core/src/fxge/agg/agg23/
H A Dagg_path_storage.h96 const FX_FLOAT* pv = m_coord_blocks[nb] + ((idx & block_mask) << 1); local
97 *x = *pv++;
98 *y = *pv;
/external/clang/test/Sema/
H A Dblock-misc.c35 void *pv = I; local
37 pv = S;
H A Dconditional-expr.c28 int (*pv)[i];
29 pf = (i ? pf : pv);
/external/chromium_org/chrome/installer/mini_installer/
H A Ddecompress.cc18 ::HeapFree(::GetProcessHeap(), 0, pv); local
94 if (!::ReadFile(reinterpret_cast<HANDLE>(hf), pv, cb, &read, NULL))
101 if (!::WriteFile(reinterpret_cast<HANDLE>(hf), pv, cb, &written, NULL))
121 const wchar_t* destination = reinterpret_cast<const wchar_t*>(pfdin->pv);
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-buffer-serialize.cc293 parse_uint (const char *pp, const char *end, uint32_t *pv) argument
309 *pv = v;
314 parse_int (const char *pp, const char *end, int32_t *pv) argument
330 *pv = v;
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_sf.h65 struct brw_reg pv; member in struct:brw_sf_compile
/external/chromium_org/third_party/mesa/src/src/mesa/tnl_dd/
H A Dt_dd_vertex.h69 } pv; member in union:__anon14590
/external/chromium_org/third_party/tcmalloc/chromium/src/windows/
H A Dport.cc145 static void NTAPI on_tls_callback(HINSTANCE h, DWORD dwReason, PVOID pv) { argument
161 HINSTANCE h, DWORD dwReason, PVOID pv) = on_tls_callback;
171 BOOL WINAPI DllMain(HINSTANCE h, DWORD dwReason, PVOID pv) { argument
173 on_tls_callback(h, dwReason, pv);

Completed in 840 milliseconds

12345