HomeSort by relevance Sort by last modified time
    Searched refs:resource (Results 726 - 750 of 2028) sorted by null

<<21222324252627282930>>

  /external/chromium_org/chrome/browser/renderer_host/pepper/
pepper_flash_browser_host.h 32 PP_Resource resource);
pepper_flash_drm_host.h 30 PP_Resource resource);
pepper_talk_host.h 29 PP_Resource resource);
  /external/chromium_org/chrome/renderer/pepper/
pepper_flash_menu_host.h 34 PP_Resource resource,
  /external/chromium_org/content/common/
sandbox_linux.cc 6 #include <sys/resource.h>
42 bool AddResourceLimit(int resource, rlim_t limit) {
44 if (getrlimit(resource, &old_rlimit))
51 int rc = setrlimit(resource, &new_rlimit);
  /external/chromium_org/content/renderer/pepper/
pepper_file_chooser_host.h 36 PP_Resource resource);
pepper_truetype_font_host.h 23 PP_Resource resource,
pepper_video_destination_host.h 25 PP_Resource resource);
  /external/chromium_org/ppapi/c/
ppb_graphics_3d.h 151 * IsGraphics3D() determines if the given resource is a valid
154 * @param[in] resource A <code>Graphics3D</code> context resource.
156 * @return PP_TRUE if the given resource is a valid <code>Graphics3D</code>,
157 * <code>PP_FALSE</code> if it is an invalid resource or is a resource of
160 PP_Bool (*IsGraphics3D)(PP_Resource resource);
ppb_net_address.h 100 * Creates a <code>PPB_NetAddress</code> resource with the specified IPv4
114 * Creates a <code>PPB_NetAddress</code> resource with the specified IPv6
128 * Determines if a given resource is a network address.
130 * @param[in] resource A <code>PP_Resource</code> to check.
133 * resource; <code>PP_FALSE</code> otherwise.
135 PP_Bool (*IsNetAddress)(PP_Resource resource);
ppb_tcp_socket.h 82 * Creates a TCP socket resource.
92 * Determines if a given resource is a TCP socket.
94 * @param[in] resource A <code>PP_Resource</code> to check.
97 * <code>PPB_TCPSocket</code> resource; <code>PP_FALSE</code> otherwise.
99 PP_Bool (*IsTCPSocket)(PP_Resource resource);
105 * @param[in] addr A <code>PPB_NetAddress</code> resource.
130 * @return A <code>PPB_NetAddress</code> resource on success or 0 on failure.
139 * @return A <code>PPB_NetAddress</code> resource on success or 0 on failure.
ppb_udp_socket.h 89 * Creates a UDP socket resource.
99 * Determines if a given resource is a UDP socket.
101 * @param[in] resource A <code>PP_Resource</code> to check.
104 * resource; <code>PP_FALSE</code> otherwise.
106 PP_Bool (*IsUDPSocket)(PP_Resource resource);
112 * @param[in] addr A <code>PPB_NetAddress</code> resource.
130 * @return A <code>PPB_NetAddress</code> resource on success or 0 on failure.
142 * @param[out] addr A <code>PPB_NetAddress</code> resource to store the source
162 * @param[in] addr A <code>PPB_NetAddress</code> resource holding the
ppb_url_loader.h 66 * IsURLLoader() determines if a resource is an <code>URLLoader</code>.
68 * @param[in] resource A <code>PP_Resource</code> corresponding to a
71 * @return <code>PP_TRUE</code> if the resource is a <code>URLLoader</code>,
72 * <code>PP_FALSE</code> if the resource is invalid or some type other
75 PP_Bool (*IsURLLoader)(PP_Resource resource);
83 * @param[in] resource A <code>PP_Resource</code> corresponding to a
161 * resource or if Open() has not been called.
ppb_url_request_info.h 98 * Cross-origin requests are made using the CORS (Cross-Origin Resource
101 * the <a href="http://www.w3.org/TR/access-control">Cross-Origin Resource
188 * IsURLRequestInfo() determines if a resource is a
191 * @param[in] resource A <code>PP_Resource</code> corresponding to a
194 * @return <code>PP_TRUE</code> if the resource is a
195 * <code>URLRequestInfo</code>, <code>PP_FALSE</code> if the resource is
198 PP_Bool (*IsURLRequestInfo)(PP_Resource resource);
  /external/chromium_org/ppapi/cpp/
file_ref.cc 27 FileRef::FileRef(PP_Resource resource) : Resource(resource) {
30 FileRef::FileRef(PassRef, PP_Resource resource) : Resource(PASS_REF, resource) {
45 : Resource(other) {
image_data.h 11 #include "ppapi/cpp/resource.h"
20 class ImageData : public Resource {
29 /// @param[in] resource A PP_Resource corresponding to image data.
30 ImageData(PassRef, PP_Resource resource);
34 /// <code>Image</code> resource with <code>other</code>.
43 /// @param[in] instance The instance with which this resource will be
68 /// shares the underlying image resource with <code>other</code>.
tcp_socket.h 11 #include "ppapi/cpp/resource.h"
24 class TCPSocket : public Resource {
32 /// @param[in] instance The instance with which this resource will be
39 /// @param[in] resource A <code>PPB_TCPSocket</code> resource.
40 TCPSocket(PassRef, PP_Resource resource);
104 /// <code>PPB_TCPSocket</code> resource outlives your class, the browser
udp_socket.h 11 #include "ppapi/cpp/resource.h"
28 class UDPSocket : public Resource {
36 /// @param[in] instance The instance with which this resource will be
43 /// @param[in] resource A <code>PPB_UDPSocket</code> resource.
44 UDPSocket(PassRef, PP_Resource resource);
95 /// <code>PPB_UDPSocket</code> resource outlives your class, the browser
  /external/chromium_org/ppapi/cpp/private/
flash_file.cc 154 PP_FileHandle FileFileRef::OpenFile(const pp::FileRef& resource,
160 OpenFile(resource.pp_resource(), mode, &file_handle);
166 bool FileFileRef::QueryFile(const pp::FileRef& resource,
171 QueryFile(resource.pp_resource(), info);
tcp_socket_private.h 12 #include "ppapi/cpp/resource.h"
19 class TCPSocketPrivate : public Resource {
23 TCPSocketPrivate(PassRef, PP_Resource resource);
  /external/chromium_org/ppapi/host/
resource_host.h 29 // that is kept alive as long as the resource in the plugin is alive. This is
33 ResourceHost(PpapiHost* host, PP_Instance instance, PP_Resource resource);
46 // Sets the PP_Resource ID when the plugin attaches to a pending resource
64 // Adds a ResourceMessageFilter to handle resource messages. Incoming
66 // handled by the resource host's own message handler. This allows
70 // Called when this resource host is pending and the corresponding plugin has
71 // just connected to it. The host resource subclass can implement this
84 // A vector of message filters which the host will forward incoming resource
  /external/chromium_org/ppapi/proxy/
pdf_resource.cc 169 HostResource resource;
172 reply, &resource, &image_desc)) {
176 if (resource.is_null())
184 return (new SimpleImageData(resource, image_desc, handle))->GetReference();
  /external/chromium_org/ppapi/shared_impl/
ppb_file_ref_shared.h 11 #include "ppapi/shared_impl/resource.h"
25 ppapi::HostResource resource; member in struct:ppapi::PPB_FileRef_CreateInfo
31 // resource in this CreateInfo. Note that this is a plugin resource as
40 : public Resource,
47 // Resource overrides.
  /external/chromium_org/ppapi/thunk/
ppb_flash_file_fileref_thunk.cc 22 return enter.resource()->pp_instance();
27 // To work around this, use the PP_Instance from the resource.
37 // To work around this, use the PP_Instance from the resource.
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScriptSourceCode.h 68 ScriptResource* resource() const { return m_resource.get(); } function in class:WebCore::ScriptSourceCode

Completed in 1771 milliseconds

<<21222324252627282930>>