Lines Matching refs:result
171 node_jsvm_env result;
185 result = new node_jsvm_env__(context, module_filename, module_api_version);
193 result->node_env()->AddCleanupHook(
195 static_cast<void*>(result));
197 return result;
882 jsvm_callback_scope* result) {
886 CHECK_ARG(env, result);
891 *result = node_async_context->OpenCallbackScope();
915 jsvm_async_context* result) {
918 CHECK_ARG(env, result);
942 *result = reinterpret_cast<jsvm_async_context>(async_context);
966 JSVM_Value* result) {
1005 if (result != nullptr) {
1006 *result =
1017 JSVM_Value* result) {
1019 CHECK_ARG(env, result);
1027 *result = v8impl::JsValueFromV8LocalValue(buffer);
1041 JSVM_Value* result) {
1043 CHECK_ARG(env, result);
1064 *result = v8impl::JsValueFromV8LocalValue(maybe.ToLocalChecked());
1076 JSVM_Value* result) {
1078 CHECK_ARG(env, result);
1086 *result = v8impl::JsValueFromV8LocalValue(buffer);
1097 bool* result) {
1100 CHECK_ARG(env, result);
1102 *result = node::Buffer::HasInstance(v8impl::V8LocalValueFromJsValue(value));
1126 const jsvm_node_version** result) {
1128 CHECK_ARG(env, result);
1131 *result = &version;
1216 int result = (condition); \
1217 JSVM_Status status = uvimpl::ConvertUVErrorCode(result); \
1219 return jsvm_set_last_error(env, status, result); \
1230 jsvm_async_work* result) {
1233 CHECK_ARG(env, result);
1254 *result = reinterpret_cast<jsvm_async_work>(work);
1314 jsvm_threadsafe_function* result) {
1318 CHECK_ARG(env, result);
1359 *result = reinterpret_cast<jsvm_threadsafe_function>(ts_fn);
1367 jsvm_threadsafe_function func, void** result) {
1369 CHECK_NOT_NULL(result);
1371 *result = reinterpret_cast<v8impl::ThreadSafeFunction*>(func)->Context();
1409 const char** result) {
1411 CHECK_ARG(env, result);
1413 *result = static_cast<node_jsvm_env>(env)->GetFilename();