Lines Matching defs:ret
188 LSTATUS ret = RegQueryValueEx(hkrKey, value_name, NULL, NULL, NULL, &requiredSize);
190 if (ret != ERROR_SUCCESS) {
191 if (ret == ERROR_FILE_NOT_FOUND) {
209 ret = RegQueryValueEx(hkrKey, value_name, NULL, &data_type, (BYTE *)manifest_path, &requiredSize);
211 if (ret != ERROR_SUCCESS) {
1118 char *ret = NULL;
1150 ret = loader_instance_heap_alloc(inst, narrowPathLength, VK_SYSTEM_ALLOCATION_SCOPE_COMMAND);
1151 if (!ret) {
1156 narrowPathLength = WideCharToMultiByte(CP_ACP, 0, path, -1, ret, narrowPathLength, NULL, NULL);
1157 assert((size_t)narrowPathLength == strlen(ret) + 1);
1162 return ret;