Home | History | Annotate | Download | only in src

Lines Matching refs:Arguments

183 // A utility class that takes the array of command arguments and puts then in an
240 // Gets the optional timeouts from the arguments to the system() call.
241 static bool GetTimeouts(const Arguments& args,
451 Handle<Value> Shell::System(const Arguments& args) {
466 return ThrowException(String::New("Too many arguments to system()"));
469 return ThrowException(String::New("Too few arguments to system()"));
525 Handle<Value> Shell::ChangeDirectory(const Arguments& args) {
542 Handle<Value> Shell::SetUMask(const Arguments& args) {
601 Handle<Value> Shell::MakeDirectory(const Arguments& args) {
611 const char* message = "mkdirp() takes one or two arguments";
624 Handle<Value> Shell::RemoveDirectory(const Arguments& args) {
626 const char* message = "rmdir() takes one or two arguments";
639 Handle<Value> Shell::SetEnvironment(const Arguments& args) {
641 const char* message = "setenv() takes two arguments";
661 Handle<Value> Shell::UnsetEnvironment(const Arguments& args) {