Lines Matching full:external_function
466 Redirection(Isolate* isolate, void* external_function,
468 : external_function_(external_function), type_(type), next_(NULL) {
481 T external_function() { return reinterpret_cast<T>(external_function_); }
485 static Redirection* Get(Isolate* isolate, void* external_function,
489 if (current->external_function_ == external_function) {
494 return new Redirection(isolate, external_function, type);
507 return redirection->external_function<void*>();
575 int64_t external = redirection->external_function<int64_t>();
578 redirection->external_function<void*>());
782 void* external_function,
784 Redirection* redirection = Redirection::Get(isolate, external_function, type);