Go to the source code of this file.
◆ RETURN_ERROR_HANDLE
| #define RETURN_ERROR_HANDLE |
( |
|
handle | ) |
|
Value: if (Dart_IsError(handle)) { \
return handle; \
}
Definition at line 18 of file dart_service_isolate.cc.
19 { \
20 return handle; \
21 }
◆ SHUTDOWN_ON_ERROR
| #define SHUTDOWN_ON_ERROR |
( |
|
handle | ) |
|
Value: if (Dart_IsError(handle)) { \
Dart_ExitScope(); \
Dart_ShutdownIsolate(); \
return false; \
}
const uint8_t uint32_t uint32_t GError ** error
char * strdup(const char *str1)
Definition at line 23 of file dart_service_isolate.cc.
24 { \
26 Dart_ExitScope(); \
27 Dart_ShutdownIsolate(); \
28 return false; \
29 }