Searched refs:ByteLength (Results 1 - 25 of 46) sorted by path

12

/external/chromium_org/base/win/
H A Dscoped_bstr.cc66 size_t ScopedBstr::ByteLength() const { function in class:base::win::ScopedBstr
H A Dscoped_bstr.h77 size_t ByteLength() const;
H A Dscoped_bstr_unittest.cc22 EXPECT_EQ(0, b.ByteLength());
38 EXPECT_EQ(test1_len * sizeof(kTestString1[0]), b1.ByteLength());
55 EXPECT_EQ(100, b2.ByteLength());
/external/chromium_org/content/renderer/pepper/
H A Dcontent_decryptor_delegate.cc745 array_buffer->ByteLength() < media::limits::kMinKeyIdLength ||
746 array_buffer->ByteLength() > media::limits::kMaxKeyIdLength) {
753 key_id.assign(data, data + array_buffer->ByteLength());
801 message_vector.assign(data, data + message_array_buffer->ByteLength());
H A Dhost_array_buffer_var.cc55 uint32 HostArrayBufferVar::ByteLength() { return buffer_.byteLength(); } function in class:content::HostArrayBufferVar
63 ->HostAllocateSharedMemoryBuffer(ByteLength())
68 shm->Map(ByteLength());
69 memcpy(shm->memory(), Map(), ByteLength());
H A Dhost_array_buffer_var.h27 virtual uint32 ByteLength() OVERRIDE;
/external/chromium_org/gin/
H A Darray_buffer.cc105 length_ = contents.ByteLength();
172 num_bytes_(view->ByteLength()) {
/external/chromium_org/media/cdm/ppapi/
H A Dcdm_adapter.cc339 const uint32_t server_certificate_size = server_certificate.ByteLength();
388 init_data.ByteLength(),
414 const uint32_t response_size = response.ByteLength();
1300 signed_data_var.ByteLength(),
1302 signed_data_signature_var.ByteLength(),
/external/chromium_org/native_client_sdk/src/examples/api/var_array_buffer/
H A Dvar_array_buffer.cc129 uint32_t buffer_size = buffer.ByteLength();
/external/chromium_org/native_client_sdk/src/examples/api/websocket/
H A Dwebsocket.cc52 for (offs = 0; offs < array.ByteLength() && offs < MAX_TO_CONVERT; offs++)
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/devfs/
H A Djspipe_event_emitter.cc220 if (buffer_iface_->ByteLength(message, &length) != PP_TRUE) {
221 ERROR("ArrayBuffer.ByteLength returned PP_FALSE");
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/jsfs/
H A Djs_fs_node.cc211 if (!buffer_iface_->ByteLength(buf_var, &src_buf_len)) {
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/pepper/
H A Dall_interfaces.h110 METHOD2(VarArrayBufferInterface, PP_Bool, ByteLength, PP_Var, uint32_t*)
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/fake_ppapi/
H A Dfake_var_array_buffer_interface.cc24 PP_Bool FakeVarArrayBufferInterface::ByteLength(struct PP_Var var, function in class:FakeVarArrayBufferInterface
H A Dfake_var_array_buffer_interface.h18 virtual PP_Bool ByteLength(struct PP_Var var, uint32_t* byte_length);
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
H A Djs_fs_test.cc300 if (!array_buffer_if->ByteLength(var, &var_len)) {
411 if (!array_buffer_if->ByteLength(var, &var_len))
415 if (!array_buffer_if->ByteLength(expected, &expected_len))
/external/chromium_org/ppapi/api/
H A Dppb_var_array_buffer.idl38 * ByteLength() retrieves the length of the <code>VarArrayBuffer</code> in
43 * Note that ByteLength() will successfully retrieve the size of an
55 PP_Bool ByteLength([in] PP_Var array, [out] uint32_t byte_length);
73 * PP_Bool ok = array_buffer_if.ByteLength(array_buffer_var, &byte_length);
/external/chromium_org/ppapi/c/
H A Dppb_var_array_buffer.h51 * ByteLength() retrieves the length of the <code>VarArrayBuffer</code> in
56 * Note that ByteLength() will successfully retrieve the size of an
68 PP_Bool (*ByteLength)(struct PP_Var array, uint32_t* byte_length); member in struct:PPB_VarArrayBuffer_1_0
85 * PP_Bool ok = array_buffer_if.ByteLength(array_buffer_var, &byte_length);
/external/chromium_org/ppapi/cpp/
H A Dvar_array_buffer.cc52 uint32_t VarArrayBuffer::ByteLength() const { function in class:pp::VarArrayBuffer
55 get_interface<PPB_VarArrayBuffer_1_0>()->ByteLength(var_, &byte_length);
H A Dvar_array_buffer.h64 /// ByteLength() retrieves the length of the <code>VarArrayBuffer</code> in
68 uint32_t ByteLength() const;
84 /// uint32_t byte_length = array_buffer_var.ByteLength();
/external/chromium_org/ppapi/native_client/src/untrusted/pnacl_irt_shim/
H A Dpnacl_shim.c1897 return iface->ByteLength(*array, byte_length);
4987 .ByteLength = (PP_Bool (*)(struct PP_Var array, uint32_t* byte_length))&Pnacl_M18_PPB_VarArrayBuffer_ByteLength,
/external/chromium_org/ppapi/proxy/
H A Dflash_clipboard_resource.cc43 array_buffer_var->ByteLength());
H A Dplatform_verification_private_resource.cc59 uint32 challenge_length = challenge_buffer->ByteLength();
H A Dplugin_array_buffer_var.cc75 uint32 PluginArrayBufferVar::ByteLength() { function in class:ppapi::PluginArrayBufferVar
90 instance, ByteLength(), host_handle_id, &plugin_handle));
97 if (!s.Map(ByteLength()))
99 memcpy(s.memory(), Map(), ByteLength());
H A Dplugin_array_buffer_var.h31 virtual uint32 ByteLength() OVERRIDE;

Completed in 9447 milliseconds

12