HomeSort by relevance Sort by last modified time
    Searched refs:pp_resource (Results 151 - 175 of 200) sorted by null

1 2 3 4 5 67 8

  /external/chromium_org/content/renderer/pepper/
ppb_scrollbar_impl.cc 38 PP_Resource PPB_Scrollbar_Impl::Create(PP_Instance instance, bool vertical) {
178 pp_instance(), pp_resource(), scrollbar_->value());
193 pp_instance(), pp_resource(), PP_FromBool(IsOverlay()));
content_decryptor_delegate.cc 475 ScopedPPResource pp_resource(encrypted_resource.get());
502 plugin_decryption_interface_->Decrypt(pp_instance_, pp_resource, &block_info);
560 ScopedPPResource pp_resource(extra_data_resource.get());
564 pp_instance_, &pp_decoder_config, pp_resource);
589 ScopedPPResource pp_resource(extra_data_resource.get());
595 pp_instance_, &pp_decoder_config, pp_resource);
654 ScopedPPResource pp_resource(encrypted_resource.get());
656 pp_instance_, PP_DECRYPTORSTREAMTYPE_AUDIO, pp_resource, &block_info);
695 ScopedPPResource pp_resource(encrypted_resource.get());
697 pp_instance_, PP_DECRYPTORSTREAMTYPE_VIDEO, pp_resource, &block_info)
    [all...]
pepper_device_enumeration_host_helper.cc 187 resource_host_->pp_resource(),
pepper_in_process_router.cc 95 reply_params.pp_resource());
  /external/chromium_org/ppapi/shared_impl/
var_tracker.cc 231 PP_Var VarTracker::MakeResourcePPVar(PP_Resource pp_resource) {
234 ResourceVar* resource_var = MakeResourceVar(pp_resource);
resource.h 15 #include "ppapi/c/pp_resource.h"
161 PP_Resource pp_resource() const { return pp_resource_; } function in class:ppapi::Resource
171 // See also pp_resource() to avoid the AddRef.
172 PP_Resource GetReference();
241 PP_Resource pp_resource_;
tracked_callback.cc 47 resource_id_(resource ? resource->pp_resource() : 0),
  /external/chromium_org/ppapi/tests/
test_message_handler.cc 130 PP_Resource out_param = 0;
235 main_loop.pp_resource());
249 handler_thread_.message_loop().pp_resource());
test_tcp_socket.cc 81 ASSERT_NE(0, local_addr.pp_resource());
82 ASSERT_NE(0, remote_addr.pp_resource());
108 ASSERT_NE(0, local_addr.pp_resource());
109 ASSERT_NE(0, remote_addr.pp_resource());
317 PP_Resource socket = socket_interface_1_0_->Create(instance_->pp_instance());
322 socket, addr_.pp_resource(), cb.GetCallback().pp_completion_callback()));
358 std::string TestTCPSocket::ReadFirstLineFromSocket_1_0(PP_Resource socket,
414 PP_Resource socket,
  /external/chromium_org/ppapi/cpp/private/
content_decryptor_private.cc 172 PP_Resource encrypted_resource,
189 PP_Resource extra_data_resource) {
205 PP_Resource extra_data_resource) {
243 PP_Resource encrypted_resource,
424 decrypted_block.pp_resource(),
470 decrypted_frame.pp_resource(),
481 audio_frames.pp_resource(),
  /external/chromium_org/chrome/renderer/pepper/
pepper_flash_menu_host.cc 98 PP_Resource resource,
197 ppapi::proxy::ResourceMessageReplyParams(pp_resource(), 0),
  /external/chromium_org/content/browser/renderer_host/pepper/
pepper_truetype_font_host.cc 27 PP_Resource resource,
130 pp_resource(), PpapiPluginMsg_TrueTypeFont_CreateReply(*desc, result));
pepper_file_io_host.cc 108 PP_Resource resource)
152 PP_Resource file_ref_resource,
456 PP_Resource quota_file_system = 0;
461 quota_file_system = file_system_host_->pp_resource();
492 PP_Resource quota_file_io = check_quota_ ? pp_resource() : 0;
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/socket/
socket_node.h 13 #include <ppapi/c/pp_resource.h>
34 SocketNode(Filesystem* filesystem, PP_Resource socket);
66 PP_Resource* new_sock,
104 PP_Resource socket_resource() { return socket_resource_; }
105 PP_Resource remote_addr() { return remote_addr_; }
119 PP_Resource addr,
127 PP_Resource* addr,
133 PP_Resource* out_addr,
138 PP_Resource addr,
145 PP_Resource SockAddrToResource(const struct sockaddr* addr, socklen_t len)
    [all...]
  /external/chromium_org/ppapi/proxy/
