Searched refs:ArrayPiece (Results 1 - 17 of 17) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/wtf/
H A DArrayPiece.h16 // ArrayPiece has the concept of being "null". This is different from an empty
20 // IMPORTANT: The data contained by ArrayPiece is NOT OWNED, so caution must be
22 class WTF_EXPORT ArrayPiece { class in namespace:WTF
24 // Constructs a "null" ArrayPiece object.
25 ArrayPiece();
27 ArrayPiece(void* data, unsigned byteLength);
29 // Constructs an ArrayPiece from the given ArrayBuffer. If the input is a
31 ArrayPiece(ArrayBuffer*);
32 ArrayPiece(ArrayBufferView*);
50 using WTF::ArrayPiece;
[all...]
H A DArrayPiece.cpp6 #include "wtf/ArrayPiece.h"
14 ArrayPiece::ArrayPiece() function in class:WTF::ArrayPiece
19 ArrayPiece::ArrayPiece(void* data, unsigned byteLength) function in class:WTF::ArrayPiece
24 ArrayPiece::ArrayPiece(ArrayBuffer* buffer) function in class:WTF::ArrayPiece
33 ArrayPiece::ArrayPiece(ArrayBufferView* buffer) function in class:WTF::ArrayPiece
42 bool ArrayPiece
[all...]
H A DForward.h36 class ArrayPiece;
65 using WTF::ArrayPiece;
H A Dwtf.target.darwin-arm.mk59 third_party/WebKit/Source/wtf/ArrayPiece.cpp \
H A Dwtf.target.darwin-arm64.mk59 third_party/WebKit/Source/wtf/ArrayPiece.cpp \
H A Dwtf.target.darwin-mips.mk59 third_party/WebKit/Source/wtf/ArrayPiece.cpp \
H A Dwtf.target.darwin-mips64.mk59 third_party/WebKit/Source/wtf/ArrayPiece.cpp \
H A Dwtf.target.darwin-x86.mk59 third_party/WebKit/Source/wtf/ArrayPiece.cpp \
H A Dwtf.target.darwin-x86_64.mk59 third_party/WebKit/Source/wtf/ArrayPiece.cpp \
H A Dwtf.target.linux-arm.mk59 third_party/WebKit/Source/wtf/ArrayPiece.cpp \
H A Dwtf.target.linux-arm64.mk59 third_party/WebKit/Source/wtf/ArrayPiece.cpp \
H A Dwtf.target.linux-mips.mk59 third_party/WebKit/Source/wtf/ArrayPiece.cpp \
H A Dwtf.target.linux-mips64.mk59 third_party/WebKit/Source/wtf/ArrayPiece.cpp \
H A Dwtf.target.linux-x86.mk59 third_party/WebKit/Source/wtf/ArrayPiece.cpp \
H A Dwtf.target.linux-x86_64.mk59 third_party/WebKit/Source/wtf/ArrayPiece.cpp \
/external/chromium_org/third_party/WebKit/Source/modules/crypto/
H A DSubtleCrypto.h37 #include "wtf/ArrayPiece.h"
53 ScriptPromise encrypt(ScriptState*, const Dictionary&, CryptoKey*, const ArrayPiece&);
54 ScriptPromise decrypt(ScriptState*, const Dictionary&, CryptoKey*, const ArrayPiece&);
55 ScriptPromise sign(ScriptState*, const Dictionary&, CryptoKey*, const ArrayPiece&);
57 ScriptPromise verifySignature(ScriptState*, const Dictionary&, CryptoKey*, const ArrayPiece& signature, const ArrayPiece& data);
58 ScriptPromise digest(ScriptState*, const Dictionary&, const ArrayPiece& data);
61 ScriptPromise importKey(ScriptState*, const String&, const ArrayPiece&, const Dictionary&, bool extractable, const Vector<String>& keyUsages);
66 ScriptPromise unwrapKey(ScriptState*, const String&, const ArrayPiece&, CryptoKey*, const Dictionary&, const Dictionary&, bool, const Vector<String>&);
H A DSubtleCrypto.cpp49 static bool ensureNotNull(const ArrayPiece& x, const char* paramName, CryptoResult* result)
90 static ScriptPromise startCryptoOperation(ScriptState* scriptState, const Dictionary& rawAlgorithm, CryptoKey* key, WebCryptoOperation operationType, const ArrayPiece& signature, const ArrayPiece& dataBuffer)
196 ScriptPromise SubtleCrypto::encrypt(ScriptState* scriptState, const Dictionary& rawAlgorithm, CryptoKey* key, const ArrayPiece& data)
198 return startCryptoOperation(scriptState, rawAlgorithm, key, WebCryptoOperationEncrypt, ArrayPiece(), data);
201 ScriptPromise SubtleCrypto::decrypt(ScriptState* scriptState, const Dictionary& rawAlgorithm, CryptoKey* key, const ArrayPiece& data)
203 return startCryptoOperation(scriptState, rawAlgorithm, key, WebCryptoOperationDecrypt, ArrayPiece(), data);
206 ScriptPromise SubtleCrypto::sign(ScriptState* scriptState, const Dictionary& rawAlgorithm, CryptoKey* key, const ArrayPiece& data)
208 return startCryptoOperation(scriptState, rawAlgorithm, key, WebCryptoOperationSign, ArrayPiece(), data);
211 ScriptPromise SubtleCrypto::verifySignature(ScriptState* scriptState, const Dictionary& rawAlgorithm, CryptoKey* key, const ArrayPiece
[all...]

Completed in 90 milliseconds