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:fdHead
(Results
1 - 11
of
11
) sorted by relevance
/foundation/multimedia/player_framework/frameworks/native/soundpool/
H
A
D
sound_id_manager.cpp
86
const std::string
fdHead
= "fd://";
in Load()
local
87
if (url.find(
fdHead
) == std::string::npos) {
in Load()
91
StrToInt(url.substr(
fdHead
.size()), fd);
in Load()
/foundation/multimedia/player_framework/frameworks/native/audio_haptic/
H
A
D
audio_haptic_sound_normal_impl.cpp
81
const std::string
fdHead
= "fd://";
in ResetAVPlayer()
local
83
if (audioUri_.find(
fdHead
) != std::string::npos) {
in ResetAVPlayer()
84
fileDes_ = std::stoi(audioUri_.substr(
fdHead
.size()));
in ResetAVPlayer()
/foundation/multimedia/player_framework/frameworks/native/screen_capture/
H
A
D
screen_capture_impl.cpp
240
const std::string
fdHead
= "fd://";
in InitCaptureFile()
local
241
CHECK_AND_RETURN_RET_LOG(config.recorderInfo.url.find(
fdHead
) != std::string::npos, MSERR_INVALID_VAL,
in InitCaptureFile()
244
std::string inputFd = config.recorderInfo.url.substr(
fdHead
.size());
in InitCaptureFile()
/foundation/multimedia/player_framework/frameworks/js/recorder/
H
A
D
audio_recorder_napi.cpp
669
const std::string
fdHead
= "fd://";
in SetUri()
local
671
if (uriPath.find(
fdHead
) != std::string::npos) {
in SetUri()
673
std::string inputFd = uriPath.substr(
fdHead
.size());
in SetUri()
H
A
D
video_recorder_napi.cpp
777
const std::string
fdHead
= "fd://";
in SetUrl()
local
779
if (urlPath.find(
fdHead
) != std::string::npos) {
in SetUrl()
781
std::string inputFd = urlPath.substr(
fdHead
.size());
in SetUrl()
/foundation/multimedia/player_framework/frameworks/js/player/
H
A
D
audio_player_napi.cpp
237
const std::string
fdHead
= "fd://";
in SetSrc()
local
241
if (player->uri_.find(
fdHead
) != std::string::npos) {
in SetSrc()
243
std::string inputFd = player->uri_.substr(
fdHead
.size());
in SetSrc()
H
A
D
video_player_napi.cpp
252
const std::string
fdHead
= "fd://";
in SetUrl()
local
255
if (jsPlayer->url_.find(
fdHead
) != std::string::npos) {
in SetUrl()
256
std::string inputFd = jsPlayer->url_.substr(
fdHead
.size());
in SetUrl()
/foundation/multimedia/player_framework/frameworks/native/system_sound_manager/
H
A
D
system_sound_manager_impl.cpp
1301
std::string
fdHead
= "fd://";
in AddCustomizedToneByExternalUri()
local
1304
if (srcPath.find(
fdHead
) != std::string::npos) {
in AddCustomizedToneByExternalUri()
1305
StrToInt(srcPath.substr(
fdHead
.size()), srcFd);
in AddCustomizedToneByExternalUri()
1311
fdHead
.clear();
in AddCustomizedToneByExternalUri()
1312
return
fdHead
;
in AddCustomizedToneByExternalUri()
/foundation/multimedia/player_framework/test/unittest/screen_capture_test/screen_capture_server_function_unittest/src/
H
A
D
screen_capture_server_function_unittest.cpp
294
const std::string
fdHead
= "fd://";
in InitFileScreenCaptureServer()
local
295
CHECK_AND_RETURN_RET_LOG(config_.recorderInfo.url.find(
fdHead
) != std::string::npos, MSERR_INVALID_VAL,
in InitFileScreenCaptureServer()
298
std::string inputFd = config_.recorderInfo.url.substr(
fdHead
.size());
in InitFileScreenCaptureServer()
/foundation/multimedia/player_framework/frameworks/js/avrecorder/
H
A
D
avrecorder_napi.cpp
1451
const std::string
fdHead
= "fd://";
1452
config->url =
fdHead
+ std::to_string(configMap["url"]);
2164
const std::string
fdHead
= "fd://";
2165
CHECK_AND_RETURN_RET(config->url.find(
fdHead
) != std::string::npos, GetRetInfo(ret, "Getfd", "uri"));
2167
std::string inputFd = config->url.substr(
fdHead
.size());
/foundation/multimedia/player_framework/frameworks/js/avplayer/
H
A
D
avplayer_napi.cpp
1022
const std::string
fdHead
= "fd://";
in AddSubSource()
local
1023
std::string inputFd = url.substr(
fdHead
.size());
in AddSubSource()
Completed in 22 milliseconds