file_chooser_resource_unittest.cc 29 EXPECT_TRUE(element_size == sizeof(PP_Resource));
30 std::vector<PP_Resource>* output =
31 static_cast<std::vector<PP_Resource>*>(user_data);
76 std::vector<PP_Resource> dest;
91 ResourceMessageReplyParams reply_params(params.pp_resource(),
media_stream_audio_track_resource.cc 98 PP_Resource* buffer,
119 int32_t MediaStreamAudioTrackResource::RecycleBuffer(PP_Resource buffer) {
164 PP_Resource MediaStreamAudioTrackResource::GetAudioBuffer() {
173 // Add |pp_resource()| and |resource| into |buffers_|.
176 buffers_.insert(BufferMap::value_type(resource->pp_resource(), resource));
182 // Just invalidate and release VideoBufferResorce, but keep PP_Resource.
media_stream_video_track_resource.cc 109 PP_Resource* frame,
128 int32_t MediaStreamVideoTrackResource::RecycleFrame(PP_Resource frame) {
162 PP_Resource* frame, scoped_refptr<TrackedCallback> callback) {
166 int32_t MediaStreamVideoTrackResource::PutFrame(PP_Resource frame) {
184 PP_Resource MediaStreamVideoTrackResource::GetVideoFrame() {
193 // Add |pp_resource()| and |resource| into |frames_|.
196 frames_.insert(FrameMap::value_type(resource->pp_resource(), resource));
202 // Just invalidate and release VideoFrameResorce, but keep PP_Resource.
resource_message_params.h 12 #include "ppapi/c/pp_resource.h"
24 PP_Resource pp_resource() const { return pp_resource_; } function in class:ppapi::proxy::ResourceMessageParams
73 ResourceMessageParams(PP_Resource resource, int32_t sequence);
111 PP_Resource pp_resource_;
141 ResourceMessageCallParams(PP_Resource resource, int32_t sequence);
160 ResourceMessageReplyParams(PP_Resource resource, int32_t sequence);
resource_message_test_sink.cc 138 ResourceMessageReplyParams reply_params(call_params.pp_resource(),
compositor_layer_resource.cc 126 PP_Resource context,
134 PP_Resource context,
180 // If the PP_Resource of this layer is released by the plugin, the
187 ScopedPPResource(pp_resource()), // Keep layer alive.
196 PP_Resource image_data,
233 // If the PP_Resource of this layer is released by the plugin, the
240 ScopedPPResource(pp_resource()), // Keep layer alive.
device_enumeration_resource_helper_unittest.cc 40 PP_Resource resource,
143 const PP_Resource* data() const { return data_; }
150 CHECK_EQ(element_size, sizeof(PP_Resource));
157 output->data_ = new PP_Resource[element_count];
164 PP_Resource* data_;
193 const PP_Resource devices[]) {
246 ResourceMessageReplyParams reply_params(params.pp_resource(),
298 ResourceMessageReplyParams reply_params(params.pp_resource(), 0);
file_system_resource_unittest.cc 90 ResourceMessageReplyParams reply_params(params.pp_resource(),
102 void OpenFileSystem(PP_Resource file_system) {
126 void OpenFile(PP_Resource file_io,
127 PP_Resource file_ref,
128 PP_Resource file_system) {
145 ResourceMessageReplyParams reply_params(params.pp_resource(),
plugin_resource.h 202 ResourceMessageCallParams params(pp_resource(), next_sequence_number_++);
212 pp_resource(), params.sequence(), reply_thread_hint);
file_io_resource.cc 125 int32_t FileIOResource::Open(PP_Resource file_ref,
397 pp_resource());
662 PP_Resource quota_file_system,
674 DCHECK(quota_file_system == file_system_resource_->pp_resource());
678 pp_resource());
  /external/chromium_org/ppapi/thunk/
enter.h 13 #include "ppapi/c/pp_resource.h"
37 // some case like |IsFoo(PP_Resource)| the caller is questioning whether their
41 // Automatically interprets the given PP_Resource as a resource ID and sets
87 explicit EnterBase(PP_Resource resource);
89 EnterBase(PP_Resource resource, const PP_CompletionCallback& callback);
116 // Helper function to return a Resource from a PP_Resource. Having this
119 static Resource* GetResource(PP_Resource resource);
129 // is the result of looking up the given pp_resource. The object is the
137 void SetStateForResourceError(PP_Resource pp_resource,
    [all...]

Completed in 456 milliseconds

1 2 3 4 5 67 8