Lines Matching refs:TTYWrap
45 void TTYWrap::RegisterExternalReferences(ExternalReferenceRegistry* registry) {
52 void TTYWrap::Initialize(Local<Object> target,
67 isolate, t, "getWindowSize", TTYWrap::GetWindowSize);
80 void TTYWrap::IsTTY(const FunctionCallbackInfo<Value>& args) {
90 void TTYWrap::GetWindowSize(const FunctionCallbackInfo<Value>& args) {
93 TTYWrap* wrap;
112 void TTYWrap::SetRawMode(const FunctionCallbackInfo<Value>& args) {
113 TTYWrap* wrap;
122 void TTYWrap::New(const FunctionCallbackInfo<Value>& args) {
135 new TTYWrap(env, args.This(), fd, &err);
143 TTYWrap::TTYWrap(Environment* env,
159 NODE_BINDING_CONTEXT_AWARE_INTERNAL(tty_wrap, node::TTYWrap::Initialize)
161 node::TTYWrap::RegisterExternalReferences)