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:tmpFactory
(Results
1 - 3
of
3
) sorted by relevance
/device/soc/hisilicon/common/platform/hieth-sf/adapter/
H
A
D
hdf_driver_register.c
29
static struct HdfEthChipDriverFactory
tmpFactory
= { 0 };
in HdfEthRegHisiDriverFactory()
local
36
tmpFactory
.driverName = HISI_ETHERNET_DRIVER_NAME;
in HdfEthRegHisiDriverFactory()
37
tmpFactory
.InitEthDriver = InitHiethDriver;
in HdfEthRegHisiDriverFactory()
38
tmpFactory
.GetMacAddr = EthHisiRandomAddr;
in HdfEthRegHisiDriverFactory()
39
tmpFactory
.DeinitEthDriver = DeinitHiethDriver;
in HdfEthRegHisiDriverFactory()
40
tmpFactory
.BuildMacDriver = BuildHisiMacDriver;
in HdfEthRegHisiDriverFactory()
41
tmpFactory
.ReleaseMacDriver = ReleaseHisiMacDriver;
in HdfEthRegHisiDriverFactory()
42
if (driverMgr->RegChipDriver(&
tmpFactory
) != HDF_SUCCESS) {
in HdfEthRegHisiDriverFactory()
/device/soc/hisilicon/common/platform/wifi/hi3881v100/driver/hdfadapt/
H
A
D
hdf_driver_register.c
92
static struct HdfChipDriverFactory
tmpFactory
= { 0 };
in HDFWlanRegHisiDriverFactory()
local
99
tmpFactory
.driverName = HI3881_DRIVER_NAME;
in HDFWlanRegHisiDriverFactory()
100
tmpFactory
.GetMaxIFCount = GetHi3881GetMaxIFCount;
in HDFWlanRegHisiDriverFactory()
101
tmpFactory
.InitChip = InitHi3881Chip;
in HDFWlanRegHisiDriverFactory()
102
tmpFactory
.DeinitChip = DeinitHi3881Chip;
in HDFWlanRegHisiDriverFactory()
103
tmpFactory
.Build = BuildHi3881Driver;
in HDFWlanRegHisiDriverFactory()
104
tmpFactory
.Release = ReleaseHi3881Driver;
in HDFWlanRegHisiDriverFactory()
105
tmpFactory
.ReleaseFactory = NULL;
in HDFWlanRegHisiDriverFactory()
106
if (driverMgr->RegChipDriver(&
tmpFactory
) != HDF_SUCCESS) {
in HDFWlanRegHisiDriverFactory()
/device/qemu/drivers/virtio/
H
A
D
virtnet.c
744
struct HdfChipDriverFactory *
tmpFactory
= NULL;
in FakeFactoryInit()
local
747
tmpFactory
= OsalMemCalloc(sizeof(struct HdfChipDriverFactory));
in FakeFactoryInit()
748
if (
tmpFactory
== NULL) {
in FakeFactoryInit()
756
OsalMemFree(
tmpFactory
);
in FakeFactoryInit()
761
tmpFactory
->driverName = VIRTMMIO_WIFI_NAME;
in FakeFactoryInit()
762
tmpFactory
->ReleaseFactory = FakeFactoryRelease;
in FakeFactoryInit()
763
tmpFactory
->Build = FakeFactoryInitChip;
in FakeFactoryInit()
764
tmpFactory
->Release = FakeFactoryReleaseChip;
in FakeFactoryInit()
765
tmpFactory
->GetMaxIFCount = FakeFactoryGetMaxIFCount;
in FakeFactoryInit()
766
if ((ret = driverMgr->RegChipDriver(
tmpFactory
)) !
in FakeFactoryInit()
[all...]
Completed in 2 milliseconds