HomeSort by relevance Sort by last modified time
    Searched refs:PP_Var (Results 26 - 50 of 445) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/fake_ppapi/
fake_var_interface.h 17 virtual void AddRef(PP_Var var);
18 virtual void Release(PP_Var var);
19 virtual PP_Var VarFromUtf8(const char* data, uint32_t len);
20 virtual const char* VarToUtf8(PP_Var var, uint32_t* out_len);
  /external/chromium_org/ppapi/c/
ppb_var_array_buffer.h 14 #include "ppapi/c/pp_var.h"
46 * @return A <code>PP_Var</code> representing a <code>VarArrayBuffer</code>
49 struct PP_Var (*Create)(uint32_t size_in_bytes);
55 * <code>PP_Var</code> is not of type <code>PP_VARTYPE_ARRAY_BUFFER</code>).
68 PP_Bool (*ByteLength)(struct PP_Var array, uint32_t* byte_length);
72 * <code>ArrayBuffer PP_Var</code>. ArrayBuffers are copied when transmitted,
97 * if the given <code>PP_Var</code> is not of type
100 void* (*Map)(struct PP_Var array);
104 * Map() to map the buffer again later. The <code>PP_Var</code> remains valid
110 void (*Unmap)(struct PP_Var array)
    [all...]
ppb_network_proxy.h 16 #include "ppapi/c/pp_var.h"
49 * @param[in] url A string <code>PP_Var</code> containing a URL.
51 * @param[out] proxy_string A <code>PP_Var</code> that GetProxyForURL will
54 * PP_Var</code> containing the appropriate PAC string for <code>url</code>.
64 struct PP_Var url,
65 struct PP_Var* proxy_string,
pp_var.h 6 /* From pp_var.idl modified Thu Apr 10 14:52:30 2014. */
28 * can be contained within a <code>PP_Var</code> structure.
92 * This type allows the <code>PP_Var</code> to wrap a <code>PP_Resource
99 * <code>PP_Var</code> will implicitly hold a reference count on the
103 * <code>PP_Var</code> will invoke PPB_Core::ReleaseResource() when the Var
124 * <code>as_bool</code> represents the value of this <code>PP_Var</code> as
130 * <code>as_int</code> represents the value of this <code>PP_Var</code> as
136 * <code>as_double</code> represents the value of this <code>PP_Var</code>
145 * value of this <code>PP_Var</code> as an opaque handle assigned by the
153 * The <code>PP_VAR</code> struct is a variant data type and can contain an
    [all...]
ppb_console.h 15 #include "ppapi/c/pp_var.h"
52 void (*Log)(PP_Instance instance, PP_LogLevel level, struct PP_Var value);
65 struct PP_Var source,
66 struct PP_Var value);
ppp_message_handler.h 15 #include "ppapi/c/pp_var.h"
53 const struct PP_Var* message);
75 const struct PP_Var* message,
76 struct PP_Var* response);
  /external/chromium_org/ppapi/api/private/
ppb_instance_private.idl 46 * @return A PP_Var containing window object on success.
48 PP_Var GetWindowObject([in] PP_Instance instance);
55 * @return A PP_Var containing DOM element on success.
57 PP_Var GetOwnerElementObject([in] PP_Instance instance);
70 * @param[in/out] exception PP_Var containing the exception. Initialize
77 PP_Var ExecuteScript([in] PP_Instance instance,
78 [in] PP_Var script,
79 [out] PP_Var exception);
ppb_platform_verification_private.idl 53 * @param[in] service_id A <code>PP_Var</code> of type
56 * @param[in] challenge A <code>PP_Var</code> of type
59 * @param[out] signed_data A <code>PP_Var</code> of type
63 * @param[out] signed_data_signature A <code>PP_Var</code> of type
67 * @param[out] platform_key_certificate A <code>PP_Var</code> of type
79 [in] PP_Var service_id,
80 [in] PP_Var challenge,
81 [out] PP_Var signed_data,
82 [out] PP_Var signed_data_signature,
83 [out] PP_Var platform_key_certificate
    [all...]
