Lines Matching refs:System
161 // bail out of the System() function early. If you don't ever do a waitpid on
195 "os.system(): String conversion of program name failed";
210 "os.system(): String conversion of argument failed.";
239 // Gets the optional timeouts from the arguments to the system() call.
247 ThrowException(String::New("system: Argument 4 must be a number"));
255 ThrowException(String::New("system: Argument 3 must be a number"));
455 // Implementation of the system() function (see d8.h for details).
456 Handle<Value> Shell::System(const Arguments& args) {
464 return ThrowException(String::New("system: Argument 2 must be an array"));
471 return ThrowException(String::New("Too many arguments to system()"));
474 return ThrowException(String::New("Too few arguments to system()"));
667 os_templ->Set(String::New("system"), FunctionTemplate::New(System));