• Home
  • Raw
  • Download

Lines Matching refs:name

50   ESR_ReturnCode(*getProperty)(const LCHAR* name, void** value, VariableTypes type);
57 ESR_ReturnCode(*getPropertyType)(const LCHAR* name, VariableTypes* type);
64 ESR_ReturnCode(*getInt)(const LCHAR* name, int* value);
71 ESR_ReturnCode(*getUint16_t)(const LCHAR* name, asr_uint16_t* value);
78 ESR_ReturnCode(*getSize_t)(const LCHAR* name, size_t* value);
85 ESR_ReturnCode(*getFloat)(const LCHAR* name, float* value);
92 ESR_ReturnCode(*getBool)(const LCHAR* name, ESR_BOOL* value);
101 ESR_ReturnCode(*getLCHAR)(const LCHAR* name, LCHAR* value, size_t* len);
108 ESR_ReturnCode(*contains)(const LCHAR* name, ESR_BOOL* exists);
116 ESR_ReturnCode(*setProperty)(const LCHAR* name, void* value, VariableTypes type);
123 ESR_ReturnCode(*setInt)(const LCHAR* name, int value);
130 ESR_ReturnCode(*setUint16_t)(const LCHAR* name, asr_uint16_t value);
137 ESR_ReturnCode(*setSize_t)(const LCHAR* name, size_t value);
144 ESR_ReturnCode(*setFloat)(const LCHAR* name, float value);
151 ESR_ReturnCode(*setBool)(const LCHAR* name, ESR_BOOL value);
158 ESR_ReturnCode(*setLCHAR)(const LCHAR* name, LCHAR* value);
168 ESR_ReturnCode(*setIntIfEmpty)(const LCHAR* name, int value);
178 ESR_ReturnCode(*setUint16_tIfEmpty)(const LCHAR* name, asr_uint16_t value);
188 ESR_ReturnCode(*setSize_tIfEmpty)(const LCHAR* name, size_t value);
198 ESR_ReturnCode(*setFloatIfEmpty)(const LCHAR* name, float value);
208 ESR_ReturnCode(*setBoolIfEmpty)(const LCHAR* name, ESR_BOOL value);
218 ESR_ReturnCode(*setLCHARIfEmpty)(const LCHAR* name, LCHAR* value);
224 ESR_ReturnCode(*removeProperty)(const LCHAR* name);
230 ESR_ReturnCode(*removeAndFreeProperty)(const LCHAR* name);
337 ESR_SHARED_API ESR_ReturnCode ESR_SessionGetProperty(const LCHAR* name, void** value,
346 ESR_SHARED_API ESR_ReturnCode ESR_SessionGetInt(const LCHAR* name, int* value);
354 ESR_SHARED_API ESR_ReturnCode ESR_SessionGetUint16_t(const LCHAR* name, asr_uint16_t* value);
362 ESR_SHARED_API ESR_ReturnCode ESR_SessionGetSize_t(const LCHAR* name, size_t* value);
370 ESR_SHARED_API ESR_ReturnCode ESR_SessionGetFloat(const LCHAR* name, float* value);
378 ESR_SHARED_API ESR_ReturnCode ESR_SessionGetBool(const LCHAR* name, ESR_BOOL* value);
388 ESR_SHARED_API ESR_ReturnCode ESR_SessionGetLCHAR(const LCHAR* name, LCHAR* value, size_t* len);
396 ESR_SHARED_API ESR_ReturnCode ESR_SessionContains(const LCHAR* name, ESR_BOOL* exists);
405 ESR_SHARED_API ESR_ReturnCode ESR_SessionSetProperty(const LCHAR* name, void* value,
414 ESR_SHARED_API ESR_ReturnCode ESR_SessionSetInt(const LCHAR* name, int value);
422 ESR_SHARED_API ESR_ReturnCode ESR_SessionSetUint16_t(const LCHAR* name, asr_uint16_t value);
430 ESR_SHARED_API ESR_ReturnCode ESR_SessionSetSize_t(const LCHAR* name, size_t value);
438 ESR_SHARED_API ESR_ReturnCode ESR_SessionSetFloat(const LCHAR* name, float value);
446 ESR_SHARED_API ESR_ReturnCode ESR_SessionSetBool(const LCHAR* name, ESR_BOOL value);
454 ESR_SHARED_API ESR_ReturnCode ESR_SessionSetLCHAR(const LCHAR* name, LCHAR* value);
462 ESR_SHARED_API ESR_ReturnCode ESR_SessionSetIntIfEmpty(const LCHAR* name, int value);
470 ESR_SHARED_API ESR_ReturnCode ESR_SessionSetUint16_tIfEmpty(const LCHAR* name, asr_uint16_t value);
478 ESR_SHARED_API ESR_ReturnCode ESR_SessionSetSize_tIfEmpty(const LCHAR* name, size_t value);
486 ESR_SHARED_API ESR_ReturnCode ESR_SessionSetFloatIfEmpty(const LCHAR* name, float value);
494 ESR_SHARED_API ESR_ReturnCode ESR_SessionSetBoolIfEmpty(const LCHAR* name, ESR_BOOL value);
502 ESR_SHARED_API ESR_ReturnCode ESR_SessionSetLCHARIfEmpty(const LCHAR* name, LCHAR* value);
509 ESR_SHARED_API ESR_ReturnCode ESR_SessionRemoveProperty(const LCHAR* name);
516 ESR_SHARED_API ESR_ReturnCode ESR_SessionRemoveAndFreeProperty(const LCHAR* name);
613 ESR_SHARED_API ESR_ReturnCode ESR_SessionGetPropertyType(const LCHAR* name, VariableTypes* type);