ppb_file_ref_private.idl 19 * @return A <code>PP_Var</code> containing the absolute path of the file.
21 PP_Var GetAbsolutePath([in] PP_Resource file_ref);
ppp_instance_private.idl 23 * GetInstanceObject returns a PP_Var representing the scriptable object for
27 * On Failure, the returned PP_Var should be a "void" var.
29 * The returned PP_Var should have a reference added for the caller, which
34 * @return A PP_Var containing scriptable object.
36 PP_Var GetInstanceObject([in] PP_Instance instance);
  /external/chromium_org/ppapi/api/dev/
ppb_url_util_dev.idl 68 PP_Var Canonicalize([in] PP_Var url, [out] PP_URLComponents_Dev components);
86 PP_Var ResolveRelativeToURL(
87 [in] PP_Var base_url,
88 [in] PP_Var relative_string,
100 PP_Var ResolveRelativeToDocument(
102 [in] PP_Var relative_string,
109 PP_Bool IsSameSecurityOrigin([in] PP_Var url_a, [in] PP_Var url_b);
116 PP_Bool DocumentCanRequest([in] PP_Instance instance, [in] PP_Var url)
    [all...]
  /external/chromium_org/ppapi/shared_impl/
dictionary_var.h 13 #include "ppapi/c/pp_var.h"
26 // Helper function that converts a PP_Var to a DictionaryVar. This will
27 // return NULL if the PP_Var is not of type PP_VARTYPE_DICTIONARY or the
29 static DictionaryVar* FromPPVar(const PP_Var& var);
35 // The returned PP_Var has had a ref added on behalf of the caller.
36 PP_Var Get(const PP_Var& key) const;
37 PP_Bool Set(const PP_Var& key, const PP_Var& value);
38 void Delete(const PP_Var& key)
    [all...]
  /external/chromium_org/ppapi/api/
ppb_var.idl 25 * @param[in] var A <code>PP_Var</code> that will have a reference added.
28 void AddRef([in] PP_Var var);
32 * reference count becomes 0. If the <code>PP_Var</code> is of type
40 * @param[in] var A <code>PP_Var</code> that will have a reference removed.
43 void Release([in] PP_Var var);
67 * @return A <code>PP_Var</code> structure containing a reference counted
71 PP_Var VarFromUtf8([in] PP_Module module, [in] str_t data, [in] uint32_t len);
94 * @return A <code>PP_Var</code> structure containing a reference counted
98 PP_Var VarFromUtf8([in] str_t data, [in] uint32_t len);
113 * @param[in] var A PP_Var struct containing a string-type var
    [all...]
pp_var.idl 13 * can be contained within a <code>PP_Var</code> structure.
88 * This type allows the <code>PP_Var</code> to wrap a <code>PP_Resource
95 * <code>PP_Var</code> will implicitly hold a reference count on the
99 * <code>PP_Var</code> will invoke PPB_Core::ReleaseResource() when the Var
113 * <code>as_bool</code> represents the value of this <code>PP_Var</code> as
120 * <code>as_int</code> represents the value of this <code>PP_Var</code> as
127 * <code>as_double</code> represents the value of this <code>PP_Var</code>
137 * value of this <code>PP_Var</code> as an opaque handle assigned by the
145 * The <code>PP_VAR</code> struct is a variant data type and can contain any
154 * you can't assume a numeric <code>PP_Var</code> will be the type you expect
    [all...]
ppb_network_proxy.idl 35 * @param[in] url A string <code>PP_Var</code> containing a URL.
37 * @param[out] proxy_string A <code>PP_Var</code> that GetProxyForURL will
40 * PP_Var</code> containing the appropriate PAC string for <code>url</code>.
50 [in] PP_Var url,
51 [out] PP_Var proxy_string,
ppb_console.idl 34 [in] PP_Var value);
49 [in] PP_Var source,
50 [in] PP_Var value);
  /external/chromium_org/ppapi/thunk/
