HomeSort by relevance Sort by last modified time
    Searched defs:pp_resource (Results 1 - 12 of 12) sorted by null

  /external/chromium_org/ppapi/cpp/
resource.h 8 #include "ppapi/c/pp_resource.h"
45 PP_Resource pp_resource() const { return pp_resource_; } function in class:pp::Resource
53 /// @return The detached <code>PP_Resource</code>.
54 PP_Resource detach();
57 /// A constructor used when a <code>PP_Resource</code> is provided as a
60 /// @param[in] resource A <code>PP_Resource</code> corresponding to a
62 explicit Resource(PP_Resource resource);
64 /// Constructor used when a <code>PP_Resource</code> already has a ref count
66 Resource(PassRef, PP_Resource resource)
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
pepper_interface.h 13 #include <ppapi/c/pp_resource.h>
54 virtual void AddRefResource(PP_Resource) = 0;
55 virtual void ReleaseResource(PP_Resource) = 0;
92 ScopedResource(PepperInterface* ppapi, PP_Resource resource);
95 PP_Resource pp_resource() { return resource_; } function in class:nacl_io::ScopedResource
98 PP_Resource Release();
102 PP_Resource resource_;
  /external/chromium_org/ppapi/host/
resource_host.h 12 #include "ppapi/c/pp_resource.h"
33 ResourceHost(PpapiHost* host, PP_Instance instance, PP_Resource resource);
38 PP_Resource pp_resource() const { return pp_resource_; } function in class:ppapi::host::ResourceHost
46 // Sets the PP_Resource ID when the plugin attaches to a pending resource
50 // The current PP_Resource for all pending hosts should be 0. See
52 void SetPPResourceForPendingHost(PP_Resource pp_resource);
74 // The PP_Resource will be valid for this call but not before.
82 PP_Resource pp_resource_
    [all...]
  /external/chromium_org/ppapi/shared_impl/
resource_tracker_unittest.cc 65 PP_Resource pp_resource = resource->GetReference(); local
66 EXPECT_TRUE(resource_tracker().GetResource(pp_resource));
70 resource_tracker().ReleaseResource(pp_resource);
76 EXPECT_FALSE(resource_tracker().GetResource(pp_resource));
resource.h 15 #include "ppapi/c/pp_resource.h"
155 PP_Resource pp_resource() const { return pp_resource_; } function in class:ppapi::Resource
165 // See also pp_resource() to avoid the AddRef.
166 PP_Resource GetReference();
235 PP_Resource pp_resource_;
resource_tracker.cc 35 Resource* ResourceTracker::GetResource(PP_Resource res) const {
43 void ResourceTracker::AddRefResource(PP_Resource res) {
46 << res << " is not a PP_Resource.";
65 void ResourceTracker::ReleaseResource(PP_Resource res) {
68 << res << " is not a PP_Resource.";
88 void ResourceTracker::ReleaseResourceSoon(PP_Resource res) {
169 PP_Resource ResourceTracker::AddResource(Resource* object) {
177 PP_Resource new_id = MakeTypedId(++last_resource_value_, PP_ID_TYPE_RESOURCE);
203 PP_Resource pp_resource = object->pp_resource() local
    [all...]
  /external/chromium_org/content/browser/renderer_host/pepper/
pepper_printing_host_unittest.cc 73 PP_Resource pp_resource = 67890; local
89 pp_instance, pp_resource, manager.Pass());
92 ppapi::proxy::ResourceMessageCallParams call_params(pp_resource, 1);
pepper_gamepad_host_unittest.cc 137 PP_Resource pp_resource = 67890; local
139 pp_instance, pp_resource); local
143 ppapi::proxy::ResourceMessageCallParams(pp_resource, 1));
  /external/chromium_org/content/renderer/pepper/
pepper_file_chooser_host_unittest.cc 69 PP_Resource pp_resource = 123; local
72 PepperFileChooserHost chooser(&host, pp_instance(), pp_resource);
81 ppapi::proxy::ResourceMessageCallParams call_params(pp_resource, 0);
134 PP_Resource pp_resource = 123; local
137 PepperFileChooserHost chooser(&host, pp_instance(), pp_resource);
146 ppapi::proxy::ResourceMessageCallParams call_params(pp_resource, 0);
  /external/chromium_org/ppapi/proxy/
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);
ppb_image_data_proxy.cc 18 #include "ppapi/c/pp_resource.h"
480 PP_Resource PPB_ImageData_Proxy::CreateProxyResource(
555 PP_Resource PPB_ImageData_Proxy::CreateImageData(
573 PP_Resource pp_resource = 0; local
576 pp_resource = enter.functions()->CreateImageDataSimple(
581 pp_resource = enter.functions()->CreateImageData(
587 if (!pp_resource)
591 pp_resource);
637 PP_Resource resource
    [all...]
ppb_instance_proxy.cc 208 PP_Resource device) {
212 PP_Resource pp_resource = 0; local
219 pp_resource = resource->pp_resource();
233 API_ID_PPB_INSTANCE, instance, pp_resource));
584 PP_Resource decrypted_block,
586 PP_Resource decrypted_block_host_resource = 0;
649 PP_Resource decrypted_frame,
651 PP_Resource host_resource = 0
    [all...]

Completed in 1509 milliseconds