/external/chromium/chrome/browser/extensions/ |
extension_creator.h | 23 // private key that is either provided in |private_key_path| or is internal 31 const FilePath& private_key_path, 40 // |private_key_path| is the optional path to an existing private key to sign 44 const FilePath& private_key_path, 47 // Reads private key from |private_key_path|. 48 crypto::RSAPrivateKey* ReadInputKey(const FilePath& private_key_path); 50 // Generates a key pair and writes the private key to |private_key_path| 52 crypto::RSAPrivateKey* GenerateKey(const FilePath& private_key_path);
|
extension_creator.cc | 29 const FilePath& private_key_path, 47 if (!private_key_path.value().empty() && 48 !file_util::PathExists(private_key_path)) { 56 if (private_key_path.value().empty() && 78 private_key_path) { 79 if (!file_util::PathExists(private_key_path)) { 86 if (!file_util::ReadFileToString(private_key_path, 240 const FilePath& private_key_path, 243 if (!InitializeInput(extension_dir, private_key_path, 250 if (!private_key_path.value().empty() [all...] |
extensions_startup.cc | 56 FilePath private_key_path; local 58 private_key_path = cmd_line.GetSwitchValuePath(switches::kPackExtensionKey); 62 pack_job_ = new PackExtensionJob(this, src_dir, private_key_path);
|
extensions_ui.cc | 520 std::string private_key_path; local 523 CHECK(args->GetString(1, &private_key_path)); 527 FilePath key_file = FilePath::FromWStringHack(UTF8ToWide(private_key_path)); 541 if (!private_key_path.empty() && key_file.empty()) { [all...] |
extension_service_unittest.cc | 877 const FilePath& private_key_path); 895 const FilePath& private_key_path) { 903 EXPECT_EQ(expected_private_key_path_.value(), private_key_path.value()); 904 ASSERT_TRUE(file_util::PathExists(private_key_path)); [all...] |
/external/chromium_org/chrome/browser/extensions/ |
extension_creator.h | 26 // private key that is either provided in |private_key_path| or is internal 44 const base::FilePath& private_key_path, 57 // |private_key_path| is the optional path to an existing private key to sign 63 const base::FilePath& private_key_path, 72 // Reads private key from |private_key_path|. 73 crypto::RSAPrivateKey* ReadInputKey(const base::FilePath& private_key_path); 75 // Generates a key pair and writes the private key to |private_key_path| 77 crypto::RSAPrivateKey* GenerateKey(const base::FilePath& private_key_path);
|
extension_creator.cc | 39 const base::FilePath& private_key_path, 59 if (!private_key_path.value().empty() && 60 !base::PathExists(private_key_path)) { 68 if (private_key_path.value().empty() && 122 private_key_path) { 123 if (!base::PathExists(private_key_path)) { 130 if (!file_util::ReadFileToString(private_key_path, 291 const base::FilePath& private_key_path, 295 if (!InitializeInput(extension_dir, crx_path, private_key_path, 302 if (!private_key_path.value().empty() [all...] |
startup_helper.cc | 65 base::FilePath private_key_path; local 67 private_key_path = cmd_line.GetSwitchValuePath(switches::kPackExtensionKey); 72 pack_job_ = new PackExtensionJob(this, src_dir, private_key_path,
|
extension_service_unittest.cc | [all...] |
/external/chromium_org/chrome/common/extensions/api/ |
developer_private.idl | 199 // Pack an item with given |path| and |private_key_path| 202 DOMString private_key_path,
|
/system/core/adb/ |
adb_auth_host.c | 132 static int write_public_keyfile(RSA *private_key, const char *private_key_path) 139 ret = snprintf(path, sizeof(path), "%s.pub", private_key_path);
|
/external/chromium/chrome/browser/ui/webui/options/ |
extension_settings_handler.cc | 613 std::string private_key_path; local 616 CHECK(args->GetString(1, &private_key_path)); 620 FilePath key_file = FilePath::FromWStringHack(UTF8ToWide(private_key_path)); 634 if (!private_key_path.empty() && key_file.empty()) { [all...] |
/external/chromium_org/chrome/browser/extensions/api/developer_private/ |
developer_private_api.cc | 846 key_path_str_ = params->private_key_path; [all...] |