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:CIString
(Results
1 - 4
of
4
) sorted by relevance
/base/msdp/device_status/rust/subsystem/device_profile/binding/include/
H
A
D
fusion_security.h
26
struct
CIString
{
struct
27
CIString
* (*clone)(
CIString
*);
28
void (*destruct)(
CIString
*);
29
const char *(*data)(
CIString
*);
33
CIString
* GetLocalNetworkId();
/base/msdp/device_status/rust/subsystem/device_profile/binding/src/
H
A
D
fusion_security.cpp
68
struct CString : public
CIString
{
77
static
CIString
* Clone(
CIString
* target);
78
static void Destruct(
CIString
* target);
79
static const char* GetData(
CIString
* target);
98
CIString
* CString::Clone(
CIString
* target)
in Clone()
105
void CString::Destruct(
CIString
* target)
in Destruct()
112
const char* CString::GetData(
CIString
* target)
in GetData()
119
CIString
* GetLocalNetworkI
[all...]
/base/msdp/device_status/rust/subsystem/device_profile/sys/src/
H
A
D
binding.rs
273
type CIStringClone = extern "C" fn (*mut
CIString
) -> *mut
CIString
;
274
type CIStringDestruct = extern "C" fn (*mut
CIString
);
275
type CIStringGetData = extern "C" fn (*mut
CIString
) -> *const c_char;
277
// Struct representing a
CIString
.
279
pub struct
CIString
{
structure names
292
/// Get a mutable pointer to
CIString
.
296
/// A mutable pointer to
CIString
. Please note that the pointer may be null if there is an error or no local network
298
pub fn GetLocalNetworkId() -> *mut
CIString
;
in GetLocalNetworkId()
H
A
D
adapter.rs
26
CIString
,
401
data: *mut
CIString
,
405
/// Retrieves the string data from the
CIString
object.
432
impl From<*mut
CIString
> for CStringGuard {
440
fn from(value: *mut
CIString
) -> Self
in from()
Completed in 4 milliseconds