Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:common_name
(Results
1 - 2
of
2
) sorted by relevance
/base/security/code_signature/services/key_enable/src/
H
A
D
cert_path_utils.rs
354
let mut
common_name
= String::new();
in fabricate_name()
variables
365
common_name
= inner_trimmed[1].into();
in fabricate_name()
372
let ret = common_format_fabricate_name(&
common_name
, &organization, &email);
in fabricate_name()
376
pub fn common_format_fabricate_name(
common_name
: &str, organization: &str, email: &str) -> String {
in common_format_fabricate_name()
378
if !
common_name
.is_empty() && !organization.is_empty() {
in common_format_fabricate_name()
379
if
common_name
.len() >= organization.len() &&
common_name
.starts_with(organization) {
in common_format_fabricate_name()
380
return
common_name
.to_string();
in common_format_fabricate_name()
382
if
common_name
.len() >= COMMON_NAME_CHAR_LIMIT && organization.len() >= COMMON_NAME_CHAR_LIMIT {
in common_format_fabricate_name()
383
let common_name_prefix = &
common_name
in common_format_fabricate_name()
[all...]
H
A
D
profile_utils.rs
259
let mut
common_name
= String::new();
in format_x509_fabricate_name()
variables
267
openssl::nid::Nid::COMMONNAME =>
common_name
= value.to_string(),
in format_x509_fabricate_name()
274
let ret = common_format_fabricate_name(&
common_name
, &organization, &email);
in format_x509_fabricate_name()
Completed in 3 milliseconds