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:sIt
(Results
1 - 4
of
4
) sorted by relevance
/foundation/communication/bluetooth_service/services/bluetooth/service/src/gatt/
H
A
D
gatt_database.cpp
86
auto
sIt
= services_.find(handle);
in DeleteService()
local
87
if (
sIt
== services_.end()) {
in DeleteService()
94
ReleaseHandle(
sIt
->second);
in DeleteService()
96
for (auto &ccc :
sIt
->second.characteristics_) {
in DeleteService()
105
services_.erase(
sIt
);
in DeleteService()
402
auto
sIt
= services_.find(includeService.startHandle_);
in CheckIncludeServicesLegality()
local
403
if (
sIt
== services_.end()) {
in CheckIncludeServicesLegality()
406
includeService.endHandle_ =
sIt
->second.endHandle_;
in CheckIncludeServicesLegality()
407
includeService.uuid_ =
sIt
->second.uuid_;
in CheckIncludeServicesLegality()
408
includeService.isPrimary_ =
sIt
in CheckIncludeServicesLegality()
[all...]
H
A
D
gatt_cache.cpp
68
for (auto &
sIt
: services_) {
in AddDescriptor()
69
auto cIt =
sIt
.second.characteristics_.find(cccHandle);
in AddDescriptor()
70
if (cIt !=
sIt
.second.characteristics_.end()) {
in AddDescriptor()
72
valueHandleMap_.emplace(descriptor.handle_, std::make_pair(
sIt
.second.handle_, cIt->second.handle_));
in AddDescriptor()
H
A
D
gatt_client_profile.cpp
822
auto
sIt
= cache->second.GetServices().find(handle);
in GetService()
local
823
if (
sIt
!= cache->second.GetServices().end()) {
in GetService()
824
return &
sIt
->second;
in GetService()
/foundation/communication/bluetooth/frameworks/inner/src/
H
A
D
bluetooth_gatt_server.cpp
794
for (auto
sIt
= pimpl->gattServices_.begin();
sIt
!= pimpl->gattServices_.end();
sIt
++) {
in RemoveGattService()
795
if (
sIt
->GetUuid().Equals(service.GetUuid())) {
in RemoveGattService()
797
pimpl->applicationId_, (BluetoothGattService)bluetooth::Service(
sIt
->GetHandle()));
in RemoveGattService()
798
pimpl->gattServices_.erase(
sIt
);
in RemoveGattService()
Completed in 7 milliseconds