Lines Matching defs:value
30 pValue->value.uName = uValue; \
69 ParamEntry* CreateParamEntry(const char* name, ParamValue* value)
74 entry->value = value;
89 void DestroyParamValue(ParamValue* value)
91 if (value != NULL) {
92 free(value);
99 DestroyParamValue(entry->value);
115 ParamList AddParamValue(ParamList list, const char* name, ParamValue* value)
118 if (value == NULL) {
124 ParamEntry* entry = CreateParamEntry(name, value);
126 DestroyParamValue(value);
139 DestroyParamValue(value);
142 ParamEntry* entry = CreateParamEntry(name, value);
144 DestroyParamValue(value);
288 bool OH_HiAppEvent_Configure(const char* name, const char* value)
290 return HiAppEventInnerConfigure(name, value);
371 int OH_HiAppEvent_SetCustomConfig(struct HiAppEvent_Processor* processor, const char* key, const char* value)
373 return SetCustomConfig(processor, key, value);