Lines Matching refs:args

92       const v8::FunctionCallbackInfo<v8::Value>& args,
97 const v8::FunctionCallbackInfo<v8::Value>& args,
107 const v8::FunctionCallbackInfo<v8::Value>& args,
111 const v8::FunctionCallbackInfo<v8::Value>& args,
181 static void New(const v8::FunctionCallbackInfo<v8::Value>& args);
183 static void Init(const v8::FunctionCallbackInfo<v8::Value>& args);
184 static void InitECRaw(const v8::FunctionCallbackInfo<v8::Value>& args);
185 static void InitEDRaw(const v8::FunctionCallbackInfo<v8::Value>& args);
186 static void InitJWK(const v8::FunctionCallbackInfo<v8::Value>& args);
187 static void GetKeyDetail(const v8::FunctionCallbackInfo<v8::Value>& args);
188 static void Equals(const v8::FunctionCallbackInfo<v8::Value>& args);
190 static void ExportJWK(const v8::FunctionCallbackInfo<v8::Value>& args);
193 const v8::FunctionCallbackInfo<v8::Value>& args);
196 static void CheckEcKeyData(const v8::FunctionCallbackInfo<v8::Value>& args);
200 const v8::FunctionCallbackInfo<v8::Value>& args);
202 static void Export(const v8::FunctionCallbackInfo<v8::Value>& args);
222 static void New(const v8::FunctionCallbackInfo<v8::Value>& args);
224 const v8::FunctionCallbackInfo<v8::Value>& args);
281 static void New(const v8::FunctionCallbackInfo<v8::Value>& args) {
282 Environment* env = Environment::GetCurrent(args);
283 CHECK(args.IsConstructCall());
285 CryptoJobMode mode = GetCryptoJobMode(args[0]);
287 CHECK(args[1]->IsUint32()); // Export Type
288 CHECK(args[2]->IsObject()); // KeyObject
291 static_cast<WebCryptoKeyFormat>(args[1].As<v8::Uint32>()->Value());
294 ASSIGN_OR_RETURN_UNWRAP(&key, args[2]);
299 if (KeyExportTraits::AdditionalConfig(args, 3, &params).IsNothing()) {
308 args.This(),