Home
last modified time | relevance | path

Searched refs:instance (Results 1 – 25 of 57) sorted by relevance

123

/developtools/hdc/hdc_rust/src/transfer/
Duart_wrapper.rs74 let instance = Self::get_instance(); in start_session() localVariable
75 instance.response_waiters.insert(session_id, Waiter::new()); in start_session()
76 instance.empty_waiters.insert(session_id, Waiter::new()); in start_session()
81 let instance = Self::get_instance(); in wait_response() localVariable
82 let waiter = instance.response_waiters.get(&session_id); in wait_response()
90 let instance = Self::get_instance(); in wakeup_response_wait() localVariable
91 let waiter = instance.response_waiters.get(&session_id); in wakeup_response_wait()
99 let instance = Self::get_instance(); in wait_empty() localVariable
100 let waiter = instance.empty_waiters.get(&session_id); in wait_empty()
108 let instance = Self::get_instance(); in wakeup_empty_wait() localVariable
[all …]
Dbuffer.rs79 let instance = Self::get_instance(); in put() localVariable
80 let map = instance.read().await; in put()
93 let instance = Self::get_instance(); in send_channel_message() localVariable
94 let map = instance.read().await; in send_channel_message()
104 let instance = Self::get_instance(); in start() localVariable
105 let mut map = instance.write().await; in start()
112 let instance = Self::get_instance(); in end() localVariable
113 let mut map = instance.write().await; in end()
141 let instance = Self::get_instance(); in put() localVariable
142 let map = instance.read().await; in put()
[all …]
/developtools/smartperf_host/ide/src/trace/bean/
DMemoryConfig.ts16 private static instance: MemoryConfig; property in MemoryConfig
24 if (!this.instance) {
25 this.instance = new MemoryConfig();
27 return this.instance;
/developtools/smartperf_host/ide/src/trace/database/
DLongTraceDBUtils.ts19 public static instance: LongTraceDBUtils | undefined; property in LongTraceDBUtils
27 if (!this.instance) {
28 this.instance = new LongTraceDBUtils();
30 return this.instance;
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/profiler/item/
DNetWork.ts25 public static instance: NetWork = null property in NetWork
27 if (this.instance == null) {
28 this.instance = new NetWork()
30 return this.instance
DDDR.ets27 public static instance: DDR = null
29 if (this.instance == null) {
30 this.instance = new DDR()
32 return this.instance
DRAM.ets28 public static instance: RAM = null
30 if (this.instance == null) {
31 this.instance = new RAM()
33 return this.instance
DGPU.ets32 public static instance: GPU = null
34 if (this.instance == null) {
35 this.instance = new GPU()
37 return this.instance
DFPS.ets32 public static instance: FPS = null
34 if (this.instance == null) {
35 this.instance = new FPS()
37 return this.instance
DThermal.ets35 public static instance: Thermal = null
37 if (this.instance == null) {
38 this.instance = new Thermal()
40 return this.instance
/developtools/profiler/host/smartperf/client/client_command/include/
DDubai.h23 static Dubai instance; in GetInstance() local
24 return instance; in GetInstance()
DGPU.h27 static GPU instance; in GetInstance() local
28 return instance; in GetInstance()
DDDR.h25 static DDR instance; in GetInstance() local
26 return instance; in GetInstance()
DPower.h26 static Power instance; in GetInstance() local
27 return instance; in GetInstance()
DCapture.h25 static Capture instance; in GetInstance() local
26 return instance; in GetInstance()
DNetwork.h26 static Network instance; in GetInstance() local
27 return instance; in GetInstance()
DTemperature.h31 static Temperature instance; in GetInstance() local
32 return instance; in GetInstance()
DRAM.h29 static RAM instance; in GetInstance() local
30 return instance; in GetInstance()
DByTrace.h24 static ByTrace instance; in GetInstance() local
25 return instance; in GetInstance()
DCPU.h41 static CPU instance; in GetInstance() local
42 return instance; in GetInstance()
Dsp_task.h56 static SPTask instance; in GetInstance() local
57 return instance; in GetInstance()
/developtools/ace_ets2bundle/compiler/test/ark_compiler_ut/mock/rollup_mock/
Dshare.ts49 for (const instance of Logger.instances) { constant
50 if (instance.getPrefix() == prefix) {
51 return instance;
/developtools/hdc/hdc_rust/src/host/
Dlogger.rs45 let instance = Self::get_instance(); in init() localVariable
46 let mut meta = instance.lock().unwrap(); in init()
58 let instance = Self::get_instance(); in write_log() localVariable
59 let mut meta = instance.lock().unwrap(); in write_log()
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/utils/
DObjectPool.ets26 …* Benefit - The pool can also know if an instance of Poolable is already stored in a different p…
40 * Returns the id of the given pool instance.
42 * @return an integer ID belonging to this pool instance.
49 …* Returns an ObjectPool instance, of a given starting capacity, that recycles instances of a given…
52 * @param object An instance of the object that the pool should recycle.
118 * Returns an instance of Poolable. If get() is called with an empty pool, the pool will be
122 * @return An instance of Poolable object T
138 * Recycle an instance of Poolable that this pool is capable of generating.
139 * The T instance passed must not already exist inside this or any other ObjectPool instance.
164 * The T instances passed must not already exist inside this or any other ObjectPool instance.
/developtools/profiler/device/services/ipc/src/
Dclient_map.cpp25 static ClientMap instance; in GetInstance() local
26 return instance; in GetInstance()

123