ppb_var_dictionary_thunk.cc 7 #include "ppapi/c/pp_var.h"
17 PP_Var Create() {
25 PP_Var Get(PP_Var dict, PP_Var key) {
34 PP_Bool Set(PP_Var dict, PP_Var key, PP_Var value) {
44 void Delete(PP_Var dict, PP_Var key)
    [all...]
ppb_network_proxy_api.h 14 struct PP_Var;
27 PP_Var url,
28 PP_Var* proxy_string,
  /external/chromium_org/ppapi/proxy/
platform_verification_private_resource.h 24 PP_Var* signed_data;
25 PP_Var* signed_data_signature;
26 PP_Var* platform_key_certificate;
38 const PP_Var& service_id,
39 const PP_Var& challenge,
40 PP_Var* signed_data,
41 PP_Var* signed_data_signature,
42 PP_Var* platform_key_certificate,
plugin_var_serialization_rules.cc 27 PP_Var PluginVarSerializationRules::SendCallerOwned(const PP_Var& var) {
34 PP_Var PluginVarSerializationRules::BeginReceiveCallerOwned(const PP_Var& var) {
44 void PluginVarSerializationRules::EndReceiveCallerOwned(const PP_Var& var) {
53 PP_Var PluginVarSerializationRules::ReceivePassRef(const PP_Var& var) {
80 PP_Var PluginVarSerializationRules::BeginSendPassRef(const PP_Var& var) {
102 void PluginVarSerializationRules::EndSendPassRef(const PP_Var& var)
    [all...]
  /external/chromium_org/ppapi/c/dev/
ppb_messaging_deprecated.h 12 #include "ppapi/c/pp_var.h"
29 struct PP_Var message);
30 struct PP_Var (*HandleBlockingMessage)(PP_Instance instance,
32 struct PP_Var message);
37 void (*PostMessage)(PP_Instance instance, struct PP_Var message);
  /external/chromium_org/native_client_sdk/src/examples/demo/nacl_io_demo/
nacl_io_demo.h 10 #include "ppapi/c/pp_var.h"
16 struct PP_Var CStrToVar(const char* str);
19 struct PP_Var GetDictVar(struct PP_Var var, const char* key);
  /external/chromium_org/ppapi/c/private/
ppb_content_decryptor_private.h 19 #include "ppapi/c/pp_var.h"
58 * @param[in] web_session_id A <code>PP_Var</code> of type
63 struct PP_Var web_session_id);
69 * @param[in] key_ids A <code>PP_Var</code> of type
75 struct PP_Var key_ids_array);
86 * @param[in] error_description A <code>PP_Var</code> of type
93 struct PP_Var error_description);
108 * @param[in] web_session_id A <code>PP_Var</code> of type
112 * @param[in] message A <code>PP_Var</code> of type
115 * @param[in] destination_url A <code>PP_Var</code> of typ
    [all...]
ppp_content_decryptor_private.h 18 #include "ppapi/c/pp_var.h"
49 * @param[in] key_system A <code>PP_Var</code> of type
52 void (*Initialize)(PP_Instance instance, struct PP_Var key_system);
60 * @param[in] server_certificate A <code>PP_Var</code> of type
65 struct PP_Var server_certificate);
78 * @param[in] init_data_type A <code>PP_Var</code> of type
81 * @param[in] init_data A <code>PP_Var</code> of type
90 struct PP_Var init_data_type,
91 struct PP_Var init_data,
103 * @param[in] web_session_id A <code>PP_Var</code> of typ
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/devfs/
jspipe_event_emitter.h 9 #include <ppapi/c/pp_var.h>
48 Error HandleJSMessage(PP_Var message);
53 Error HandleJSWrite(PP_Var message);
54 Error HandleJSAck(PP_Var message);
56 PP_Var VarFromCStr(const char* string);
59 Error SendMessageToJS(PP_Var operation, PP_Var payload);
61 int VarStrcmp(PP_Var a, PP_Var b);
81 PP_Var pipe_name_var_
    [all...]

Completed in 570 milliseconds

12 3 4 5 6 7 8 91011>>