Home | History | Annotate | Download | only in src

Lines Matching full:value

57 ESR_ReturnCode ESR_SessionGetProperty(const LCHAR* name, void** value, VariableTypes type)
60 return ESR_Session->getProperty(ESR_Session, name, value, type);
63 ESR_SHARED_API ESR_ReturnCode ESR_SessionGetInt(const LCHAR* name, int* value)
66 return ESR_Session->getInt(ESR_Session, name, value);
69 ESR_SHARED_API ESR_ReturnCode ESR_SessionGetUint16_t(const LCHAR* name, asr_uint16_t* value)
72 return ESR_Session->getUint16_t(ESR_Session, name, value);
76 size_t* value)
79 return ESR_Session->getSize_t(ESR_Session, name, value);
82 ESR_SHARED_API ESR_ReturnCode ESR_SessionGetFloat(const LCHAR* name, float* value)
85 return ESR_Session->getFloat(ESR_Session, name, value);
88 ESR_SHARED_API ESR_ReturnCode ESR_SessionGetBool(const LCHAR* name, ESR_BOOL* value)
91 return ESR_Session->getBool(ESR_Session, name, value);
94 ESR_SHARED_API ESR_ReturnCode ESR_SessionGetLCHAR(const LCHAR* name, LCHAR* value, size_t* len)
97 return ESR_Session->getLCHAR(ESR_Session, name, value, len);
106 ESR_ReturnCode ESR_SessionSetProperty(const LCHAR* name, void* value, VariableTypes type)
109 return ESR_Session->setProperty(ESR_Session, name, value, type);
112 ESR_ReturnCode ESR_SessionSetInt(const LCHAR* name, int value)
115 return ESR_Session->setInt(ESR_Session, name, value);
118 ESR_ReturnCode ESR_SessionSetUint16_t(const LCHAR* name, asr_uint16_t value)
121 return ESR_Session->setUint16_t(ESR_Session, name, value);
124 ESR_ReturnCode ESR_SessionSetSize_t(const LCHAR* name, size_t value)
127 return ESR_Session->setSize_t(ESR_Session, name, value);
130 ESR_ReturnCode ESR_SessionSetFloat(const LCHAR* name, float value)
133 return ESR_Session->setFloat(ESR_Session, name, value);
136 ESR_ReturnCode ESR_SessionSetBool(const LCHAR* name, ESR_BOOL value)
139 return ESR_Session->setBool(ESR_Session, name, value);
142 ESR_ReturnCode ESR_SessionSetLCHAR(const LCHAR* name, LCHAR* value)
145 return ESR_Session->setLCHAR(ESR_Session, name, value);
148 ESR_ReturnCode ESR_SessionSetIntIfEmpty(const LCHAR* name, int value)
151 return ESR_Session->setIntIfEmpty(ESR_Session, name, value);
154 ESR_ReturnCode ESR_SessionSetUint16_tIfEmpty(const LCHAR* name, asr_uint16_t value)
157 return ESR_Session->setUint16_tIfEmpty(ESR_Session, name, value);
160 ESR_ReturnCode ESR_SessionSetSize_tIfEmpty(const LCHAR* name, size_t value)
163 return ESR_Session->setSize_tIfEmpty(ESR_Session, name, value);
166 ESR_ReturnCode ESR_SessionSetFloatIfEmpty(const LCHAR* name, float value)
169 return ESR_Session->setFloatIfEmpty(ESR_Session, name, value);
172 ESR_ReturnCode ESR_SessionSetBoolIfEmpty(const LCHAR* name, ESR_BOOL value)
175 return ESR_Session->setBoolIfEmpty(ESR_Session, name, value);
178 ESR_ReturnCode ESR_SessionSetLCHARIfEmpty(const LCHAR* name, LCHAR* value)
181 return ESR_Session->setLCHARIfEmpty(ESR_Session, name, value);