Home
last modified time | relevance | path

Searched refs:name (Results 1 - 25 of 7626) sorted by relevance

12345678910>>...306

/foundation/graphic/graphic_3d/lume/metaobject/include/meta/interface/
H A Dinterface_macros.h25 #define META_READONLY_PROPERTY_TYPED_IMPL(type, name) \
26 META_NS::ConstProperty<type> name() const noexcept \
28 return META_NS::ConstProperty<type> { this->Property##name() }; \
31 #define META_PROPERTY_TYPED_IMPL(type, name) \
32 META_NS::Property<type> name() noexcept \
34 return META_NS::Property<type> { this->Property##name() }; \
37 #define META_EVENT_TYPED_IMPL(type, name) \
38 ::META_NS::Event<type> name() const \
40 return Event##name(); \
44 * @brief Define read-only property with given type and name
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_ng/property/
H A Dproperty.h123 #define ACE_DEFINE_PROPERTY_ITEM_WITH_GROUP_GET(group, name, type) \
125 std::optional<type> Get##name() const \
129 return groupProperty->Get##name(); \
133 bool Has##name() const \
137 return groupProperty->Has##name(); \
141 type Get##name##Value(const type& defaultValue) const \
145 if (groupProperty->Has##name()) { \
146 return groupProperty->Get##name##Value(); \
151 void Reset##name() \
155 groupProperty->Reset##name(); \
[all...]
/foundation/graphic/graphic_3d/lume/metaobject/include/meta/ext/
H A Dimplementation_macros.h30 #define META_ACCESS_PROPERTY(name) metaProperty##name##_
31 #define META_ACCESS_PROPERTY_VALUE(name) metaProperty##name##_->GetValue()
35 #define META_ACCESS_EVENT(name) metaEvent##name##_
44 #define META_DEFINE_PROPERTY_VAR(intf, name, type, defaultValue, flags) \
45 ::META_NS::Property<::META_NS::PropertyType_v<type>> metaProperty##name##_ = \
47 intf, #name, flags, \
48 [] { return ::META_NS::IProperty::Ptr(::META_NS::ConstructProperty<type>(#name, defaultValu
[all...]
/foundation/distributeddatamgr/pasteboard/framework/framework/serializable/
H A Dserializable.cpp43 bool Serializable::GetValue(const json node, const std::string &name, std::string &value) in GetValue() argument
45 auto subNode = GetSubNode(node, name); in GetValue()
53 bool Serializable::GetValue(const json node, const std::string &name, uint8_t &value) in GetValue() argument
55 return GetNumber(node, name, value); in GetValue()
58 bool Serializable::GetValue(const json node, const std::string &name, uint16_t &value) in GetValue() argument
60 return GetNumber(node, name, value); in GetValue()
63 bool Serializable::GetValue(const json node, const std::string &name, uint32_t &value) in GetValue() argument
65 return GetNumber(node, name, value); in GetValue()
68 bool Serializable::GetValue(const json node, const std::string &name, uint64_t &value) in GetValue() argument
70 return GetNumber(node, name, valu in GetValue()
73 GetValue(const json node, const std::string &name, int32_t &value) GetValue() argument
78 GetValue(const json node, const std::string &name, int64_t &value) GetValue() argument
83 GetValue(const json node, const std::string &name, bool &value) GetValue() argument
93 GetValue(const json node, const std::string &name, std::vector<uint8_t> &value) GetValue() argument
106 GetValue(const json node, const std::string &name, Serializable &value) GetValue() argument
115 SetValue(json &node, const std::string &value, const std::string &name) SetValue() argument
126 SetValue(json &node, const uint8_t &value, const std::string &name) SetValue() argument
131 SetValue(json &node, const uint16_t &value, const std::string &name) SetValue() argument
136 SetValue(json &node, const uint32_t &value, const std::string &name) SetValue() argument
141 SetValue(json &node, const uint64_t &value, const std::string &name) SetValue() argument
146 SetValue(json &node, const int32_t &value, const std::string &name) SetValue() argument
151 SetValue(json &node, const int64_t &value, const std::string &name) SetValue() argument
156 SetValue(json &node, const bool &value, const std::string &name) SetValue() argument
167 SetValue(json &node, const std::vector<uint8_t> &value, const std::string &name) SetValue() argument
181 SetValue(json &node, const Serializable &value, const std::string &name) SetValue() argument
196 GetSubNode(const json node, const std::string &name) GetSubNode() argument
[all...]
/device/soc/hisilicon/hi3861v100/sdk_liteos/third_party/lwip_sack/include/lwip/
H A Dmemp.h18 * 3. The name of the author may not be used to endorse or promote products
48 #define LWIP_MEMPOOL(name, num, size, desc)
53 #define LWIP_MEMPOOL(name, num, size, desc) MEMP_##name,
71 #define LWIP_MEMPOOL_PROTOTYPE(name) extern const struct memp_desc memp_ ## name
75 #define LWIP_MEMPOOL_DECLARE(name, num, size, desc) \
76 LWIP_MEMPOOL_DECLARE_STATS_INSTANCE(memp_stats_ ## name) \
77 const struct memp_desc memp_ ## name = { \
79 LWIP_MEMPOOL_DECLARE_STATS_REFERENCE(memp_stats_ ## name) \
[all...]
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_profiler/unittest/
H A Drs_profiler_capturedata_test.cpp32 * @tc.name: TimeTest
46 * @tc.name: StringPropertyTest
54 const std::string name = "String"; in HWTEST_F() local
56 data.SetProperty(name, initial); in HWTEST_F()
57 EXPECT_EQ(initial, data.GetProperty(name)); in HWTEST_F()
61 * @tc.name: FloatPropertyTest
69 const std::string name = "Float"; in HWTEST_F() local
71 data.SetProperty(name, initial); in HWTEST_F()
72 EXPECT_EQ(initial, data.GetPropertyFloat(name)); in HWTEST_F()
76 * @tc.name
84 const std::string name = "Double"; HWTEST_F() local
99 const std::string name = "Int8"; HWTEST_F() local
114 const std::string name = "Uint8"; HWTEST_F() local
129 const std::string name = "Int16"; HWTEST_F() local
144 const std::string name = "Uint16"; HWTEST_F() local
159 const std::string name = "Int32"; HWTEST_F() local
174 const std::string name = "Uint32"; HWTEST_F() local
189 const std::string name = "Int64"; HWTEST_F() local
204 const std::string name = "Uint64"; HWTEST_F() local
[all...]
/device/soc/rockchip/common/sdk_linux/include/trace/hooks/
H A Dvendor_hooks.h25 .name = __tpstrtab_##_name, \
49 #define DECLARE_RESTRICTED_HOOK(name, proto, args, cond) DEFINE_HOOK_FN(name, NULL, NULL, PARAMS(proto), PARAMS(args))
56 #define I_DO_RESTRICTED_HOOK_CALL(name, args) \
60 it_func_ptr = (&__tracepoint_##name)->funcs; \
63 static_call(tp_func_##name)(__data, args); \
67 #define I_DO_RESTRICTED_HOOK_CALL(name, args) __traceiter_##name(NULL, args)
70 #define DO_RESTRICTED_HOOK(name, args, cond) \
75 I_DO_RESTRICTED_HOOK_CALL(name, TP_ARG
[all...]
/foundation/graphic/graphic_2d/utils/log/
H A Drs_trace.h21 #define ROSEN_TRACE_BEGIN(tag, name) StartTrace(tag, name)
22 #define RS_TRACE_BEGIN(name) ROSEN_TRACE_BEGIN(HITRACE_TAG_GRAPHIC_AGP | HITRACE_TAG_COMMERCIAL, name)
25 #define RS_TRACE_NAME(name) HITRACE_METER_NAME(HITRACE_TAG_GRAPHIC_AGP | HITRACE_TAG_COMMERCIAL, name)
28 #define RS_ASYNC_TRACE_BEGIN(name, value) StartAsyncTrace(HITRACE_TAG_GRAPHIC_AGP | HITRACE_TAG_COMMERCIAL, name, value)
29 #define RS_ASYNC_TRACE_END(name, value) FinishAsyncTrace(HITRACE_TAG_GRAPHIC_AGP | HITRACE_TAG_COMMERCIAL, name, valu
[all...]
/foundation/arkui/napi/interfaces/inner_api/napi/
H A Dnative_common.h58 #define DECLARE_NAPI_PROPERTY(name, val) \
60 (name), nullptr, nullptr, nullptr, nullptr, val, napi_default, nullptr \
63 #define DECLARE_NAPI_INSTANCE_PROPERTY(name, val) \
65 (name), nullptr, nullptr, nullptr, nullptr, val, \
69 #define DECLARE_NAPI_INSTANCE_OBJECT_PROPERTY(name) \
71 (name), nullptr, nullptr, nullptr, nullptr, nullptr, \
75 #define DECLARE_NAPI_INSTANCE_GENERIC_PROPERTY(name) \
77 (name), nullptr, nullptr, nullptr, nullptr, nullptr, \
81 #define DECLARE_NAPI_DEFAULT_PROPERTY(name, val) \
83 (name), nullpt
[all...]
/foundation/multimedia/image_effect/frameworks/native/efilter/base/
H A Defilter_factory.cpp32 void EFilterFactory::RegisterFunction(const std::string &name, const EFilterFunction &function) in RegisterFunction() argument
34 EFFECT_LOGI("register efilter. name=%{public}s", name.c_str()); in RegisterFunction()
36 auto it = functions_.find(name); in RegisterFunction()
38 auto result = functions_.emplace(name, function); in RegisterFunction()
43 functions_[name] = function; in RegisterFunction()
47 void EFilterFactory::RegisterDelegate(const std::string &name, const std::shared_ptr<IFilterDelegate> &delegate, in RegisterDelegate() argument
50 EFFECT_LOGI("register delegate. name=%{public}s", name.c_str()); in RegisterDelegate()
52 RegisterEFilter<CustomEFilter>(name); in RegisterDelegate()
67 GetDelegate(const std::string &name) GetDelegate() argument
76 Restore(const std::string &name, const EffectJsonPtr &root, void *handler) Restore() argument
87 Create(const std::string &name, void *handler) Create() argument
102 GetEffectInfo(const std::string &name) GetEffectInfo() argument
[all...]
/foundation/multimedia/image_effect/frameworks/native/render_environment/graphic/
H A Drender_program.cpp25 void RenderProgram::SetUniform(const std::string &name, float value) in SetUniform() argument
27 CHECK_AND_RETURN_LOG(program_ != 0, "RenderProgram SetUniform failed!, name=%{public}s, program=%{public}d", in SetUniform()
28 name.c_str(), program_); in SetUniform()
29 GLint location = glGetUniformLocation(program_, name.c_str()); in SetUniform()
30 CHECK_AND_RETURN_LOG(location != -1, "glGetUniformLocation failed!, name=%{public}s", name.c_str()); in SetUniform()
34 void RenderProgram::SetUniform(const std::string &name, int value) in SetUniform() argument
36 CHECK_AND_RETURN_LOG(program_ != 0, "RenderProgram SetUniform failed!, name=%{public}s, program=%{public}d", in SetUniform()
37 name.c_str(), program_); in SetUniform()
38 GLint location = glGetUniformLocation(program_, name in SetUniform()
43 SetUniform(const std::string &name, unsigned int value) SetUniform() argument
52 SetUniform(const std::string &name, const void *value) SetUniform() argument
76 GetAttributeLocation(const std::string &name) GetAttributeLocation() argument
82 GetUniformLocation(const std::string &name) GetUniformLocation() argument
[all...]
/foundation/ability/ability_lite/services/abilitymgr_lite/include/util/
H A Dabilityms_log.h46 #define PRINTD(name, fmt, ...)
47 #define PRINTI(name, fmt, ...)
48 #define PRINTW(name, fmt, ...)
49 #define PRINTE(name, fmt, ...)
52 #define PRINTD(name, fmt, ...) HILOG_DEBUG(LOG_DOMAIN, "%{public}s::%{public}s(%{public}d): " fmt, \
53 name, __FUNCTION__, __LINE__, ##__VA_ARGS__)
55 #define PRINTD(name, fmt, ...)
57 #define PRINTI(name, fmt, ...) HILOG_INFO(LOG_DOMAIN, "%{public}s::%{public}s(%{public}d): " fmt, \
58 name, __FUNCTION__, __LINE__, ##__VA_ARGS__)
59 #define PRINTW(name, fm
[all...]
/foundation/bundlemanager/bundle_framework_lite/services/bundlemgr_lite/include/
H A Dbundlems_log.h46 #define PRINTD(name, fmt, ...)
47 #define PRINTI(name, fmt, ...)
48 #define PRINTW(name, fmt, ...)
49 #define PRINTE(name, fmt, ...)
52 #define PRINTD(name, fmt, ...) HILOG_DEBUG(LOG_DOMAIN, "%{public}s::%{public}s(%{public}d): " fmt, \
53 name, __FUNCTION__, __LINE__, ##__VA_ARGS__)
55 #define PRINTD(name, fmt, ...)
57 #define PRINTI(name, fmt, ...) HILOG_INFO(LOG_DOMAIN, "%{public}s::%{public}s(%{public}d): " fmt, \
58 name, __FUNCTION__, __LINE__, ##__VA_ARGS__)
59 #define PRINTW(name, fm
[all...]
/foundation/distributeddatamgr/pasteboard/framework/framework/include/serializable/
H A Dserializable.h38 API_EXPORT static bool GetValue(const json node, const std::string &name, std::string &value);
39 API_EXPORT static bool GetValue(const json node, const std::string &name, uint8_t &value);
40 API_EXPORT static bool GetValue(const json node, const std::string &name, uint16_t &value);
41 API_EXPORT static bool GetValue(const json node, const std::string &name, uint32_t &value);
42 API_EXPORT static bool GetValue(const json node, const std::string &name, uint64_t &value);
43 API_EXPORT static bool GetValue(const json node, const std::string &name, int32_t &value);
44 API_EXPORT static bool GetValue(const json node, const std::string &name, int64_t &value);
45 API_EXPORT static bool GetValue(const json node, const std::string &name, bool &value);
46 API_EXPORT static bool GetValue(const json node, const std::string &name, std::vector<uint8_t> &value);
47 API_EXPORT static bool GetValue(const json node, const std::string &name, Serializabl
[all...]
/foundation/arkui/ace_engine/frameworks/base/thread/
H A Dtask_executor.h70 * @param name Name of the task.
74 Task&& task, TaskType type, const std::string& name, PriorityType priorityType = PriorityType::LOW) const in PostTask()
76 return PostDelayedTask(std::move(task), type, 0, name, priorityType); in PostTask()
84 * @param name Name of the task.
87 bool PostTask(const Task& task, TaskType type, const std::string& name, in PostTask() argument
90 return PostDelayedTask(task, type, 0, name, priorityType); in PostTask()
99 * @param name Name of the task.
102 bool PostTaskWithTraceId(Task&& task, TaskType type, int32_t id, const std::string& name) const in PostTaskWithTraceId()
105 return PostDelayedTask(std::move(wrappedTask), type, 0, name); in PostTaskWithTraceId()
114 * @param name Nam
73 PostTask( Task&& task, TaskType type, const std::string& name, PriorityType priorityType = PriorityType::LOW) const PostTask() argument
133 PostDelayedTask(Task&& task, TaskType type, uint32_t delayTime, const std::string& name, PriorityType priorityType = PriorityType::LOW) const PostDelayedTask() argument
152 PostDelayedTask(const Task& task, TaskType type, uint32_t delayTime, const std::string& name, PriorityType priorityType = PriorityType::LOW) const PostDelayedTask() argument
167 PostSyncTask( Task&& task, TaskType type, const std::string& name, PriorityType priorityType = PriorityType::IMMEDIATE) const PostSyncTask() argument
262 PostDelayedTaskWithoutTraceId(Task&& task, TaskType type, uint32_t delayTime, const std::string& name, PriorityType priorityType = PriorityType::LOW) const PostDelayedTaskWithoutTraceId() argument
304 PostTaskAndWait(CancelableTask&& task, TaskType type, const std::string& name, std::chrono::milliseconds timeoutMs = 0ms, PriorityType priorityType = PriorityType::IMMEDIATE) const PostTaskAndWait() argument
[all...]
/foundation/graphic/graphic_2d/rosen/modules/render_service_profiler/
H A Drs_profiler_capturedata.cpp42 void RSCaptureData::SetProperty(const std::string& name, const std::string& value) in SetProperty() argument
44 properties_[name] = value; in SetProperty()
47 const std::string& RSCaptureData::GetProperty(const std::string& name) const in GetProperty()
50 const auto found = properties_.find(name); in GetProperty()
54 float RSCaptureData::GetPropertyFloat(const std::string& name) const in GetPropertyFloat()
56 return Utils::ToFp32(GetProperty(name)); in GetPropertyFloat()
59 double RSCaptureData::GetPropertyDouble(const std::string& name) const in GetPropertyDouble()
61 return Utils::ToFp64(GetProperty(name)); in GetPropertyDouble()
64 int8_t RSCaptureData::GetPropertyInt8(const std::string& name) const in GetPropertyInt8()
66 return Utils::ToInt8(GetProperty(name)); in GetPropertyInt8()
[all...]
/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_toolkit/log/
H A Dwifi_logger.h30 #define DEFINE_WIFILOG_LABEL(name) \
31 static constexpr OHOS::HiviewDFX::HiLogLabel WIFI_LOG_LABEL = {LOG_CORE, OHOS::Wifi::LOG_ID_WIFI, name};
32 #define DEFINE_WIFILOG_HOTSPOT_LABEL(name) \
33 static constexpr OHOS::HiviewDFX::HiLogLabel WIFI_LOG_LABEL = {LOG_CORE, OHOS::Wifi::LOG_ID_WIFI_HOTSPOT, name};
34 #define DEFINE_WIFILOG_SCAN_LABEL(name) \
35 static constexpr OHOS::HiviewDFX::HiLogLabel WIFI_LOG_LABEL = {LOG_CORE, OHOS::Wifi::LOG_ID_WIFI_SCAN, name};
36 #define DEFINE_WIFILOG_P2P_LABEL(name) \
37 static constexpr OHOS::HiviewDFX::HiLogLabel WIFI_LOG_LABEL = {LOG_CORE, OHOS::Wifi::LOG_ID_WIFI_P2P, name};
38 #define DEFINE_WIFILOG_AWARE_LABEL(name) \
39 static constexpr OHOS::HiviewDFX::HiLogLabel WIFI_LOG_LABEL = {LOG_CORE, OHOS::Wifi::LOG_ID_WIFI_AWARE, name};
[all...]
/device/soc/rockchip/common/kernel/drivers/gpu/arm/bifrost/ipa/backend/
H A Dmali_kbase_ipa_counter_jm.c197 .name = "l2_access",
203 .name = "exec_instr_count",
209 .name = "tex_issue",
215 .name = "tile_wb",
221 .name = "gpu_active",
230 .name = "l2_access",
236 .name = "exec_instr_count",
242 .name = "tex_issue",
248 .name = "tile_wb",
254 .name
514 kbase_ipa_counter_model_ops_find( struct kbase_device *kbdev, const char *name) kbase_ipa_counter_model_ops_find() argument
[all...]
/foundation/arkui/ace_engine/frameworks/base/log/
H A Dace_trace.cpp29 char name[MAX_STRING_SIZE] = { 0 }; in AceTraceBeginWithArgv() local
30 if (vsnprintf_s(name, sizeof(name), sizeof(name) - 1, format, args) < 0) { in AceTraceBeginWithArgv()
33 AceTraceBegin(name); in AceTraceBeginWithArgv()
39 char name[MAX_STRING_SIZE] = { 0 }; in AceTraceBeginWithArgvCommercial() local
40 if (vsnprintf_s(name, sizeof(name), sizeof(name) - 1, format, args) < 0) { in AceTraceBeginWithArgvCommercial()
43 AceTraceBeginCommercial(name); in AceTraceBeginWithArgvCommercial()
58 char name[MAX_STRING_SIZE] = { 0 }; AceCountTraceWidthArgs() local
117 char name[MAX_STRING_SIZE] = { 0 }; AceAsyncTraceBeginWithArgv() local
129 std::string name = AceAsyncTraceBeginWithArgv(taskId, format, args); AceAsyncTraceBeginWithArgs() local
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_v2/common/
H A Dcommon_def.h24 #define ACE_DEFINE_COMPONENT_EVENT(name, func) \
26 std::unique_ptr<std::function<func>> event##name##_; \
28 const std::unique_ptr<std::function<func>>& Get##name() const \
30 return event##name##_; \
32 void Set##name(std::function<func>&& event##name) \
34 if (event##name) { \
35 event##name##_ = std::make_unique<std::function<func>>(std::move(event##name)); \
37 event##name##
[all...]
/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/effect/
H A Druntime_shader_builder.cpp39 void RuntimeShaderBuilder::SetChild(const std::string& name, std::shared_ptr<ShaderEffect> shader) in SetChild() argument
41 impl_->SetChild(name, shader); in SetChild()
44 void RuntimeShaderBuilder::SetUniform(const std::string& name, float val) in SetUniform() argument
46 impl_->SetUniform(name, val); in SetUniform()
49 void RuntimeShaderBuilder::SetUniform(const std::string& name, float x, float y) in SetUniform() argument
51 impl_->SetUniform(name, x, y); in SetUniform()
54 void RuntimeShaderBuilder::SetUniform(const std::string& name, float x, float y, float z) in SetUniform() argument
56 impl_->SetUniform(name, x, y, z); in SetUniform()
59 void RuntimeShaderBuilder::SetUniform(const std::string& name, float x, float y, float width, float height) in SetUniform() argument
61 impl_->SetUniform(name, in SetUniform()
64 SetUniform(const std::string& name, const float values[], size_t size) SetUniform() argument
69 SetUniform(const std::string& name, const Matrix& uniformMatrix33) SetUniform() argument
74 SetUniform(const std::string& name, const Matrix44& uniformMatrix44) SetUniform() argument
79 SetUniformVec4(const std::string& name, float x, float y, float z, float w) SetUniformVec4() argument
[all...]
/device/soc/hisilicon/hi3861v100/sdk_liteos/third_party/lwip_sack/include/lwip/priv/
H A Dtcpip_priv.h18 * 3. The name of the author may not be used to endorse or promote products
56 #define API_VAR_REF(name) (*(name))
57 #define API_VAR_DECLARE(type, name) type * name
58 #define API_VAR_ALLOC(type, pool, name, errorval) do { \
59 name = (type *)memp_malloc(pool); \
60 if (name == NULL) { \
64 #define API_VAR_ALLOC_POOL(type, pool, name, errorval) do { \
65 name
[all...]
/foundation/window/window_manager/utils/src/
H A Dsingleton_container.cpp56 void SingletonContainer::AddSingleton(const std::string& name, void* instance) in AddSingleton() argument
58 if (stringMap.find(name) == stringMap.end()) { in AddSingleton()
62 WLOGD("add %{public}s", name.c_str()); in AddSingleton()
63 stringMap[name] = nextId++; in AddSingleton()
65 WLOGFE("add failed: %{public}s", name.c_str()); in AddSingleton()
69 void SingletonContainer::SetSingleton(const std::string& name, void* instance) in SetSingleton() argument
71 if (stringMap.find(name) == stringMap.end()) { in SetSingleton()
72 AddSingleton(name, instance); in SetSingleton()
74 WLOGI("set %{public}s", name.c_str()); in SetSingleton()
75 singletonMap[stringMap[name]] in SetSingleton()
79 GetSingleton(const std::string& name) GetSingleton() argument
92 DependOn(const std::string& instance, const std::string& name) DependOn() argument
[all...]
/test/xts/tools/sample/ServerSampleE/java/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/sample/entity/
H A DOhSampleBusinessGoods.java50 @Excel(name = "商家id", width = 36)
57 @Excel(name = "商品名称", width = 100)
59 private String name; field in OhSampleBusinessGoods
64 @Excel(name = "商品封面", width = 100)
71 @Excel(name = "价格")
78 @Excel(name = "折后价格")
85 @Excel(name = "价格说明", width = 100)
92 @Excel(name = "销量", width = 10)
99 @Excel(name = "总量", width = 10)
106 @Excel(name
[all...]
/foundation/ability/idl_tool/idl_tool_2/codegen/HDI/type/
H A Dhdi_native_buffer_type_emitter.cpp57 void HdiNativeBufferTypeEmitter::EmitCWriteVar(TypeMode mode, const std::string &name, in EmitCWriteVar() argument
62 name.c_str()); in EmitCWriteVar()
63 sb.Append(prefix + TAB).AppendFormat("HDF_LOGE(\"%%{public}s: failed to write %s\", __func__);\n", name.c_str()); in EmitCWriteVar()
68 void HdiNativeBufferTypeEmitter::EmitCProxyReadVar(const std::string &name, bool isInnerType, in EmitCProxyReadVar() argument
75 sb.AppendFormat("%s = HdfSbufReadNativeBufferHandle(%s);\n", name.c_str(), replyParcelName_.c_str()); in EmitCProxyReadVar()
76 sb.Append(prefix).AppendFormat("if (%s == NULL) {\n", name.c_str()); in EmitCProxyReadVar()
77 sb.Append(prefix + TAB).AppendFormat("HDF_LOGE(\"%%{public}s: read %s failed!\", __func__);\n", name.c_str()); in EmitCProxyReadVar()
83 void HdiNativeBufferTypeEmitter::EmitCStubReadVar(const std::string &name, const std::string &gotoLabel, in EmitCStubReadVar() argument
86 sb.Append(prefix).AppendFormat("%s = HdfSbufReadNativeBufferHandle(%s);\n", name.c_str(), dataParcelName_.c_str()); in EmitCStubReadVar()
87 sb.Append(prefix).AppendFormat("if (%s == NULL) {\n", name in EmitCStubReadVar()
94 EmitCppWriteVar(const std::string &parcelName, const std::string &name, StringBuilder &sb, const std::string &prefix, unsigned int innerLevel) const EmitCppWriteVar() argument
103 EmitCppReadVar(const std::string &name, StringBuilder &sb, const std::string &prefix, TypeMode mode, unsigned int innerLevel) const EmitCppReadVar() argument
114 EmitCMarshalling(const std::string &name, StringBuilder &sb, const std::string &prefix) const EmitCMarshalling() argument
123 EmitCUnMarshalling(const std::string &name, const std::string &gotoLabel, StringBuilder &sb, const std::string &prefix, std::vector<std::string> &freeObjStatements) const EmitCUnMarshalling() argument
134 EmitCppMarshalling(const std::string &parcelName, const std::string &name, StringBuilder &sb, const std::string &prefix, unsigned int innerLevel) const EmitCppMarshalling() argument
143 EmitCppUnMarshalling(const std::string &parcelName, const std::string &name, StringBuilder &sb, const std::string &prefix, unsigned int innerLevel) const EmitCppUnMarshalling() argument
153 EmitMemoryRecycle( const std::string &name, bool ownership, StringBuilder &sb, const std::string &prefix) const EmitMemoryRecycle() argument
[all...]

Completed in 10 milliseconds

12345678910>>...306