Lines Matching refs:object
113 ChildProcess* object = nullptr; in Wait() local
114 NAPI_CALL(env, napi_unwrap(env, thisVar, reinterpret_cast<void**>(&object))); in Wait()
115 napi_value result = object->Wait(env); in Wait()
125 ChildProcess* object = nullptr; in GetOutput() local
126 NAPI_CALL(env, napi_unwrap(env, thisVar, reinterpret_cast<void**>(&object))); in GetOutput()
127 napi_value result = object->GetOutput(env); in GetOutput()
137 ChildProcess* object = nullptr; in Close() local
138 NAPI_CALL(env, napi_unwrap(env, thisVar, reinterpret_cast<void**>(&object))); in Close()
139 object->Close(); in Close()
151 ChildProcess* object = nullptr; in GetErrorOutput() local
152 NAPI_CALL(env, napi_unwrap(env, thisVar, reinterpret_cast<void**>(&object))); in GetErrorOutput()
154 napi_value result = object->GetErrorOutput(env); in GetErrorOutput()
175 ChildProcess* object = nullptr; in Kill() local
176 NAPI_CALL(env, napi_unwrap(env, thisVar, reinterpret_cast<void**>(&object))); in Kill()
177 object->Kill(env, args); in Kill()
189 ChildProcess* object = nullptr; in GetKilled() local
190 NAPI_CALL(env, napi_unwrap(env, thisVar, reinterpret_cast<void**>(&object))); in GetKilled()
191 napi_value result = object->GetKilled(env); in GetKilled()
201 ChildProcess* object = nullptr; in Getpid() local
202 NAPI_CALL(env, napi_unwrap(env, thisVar, reinterpret_cast<void**>(&object))); in Getpid()
203 napi_value result = object->Getpid(env); in Getpid()
213 ChildProcess* object = nullptr; in Getppid() local
214 NAPI_CALL(env, napi_unwrap(env, thisVar, reinterpret_cast<void**>(&object))); in Getppid()
215 napi_value result = object->Getppid(env); in Getppid()
225 ChildProcess* object = nullptr; in GetExitCode() local
226 NAPI_CALL(env, napi_unwrap(env, thisVar, reinterpret_cast<void**>(&object))); in GetExitCode()
227 napi_value result = object->GetExitCode(env); in GetExitCode()
266 Process object; in GetUid() local
267 return object.GetUid(env); in GetUid()
272 Process object; in GetGid() local
273 return object.GetGid(env); in GetGid()
278 Process object; in GetEUid() local
279 return object.GetEUid(env); in GetEUid()
284 Process object; in GetEGid() local
285 return object.GetEGid(env); in GetEGid()
290 Process object; in GetGroups() local
291 return object.GetGroups(env); in GetGroups()
296 Process object; in GetPid() local
297 return object.GetPid(env); in GetPid()
302 Process object; in GetPpid() local
303 return object.GetPpid(env); in GetPpid()
317 Process object; in Chdir() local
318 object.Chdir(env, args); in Chdir()
326 Process object; in Abort() local
327 object.Abort(); in Abort()
335 Process object; in Cwd() local
336 return object.Cwd(env); in Cwd()
348 Process object; in Exit() local
349 object.Exit(env, args); in Exit()
373 Process object; in On() local
374 object.On(env, args[0], args[1]); in On()
385 Process object; in Off() local
386 napi_value result = object.Off(env, args); in Off()
392 Process object; in Uptime() local
393 return object.Uptime(env); in Uptime()
403 Process object; in KillSig() local
405 result = object.Kill(env, argv[0], argv[1]); in KillSig()
410 Process object; in GetTid() local
411 return object.GetTid(env); in GetTid()
416 Process object; in IsIsolatedProcess() local
417 return object.IsIsolatedProcess(env); in IsIsolatedProcess()
429 Process object; in IsAppUid() local
430 return object.IsAppUid(env, args); in IsAppUid()
435 Process object; in Is64Bit() local
436 return object.Is64Bit(env); in Is64Bit()
448 Process object; in GetUidForName() local
449 return object.GetUidForName(env, args); in GetUidForName()
461 Process object; in GetThreadPriority() local
462 return object.GetThreadPriority(env, args); in GetThreadPriority()
467 Process object; in GetStartRealtime() local
468 return object.GetStartRealtime(env); in GetStartRealtime()
473 Process object; in GetPastCputime() local
474 return object.GetPastCputime(env); in GetPastCputime()
486 Process object; in GetSystemConfig() local
487 return object.GetSystemConfig(env, args); in GetSystemConfig()
499 Process object; in GetEnvironmentVar() local
500 return object.GetEnvironmentVar(env, args); in GetEnvironmentVar()
505 Process object; in Init() local
506 object.SetRejectionCallback(env); in Init()