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:alg_iv
(Results
1 - 4
of
4
) sorted by relevance
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/
H
A
D
crypto_linux.c
685
struct af_alg_iv *
alg_iv
;
in aes_128_cbc_oper()
local
698
CMSG_SPACE(sizeof(*
alg_iv
) + iv_len);
in aes_128_cbc_oper()
712
hdr->cmsg_len = CMSG_SPACE(sizeof(*
alg_iv
) + iv_len);
in aes_128_cbc_oper()
713
alg_iv
= (struct af_alg_iv *) CMSG_DATA(hdr);
in aes_128_cbc_oper()
714
alg_iv
->ivlen = iv_len;
in aes_128_cbc_oper()
715
os_memcpy(
alg_iv
->iv, iv, iv_len);
in aes_128_cbc_oper()
794
struct af_alg_iv *
alg_iv
;
in aes_unwrap()
local
807
CMSG_SPACE(sizeof(*
alg_iv
) + iv_len);
in aes_unwrap()
821
hdr->cmsg_len = CMSG_SPACE(sizeof(*
alg_iv
) + iv_len);
in aes_unwrap()
822
alg_iv
in aes_unwrap()
864
struct af_
alg_iv
*
alg_iv
;
crypto_cipher_init()
local
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/
H
A
D
crypto_linux.c
685
struct af_alg_iv *
alg_iv
;
in aes_128_cbc_oper()
local
698
CMSG_SPACE(sizeof(*
alg_iv
) + iv_len);
in aes_128_cbc_oper()
712
hdr->cmsg_len = CMSG_SPACE(sizeof(*
alg_iv
) + iv_len);
in aes_128_cbc_oper()
713
alg_iv
= (struct af_alg_iv *) CMSG_DATA(hdr);
in aes_128_cbc_oper()
714
alg_iv
->ivlen = iv_len;
in aes_128_cbc_oper()
715
os_memcpy(
alg_iv
->iv, iv, iv_len);
in aes_128_cbc_oper()
794
struct af_alg_iv *
alg_iv
;
in aes_unwrap()
local
807
CMSG_SPACE(sizeof(*
alg_iv
) + iv_len);
in aes_unwrap()
821
hdr->cmsg_len = CMSG_SPACE(sizeof(*
alg_iv
) + iv_len);
in aes_unwrap()
822
alg_iv
in aes_unwrap()
864
struct af_
alg_iv
*
alg_iv
;
crypto_cipher_init()
local
[all...]
/third_party/ltp/lib/
H
A
D
tst_af_alg.c
205
struct af_alg_iv *
alg_iv
;
in tst_alg_sendmsg()
local
238
alg_iv
= (struct af_alg_iv *)CMSG_DATA(cmsg);
in tst_alg_sendmsg()
239
alg_iv
->ivlen = params->ivlen;
in tst_alg_sendmsg()
240
memcpy(
alg_iv
->iv, params->iv, params->ivlen);
in tst_alg_sendmsg()
/third_party/python/Modules/
H
A
D
socketmodule.c
4699
struct af_alg_iv *
alg_iv
= NULL;
local
4746
controllen += CMSG_SPACE(sizeof(*
alg_iv
) + iv.len);
4793
header->cmsg_len = CMSG_SPACE(sizeof(*
alg_iv
) + iv.len);
4794
alg_iv
= (void*)CMSG_DATA(header);
4795
alg_iv
->ivlen = iv.len;
4796
memcpy(
alg_iv
->iv, iv.buf, iv.len);
Completed in 12 milliseconds