/external/chromium/chrome/browser/extensions/ |
pack_extension_job.h | 26 const FilePath& key_file) = 0; 35 const FilePath& key_file); 46 const FilePath& key_file);
|
pack_extension_job.cc | 18 const FilePath& key_file) 19 : client_(client), key_file_(key_file), asynchronous_(true) { 85 const FilePath& key_file) { 87 string16 key_file_string = key_file.LossyDisplayName();
|
extensions_ui.h | 86 const FilePath& key_file);
|
extensions_ui.cc | 527 FilePath key_file = FilePath::FromWStringHack(UTF8ToWide(private_key_path)); local 541 if (!private_key_path.empty() && key_file.empty()) { 547 pack_job_ = new PackExtensionJob(this, root_directory, key_file); [all...] |
/external/chromium/chrome/browser/chromeos/login/ |
owner_key_utils.cc | 42 bool ImportPublicKey(const FilePath& key_file, 61 const FilePath& key_file); 87 const FilePath& key_file) { 104 file_util::WriteFile(key_file, 111 bool OwnerKeyUtilsImpl::ImportPublicKey(const FilePath& key_file, 115 if (!file_util::GetFileSize(key_file, &file_size)) { 116 LOG(ERROR) << "Could not get size of " << key_file.value(); 120 LOG(ERROR) << key_file.value() << "is " 128 int data_read = file_util::ReadFile(key_file,
|
mock_owner_key_utils.h | 25 MOCK_METHOD2(ImportPublicKey, bool(const FilePath& key_file, 37 const FilePath& key_file));
|
owner_key_utils.h | 47 // Assumes that the file at |key_file| exists. 49 virtual bool ImportPublicKey(const FilePath& key_file, 76 // DER encodes public half of |pair| and writes it out to |key_file|. 80 const FilePath& key_file) = 0;
|
/external/chromium/net/test/ |
openssl_helper.cc | 61 const char* key_file = kDefaultPEMFile; local 101 key_file = argv[i]; 130 if (BIO_read_filename(key, key_file) <= 0) { 131 fprintf(stderr, "Failed to read %s\n", key_file); 137 fprintf(stderr, "Failed to parse %s\n", key_file); 162 fprintf(stderr, "Failed to load %s\n", key_file);
|
/external/openssl/apps/ |
s_apps.h | 156 int set_cert_stuff(SSL_CTX *ctx, char *cert_file, char *key_file);
|
s_cb.c | 198 int set_cert_stuff(SSL_CTX *ctx, char *cert_file, char *key_file) 214 if (key_file == NULL) key_file=cert_file; 215 if (SSL_CTX_use_PrivateKey_file(ctx,key_file, 218 BIO_printf(bio_err,"unable to get private key from '%s'\n",key_file);
|
s_client.c | 574 char *cert_file=NULL,*key_file=NULL; local 849 key_file= *(++argv); 1047 if (key_file == NULL) 1048 key_file = cert_file; [all...] |
/external/chromium/chrome/browser/ui/webui/options/ |
extension_settings_handler.h | 128 const FilePath& key_file);
|
extension_settings_handler.cc | 620 FilePath key_file = FilePath::FromWStringHack(UTF8ToWide(private_key_path)); local 634 if (!private_key_path.empty() && key_file.empty()) { 640 pack_job_ = new PackExtensionJob(this, root_directory, key_file); [all...] |
/external/chromium/net/disk_cache/ |
entry_impl.cc | 425 File* key_file = GetBackingFile(address, kKeyFileIndex); local 432 if (!key_file || !key_file->Write(key.data(), key.size(), offset)) { 438 key_file->SetLength(key.size() + 1); 763 File* key_file = const_cast<EntryImpl*>(this)->GetBackingFile(address, local 766 if (!offset && key_file->GetLength() != static_cast<size_t>(key_len + 1)) 769 if (!key_file || 770 !key_file->Read(WriteInto(&key_, key_len + 1), key_len + 1, offset)) [all...] |
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/httplib2/ |
__init__.py | 66 def _ssl_wrap_socket(sock, key_file, cert_file): 67 ssl_sock = socket.ssl(sock, key_file, cert_file) 755 def __init__(self, host, port=None, key_file=None, cert_file=None, 757 httplib.HTTPSConnection.__init__(self, host, port=port, key_file=key_file, 774 self.sock =_ssl_wrap_socket(sock, self.key_file, self.cert_file) [all...] |