Lines Matching defs:status
253 LSTATUS status = RegOpenKeyExW(root, subkey, 0, flags, &core_root);
266 if (status != ERROR_SUCCESS)
272 status = RegEnumKeyW(core_root, i, ip_version, IP_VERSION_SIZE);
273 if (status != ERROR_SUCCESS) {
274 if (status != ERROR_NO_MORE_ITEMS) {
276 winerror(status, message, MSGSIZE);
295 status = RegOpenKeyExW(root, ip_path, 0, flags, &ip_key);
296 if (status != ERROR_SUCCESS) {
297 winerror(status, message, MSGSIZE);
305 status = RegQueryValueExW(ip_key, EXECUTABLEPATH_VALUE, NULL, &type,
308 status = ERROR_FILE_NOT_FOUND; /* actual error doesn't matter */
310 if (status != ERROR_SUCCESS || type != REG_SZ || !data_size) {
313 status = RegQueryValueExW(ip_key, NULL, NULL, &type,
315 if (status != ERROR_SUCCESS) {
316 winerror(status, message, MSGSIZE);