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:g_hwParams
(Results
1 - 2
of
2
) sorted by relevance
/drivers/peripheral/audio/supportlibs/adm_adapter/src/
H
A
D
audio_interface_lib_capture.c
34
static struct AudioPcmHwParams
g_hwParams
;
variable
42
(void)memset_s(&
g_hwParams
, sizeof(struct AudioPcmHwParams), 0, sizeof(struct AudioPcmHwParams));
in SetHwParamsCapture()
43
g_hwParams
.streamType = AUDIO_CAPTURE_STREAM;
in SetHwParamsCapture()
44
g_hwParams
.channels = handleData->frameCaptureMode.attrs.channelCount;
in SetHwParamsCapture()
45
g_hwParams
.rate = handleData->frameCaptureMode.attrs.sampleRate;
in SetHwParamsCapture()
46
g_hwParams
.periodSize = handleData->frameCaptureMode.periodSize;
in SetHwParamsCapture()
47
g_hwParams
.periodCount = handleData->frameCaptureMode.periodCount;
in SetHwParamsCapture()
48
g_hwParams
.cardServiceName = (char*)handleData->captureMode.hwInfo.cardServiceName;
in SetHwParamsCapture()
49
g_hwParams
.format = handleData->frameCaptureMode.attrs.format;
in SetHwParamsCapture()
50
g_hwParams
in SetHwParamsCapture()
[all...]
H
A
D
audio_interface_lib_render.c
31
static struct AudioPcmHwParams
g_hwParams
;
variable
39
(void)memset_s(&
g_hwParams
, sizeof(struct AudioPcmHwParams), 0, sizeof(struct AudioPcmHwParams));
in SetHwParams()
40
g_hwParams
.streamType = AUDIO_RENDER_STREAM;
in SetHwParams()
41
g_hwParams
.channels = handleData->frameRenderMode.attrs.channelCount;
in SetHwParams()
42
g_hwParams
.rate = handleData->frameRenderMode.attrs.sampleRate;
in SetHwParams()
43
g_hwParams
.periodSize = handleData->frameRenderMode.periodSize;
in SetHwParams()
44
g_hwParams
.periodCount = handleData->frameRenderMode.periodCount;
in SetHwParams()
45
g_hwParams
.cardServiceName = (char*)handleData->renderMode.hwInfo.cardServiceName;
in SetHwParams()
46
g_hwParams
.format = handleData->frameRenderMode.attrs.format;
in SetHwParams()
47
g_hwParams
in SetHwParams()
[all...]
Completed in 2 milliseconds