Lines Matching refs:result
70 Local<String> result) {
71 int ret = WriteFileSync(env->isolate(), path, result);
78 Debug(env, DebugCategory::INSPECTOR_PROFILER, "Written result to %s\n", path);
110 fprintf(stderr, "Failed to parse %s profile result as JSON object\n", type);
137 // Get message.result from the response.
139 if (!response->Get(context, FIXED_ONE_BYTE_STRING(isolate, "result"))
141 fprintf(stderr, "Failed to get 'result' from %s profile response\n", type);
147 stderr, "'result' from %s profile response is not an object\n", type);
181 void V8ProfilerConnection::WriteProfile(Local<Object> result) {
186 if (!GetProfile(result).ToLocal(&profile)) {
192 fprintf(stderr, "Failed to stringify %s profile result\n", type());
210 void V8CoverageConnection::WriteProfile(Local<Object> result) {
228 if (!GetProfile(result).ToLocal(&profile)) {
257 fprintf(stderr, "Failed to stringify %s profile result\n", type());
275 MaybeLocal<Object> V8CoverageConnection::GetProfile(Local<Object> result) {
276 return result;
316 MaybeLocal<Object> V8CpuProfilerConnection::GetProfile(Local<Object> result) {
318 if (!result
322 fprintf(stderr, "'profile' from CPU profile result is undefined\n");
326 fprintf(stderr, "'profile' from CPU profile result is not an Object\n");
360 MaybeLocal<Object> V8HeapProfilerConnection::GetProfile(Local<Object> result) {
362 if (!result
366 fprintf(stderr, "'profile' from heap profile result is undefined\n");
370 fprintf(stderr, "'profile' from heap profile result is not an Object\n");