Home | History | Annotate | Download | only in src

Lines Matching full:static

47   static const int kMaxNameSize = 64;
70 static const unsigned kMaxCounters = 256;
112 static int Hash(const char* name);
113 static bool Match(void* key1, void* key2);
131 static LineEditor* Get();
136 static LineEditor* first_;
181 static i::Thread::Options GetThreadOptions();
267 static bool ExecuteString(Handle<String> source,
271 static const char* ToCString(const v8::String::Utf8Value& value);
272 static void ReportException(TryCatch* try_catch);
273 static Handle<String> ReadFile(const char* name);
274 static Persistent<Context> CreateEvaluationContext();
275 static int RunMain(int argc, char* argv[]);
276 static int Main(int argc, char* argv[]);
277 static void Exit(int exit_code);
280 static Handle<Array> GetCompletions(Handle<String> text,
282 static void OnExit();
283 static int* LookupCounter(const char* name);
284 static void* CreateHistogram(const char* name,
288 static void AddHistogramSample(void* histogram, int sample);
289 static void MapCounters(const char* name);
292 static Handle<Object> DebugMessageDetails(Handle<String> message);
293 static Handle<Value> DebugCommandToJSONRequest(Handle<String> command);
294 static void DispatchDebugMessages();
302 static Handle<Value> Print(const Arguments& args);
303 static Handle<Value> Write(const Arguments& args);
304 static Handle<Value> Yield(const Arguments& args);
305 static Handle<Value> Quit(const Arguments& args);
306 static Handle<Value> Version(const Arguments& args);
307 static Handle<Value> EnableProfiler(const Arguments& args);
308 static Handle<Value> DisableProfiler(const Arguments& args);
309 static Handle<Value> Read(const Arguments& args);
310 static Handle<Value> ReadBinary(const Arguments& args);
311 static Handle<String> ReadFromStdin();
312 static Handle<Value> ReadLine(const Arguments& args) {
315 static Handle<Value> Load(const Arguments& args);
316 static Handle<Value> ArrayBuffer(const Arguments& args);
317 static Handle<Value> Int8Array(const Arguments& args);
318 static Handle<Value> Uint8Array(const Arguments& args);
319 static Handle<Value> Int16Array(const Arguments& args);
320 static Handle<Value> Uint16Array(const Arguments& args);
321 static Handle<Value> Int32Array(const Arguments& args);
322 static Handle<Value> Uint32Array(const Arguments& args);
323 static Handle<Value> Float32Array(const Arguments& args);
324 static Handle<Value> Float64Array(const Arguments& args);
325 static Handle<Value> PixelArray(const Arguments& args);
352 static Handle<Value> OSObject(const Arguments& args);
353 static Handle<Value> System(const Arguments& args);
354 static Handle<Value> ChangeDirectory(const Arguments& args);
355 static Handle<Value> SetEnvironment(const Arguments& args);
356 static Handle<Value> UnsetEnvironment(const Arguments& args);
357 static Handle<Value> SetUMask(const Arguments& args);
358 static Handle<Value> MakeDirectory(const Arguments& args);
359 static Handle<Value> RemoveDirectory(const Arguments& args);
361 static void AddOSMethods(Handle<ObjectTemplate> os_template);
363 static LineEditor* console;
364 static const char* kPrompt;
365 static ShellOptions options;
368 static Persistent<Context> evaluation_context_;
370 static Persistent<Context> utility_context_;
371 static CounterMap* counter_map_;
374 static CounterCollection local_counters_;
375 static CounterCollection* counters_;
376 static i::OS::MemoryMappedFile* counters_file_;
377 static i::Mutex* context_mutex_;
379 static Counter* GetCounter(const char* name, bool is_histogram);
380 static void InstallUtilityScript();
382 static void Initialize();
383 static void RunShell();
384 static bool SetOptions(int argc, char* argv[]);
385 static Handle<ObjectTemplate> CreateGlobalTemplate();
386 static Handle<Value> CreateExternalArray(const Arguments& args,
389 static void ExternalArrayWeakCallback(Persistent<Value> object, void* data);