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:OH_UdsHyperlink
(Results
1 - 8
of
8
) sorted by relevance
/foundation/distributeddatamgr/udmf/interfaces/ndk/data/
H
A
D
uds.h
59
typedef struct
OH_UdsHyperlink
OH_UdsHyperlink
;
typedef
186
* @brief Creation a pointer to the instance of the {@link
OH_UdsHyperlink
}.
188
* @return If the operation is successful, a pointer to the instance of {@link
OH_UdsHyperlink
}
190
* @see
OH_UdsHyperlink
193
OH_UdsHyperlink
* OH_UdsHyperlink_Create();
196
* @brief Destroy a pointer that points to the {@link
OH_UdsHyperlink
} instance.
198
* @param pThis Represents a pointer to an instance of {@link
OH_UdsHyperlink
}.
199
* @see
OH_UdsHyperlink
202
void OH_UdsHyperlink_Destroy(
OH_UdsHyperlink
* pThi
[all...]
H
A
D
udmf.h
351
* @brief Add one {@link
OH_UdsHyperlink
} data to the {@link OH_UdmfRecord} record.
354
* @param hyperlink Represents a pointer to an instance of {@link
OH_UdsHyperlink
}.
358
* @see OH_UdmfRecord
OH_UdsHyperlink
Udmf_ErrCode.
361
int OH_UdmfRecord_AddHyperlink(OH_UdmfRecord* pThis,
OH_UdsHyperlink
* hyperlink);
484
* @brief Get one {@link
OH_UdsHyperlink
} data from the {@link OH_UdmfRecord} record.
487
* @param hyperlink Represents a pointer to an instance of {@link
OH_UdsHyperlink
}.
491
* @see OH_UdmfRecord
OH_UdsHyperlink
Udmf_ErrCode.
494
int OH_UdmfRecord_GetHyperlink(OH_UdmfRecord* pThis,
OH_UdsHyperlink
* hyperlink);
/foundation/distributeddatamgr/udmf/framework/ndkimpl/data/
H
A
D
uds.cpp
94
OH_UdsHyperlink
::
OH_UdsHyperlink
() : UdsObject(NdkStructId::UDS_HYPERLINK_STRUCT_ID) {}
in OH_UdsHyperlink()
function in OH_UdsHyperlink
190
OH_UdsHyperlink
* OH_UdsHyperlink_Create()
in OH_UdsHyperlink_Create()
192
OH_UdsHyperlink
* hyperlink = new (std::nothrow)
OH_UdsHyperlink
();
in OH_UdsHyperlink_Create()
204
void OH_UdsHyperlink_Destroy(
OH_UdsHyperlink
* pThis)
in OH_UdsHyperlink_Destroy()
211
const char* OH_UdsHyperlink_GetType(
OH_UdsHyperlink
* pThis)
in OH_UdsHyperlink_GetType()
216
const char* OH_UdsHyperlink_GetUrl(
OH_UdsHyperlink
* pThis)
in OH_UdsHyperlink_GetUrl()
221
const char* OH_UdsHyperlink_GetDescription(
OH_UdsHyperlink
* pThis)
in OH_UdsHyperlink_GetDescription()
226
int OH_UdsHyperlink_SetUrl(
OH_UdsHyperlink
* pThi
[all...]
H
A
D
udmf_capi_common.h
69
struct
OH_UdsHyperlink
: public UdsObject {
struct
70
OH_UdsHyperlink
();
H
A
D
udmf.cpp
535
int OH_UdmfRecord_AddHyperlink(OH_UdmfRecord* record,
OH_UdsHyperlink
* hyperlink)
in OH_UdmfRecord_AddHyperlink()
647
int OH_UdmfRecord_GetHyperlink(OH_UdmfRecord* record,
OH_UdsHyperlink
* hyperlink)
in OH_UdmfRecord_GetHyperlink()
/foundation/distributeddatamgr/udmf/framework/ndkimpl/unittest/
H
A
D
uds_test.cpp
223
OH_UdsHyperlink
* hyperlinkNullptr = nullptr;
in HWTEST_F()
226
hyperlinkNullptr = new
OH_UdsHyperlink
;
in HWTEST_F()
245
OH_UdsHyperlink
* hyperlinkNullptr = nullptr;
in HWTEST_F()
248
hyperlinkNullptr = new
OH_UdsHyperlink
;
in HWTEST_F()
267
OH_UdsHyperlink
* hyperlinkNullptr = nullptr;
in HWTEST_F()
270
hyperlinkNullptr = new
OH_UdsHyperlink
;
in HWTEST_F()
H
A
D
udmf_test.cpp
340
OH_UdsHyperlink
*hyperlink = OH_UdsHyperlink_Create();
in HWTEST_F()
444
OH_UdsHyperlink
*hyperlink = OH_UdsHyperlink_Create();
in HWTEST_F()
838
OH_UdsHyperlink
hyperlink;
in HWTEST_F()
864
OH_UdsHyperlink
hyperlink;
in HWTEST_F()
880
OH_UdsHyperlink
*hyperlink1 = OH_UdsHyperlink_Create();
in HWTEST_F()
886
OH_UdsHyperlink
*hyperlink2 = OH_UdsHyperlink_Create();
in HWTEST_F()
1177
OH_UdsHyperlink
* hyperlink = OH_UdsHyperlink_Create();
in HWTEST_F()
1206
OH_UdsHyperlink
*getHyperLink = OH_UdsHyperlink_Create();
in HWTEST_F()
/foundation/distributeddatamgr/pasteboard/interfaces/ndk/unittest/
H
A
D
pasteboard_capi_test.cpp
157
OH_UdsHyperlink
* link = OH_UdsHyperlink_Create();
in GetDataCallback()
550
OH_UdsHyperlink
*getHyperLink = OH_UdsHyperlink_Create();
in HWTEST_F()
Completed in 11 milliseconds