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:eventDumpList
(Results
1 - 2
of
2
) sorted by relevance
/drivers/peripheral/sensor/hal/src/
H
A
D
sensor_dump.c
141
struct SensorDatePack *
eventDumpList
;
in SensorShowData()
local
144
eventDumpList
= GetEventData();
in SensorShowData()
153
if (
eventDumpList
->count < MAX_DUMP_DATA_SIZE) {
in SensorShowData()
154
for (len = 0; len <
eventDumpList
->count; len++) {
in SensorShowData()
155
float *data = (float *)(
eventDumpList
->listDumpArr[len].data);
in SensorShowData()
156
ShowData(data,
eventDumpList
->listDumpArr[len].timestamp,
in SensorShowData()
157
g_sensorList[
eventDumpList
->listDumpArr[len].sensorId], reply);
in SensorShowData()
160
int32_t pos =
eventDumpList
->pos;
in SensorShowData()
161
for (len = 0; len <
eventDumpList
->count; len++) {
in SensorShowData()
163
float *data = (float *)(
eventDumpList
in SensorShowData()
[all...]
/drivers/peripheral/sensor/hdi_service/
H
A
D
sensor_hdi_dump.cpp
129
struct SensorsDataPack
eventDumpList
;
in SensorShowData()
local
132
SensorClientsManager::GetInstance()->GetEventData(
eventDumpList
);
in SensorShowData()
136
for (int32_t i = 0; i <
eventDumpList
.count; i++) {
in SensorShowData()
137
int32_t index = static_cast<const uint32_t>(
eventDumpList
.pos + i) < MAX_DUMP_DATA_SIZE ?
in SensorShowData()
138
(
eventDumpList
.pos + i) : (
eventDumpList
.pos + i - MAX_DUMP_DATA_SIZE);
in SensorShowData()
139
uint32_t dataLen =
eventDumpList
.listDumpArray[index].dataLen;
in SensorShowData()
146
std::copy(
eventDumpList
.listDumpArray[index].data.begin(),
in SensorShowData()
147
eventDumpList
.listDumpArray[index].data.end(), eventData);
in SensorShowData()
152
int32_t ret = ShowData(data,
eventDumpList
in SensorShowData()
[all...]
Completed in 1 milliseconds