Lines Matching defs:const
33 static const int kUtf8SingleByteMask = 0x80;
34 static const int kUtf8SingleByteValue = 0x00;
36 static const int kUtf8TwoByteMask = 0xE0;
37 static const int kUtf8TwoByteValue = 0xC0;
39 static const int kUtf8ThreeByteMask = 0xF0;
40 static const int kUtf8ThreeByteValue = 0xE0;
42 static const int kUtf8FourByteMask = 0xF8;
43 static const int kUtf8FourByteValue = 0xF0;
45 static const int kMultiByteMask = 0xC0;
46 static const int kMultiByteValue = 0x80;
83 const struct timeval& start_time) {
113 static bool TimeIsOut(const struct timeval& start_time, const int& total_time) {
204 static const unsigned kMaxArgs = 1000;
205 char* const* arg_array() const { return exec_args_; }
206 const char* arg0() const { return exec_args_[0]; }
213 static bool GetTimeouts(const v8::FunctionCallbackInfo<v8::Value>& args,
244 static const int kReadFD = 0;
245 static const int kWriteFD = 1;
251 const ExecArgs& exec_args) {
287 const struct timeval& start_time,
292 static const int kStdoutReadBufferSize = 4096;
351 const struct timeval& start_time, int read_timeout,
414 void Shell::System(const v8::FunctionCallbackInfo<v8::Value>& args) {
489 void Shell::ChangeDirectory(const v8::FunctionCallbackInfo<v8::Value>& args) {
506 void Shell::SetUMask(const v8::FunctionCallbackInfo<v8::Value>& args) {
563 void Shell::MakeDirectory(const v8::FunctionCallbackInfo<v8::Value>& args) {
587 void Shell::RemoveDirectory(const v8::FunctionCallbackInfo<v8::Value>& args) {
601 void Shell::SetEnvironment(const v8::FunctionCallbackInfo<v8::Value>& args) {
621 void Shell::UnsetEnvironment(const v8::FunctionCallbackInfo<v8::Value>& args) {
635 char* Shell::ReadCharsFromTcpPort(const char* name, int* size_out) {