Lines Matching defs: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"));
457 // Implementation of the system() function (see d8.h for details).
458 Handle<Value> Shell::System(const Arguments& args) {
466 return ThrowException(String::New("system: Argument 2 must be an array"));
473 return ThrowException(String::New("Too many arguments to system()"));
476 return ThrowException(String::New("Too few arguments to system()"));
685 os_templ->Set(String::New("system"), FunctionTemplate::New(System));