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:queueInfo
(Results
1 - 8
of
8
) sorted by relevance
/foundation/graphic/graphic_2d/rosen/modules/platform/eventhandler_impl/
H
A
D
event_queue.cpp
568
void EventQueue::DumpQueueInfo(std::string&
queueInfo
)
in DumpQueueInfo()
argument
578
queueInfo
+= " " + priority[i] + " priority event queue:" + LINE_SEPARATOR;
in DumpQueueInfo()
581
queueInfo
+= " No." + std::to_string(n) + " : " + (*it)->Dump();
in DumpQueueInfo()
584
queueInfo
+= " Total size of " + priority[i] + " events : " + std::to_string(n) + LINE_SEPARATOR;
in DumpQueueInfo()
587
queueInfo
+= " Idle priority event queue:" + LINE_SEPARATOR;
in DumpQueueInfo()
592
queueInfo
+= " No." + std::to_string(n) + " : " + (*it)->Dump();
in DumpQueueInfo()
595
queueInfo
+= " Total size of Idle events : " + std::to_string(n) + LINE_SEPARATOR;
in DumpQueueInfo()
597
queueInfo
+= " Total event size : " + std::to_string(total);
in DumpQueueInfo()
H
A
D
event_runner.cpp
524
std::string
queueInfo
;
in DumpRunnerInfo()
local
525
queue_->DumpQueueInfo(
queueInfo
);
in DumpRunnerInfo()
526
runnerInfo +=
queueInfo
;
in DumpRunnerInfo()
/foundation/graphic/graphic_2d/frameworks/vulkan_layers/test/systemtest/
H
A
D
vulkan_loader_system_test.cpp
269
VkDeviceQueueCreateInfo
queueInfo
{};
in HWTEST_F()
270
queueInfo
.sType = VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO;
in HWTEST_F()
271
queueInfo
.pNext = nullptr;
in HWTEST_F()
272
queueInfo
.flags = 0;
in HWTEST_F()
273
queueInfo
.queueFamilyIndex = graphicsQueueFamilyIndex;
in HWTEST_F()
274
queueInfo
.queueCount = 2;
in HWTEST_F()
276
queueInfo
.pQueuePriorities = priorities;
in HWTEST_F()
279
queueCreateInfos.push_back(
queueInfo
);
in HWTEST_F()
/foundation/graphic/graphic_2d/rosen/modules/platform/eventhandler/
H
A
D
event_queue.h
174
* @param
queueInfo
queue Info.
176
void DumpQueueInfo(std::string&
queueInfo
);
/foundation/graphic/graphic_2d/frameworks/vulkan_layers/test/unittest/
H
A
D
vulkan_loader_unit_test.cpp
497
VkDeviceQueueCreateInfo
queueInfo
{};
in HWTEST_F()
498
queueInfo
.sType = VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO;
in HWTEST_F()
499
queueInfo
.queueFamilyIndex = GetQueueFamilyIndex(VK_QUEUE_GRAPHICS_BIT);
in HWTEST_F()
500
queueInfo
.queueCount = 1;
in HWTEST_F()
501
queueInfo
.pQueuePriorities = &defaultQueuePriority;
in HWTEST_F()
502
queueCreateInfos.push_back(
queueInfo
);
in HWTEST_F()
/foundation/graphic/graphic_3d/lume/LumeRender/src/vulkan/
H
A
D
device_vk.h
78
LowLevelQueueInfo
queueInfo
;
member
H
A
D
node_context_pool_manager_vk.cpp
278
const uint32_t queueFamilyIndex = lowLevelGpuQueue.
queueInfo
.queueFamilyIndex;
H
A
D
render_backend_vk.cpp
873
const VkQueueFlags queueFlags = deviceVk_.GetGpuQueue(renderCommandList.GetGpuQueue()).
queueInfo
.queueFlags;
1768
srcQueueFamilyIndex = deviceVk_.GetGpuQueue(ref.srcGpuQueue).
queueInfo
.queueFamilyIndex;
1769
dstQueueFamilyIndex = deviceVk_.GetGpuQueue(ref.dstGpuQueue).
queueInfo
.queueFamilyIndex;
Completed in 14 milliseconds