Lines Matching refs:Name
51 // Specify the name of the logfile, default is "v8.log".
94 V(SNAPSHOT_CODE_NAME_EVENT, "snapshot-code-name") \
176 // Emits an event with a string value -> (name, value).
177 void StringEvent(const char* name, const char* value);
179 // Emits an event with an int value -> (name, value).
180 void IntEvent(const char* name, int value);
181 void IntPtrTEvent(const char* name, intptr_t value);
183 // Emits an event with an handle value -> (name, location).
184 void HandleEvent(const char* name, Object** location);
187 void NewEvent(const char* name, void* object, size_t size);
188 void DeleteEvent(const char* name, void* object);
191 // -> (name, tag, <rusage information>).
194 void ResourceEvent(const char* name, const char* tag);
198 void SuspectReadEvent(Name* name, Object* obj);
208 void ApiNamedPropertyAccess(const char* tag, JSObject* holder, Object* name);
213 void ApiEntryCall(const char* name);
223 void CallbackEvent(Name* name, Address entry_point);
224 void GetterCallbackEvent(Name* name, Address entry_point);
225 void SetterCallbackEvent(Name* name, Address entry_point);
230 Code* code, Name* name);
235 Name* name);
240 Name* source, int line, int column);
291 void TimerEvent(StartEnd se, const char* name);
296 static void DefaultEventLoggerSentinel(const char* name, int event) {}
298 INLINE(static void CallEventLogger(Isolate* isolate, const char* name,
351 Name* name,
360 // Helper method. It resets name_buffer_ and add tag name into it.
366 void ApiEvent(const char* name, ...);
369 void UncheckedStringEvent(const char* name, const char* value);
372 void UncheckedIntEvent(const char* name, int value);
373 void UncheckedIntPtrTEvent(const char* name, intptr_t value);
425 static const char* name(void* unused = NULL) { return "V8." #TimerName; } \
457 Name* name) = 0;
462 Name* name) = 0;
467 Name* source,
472 virtual void CallbackEvent(Name* name, Address entry_point) = 0;
473 virtual void GetterCallbackEvent(Name* name, Address entry_point) = 0;
474 virtual void SetterCallbackEvent(Name* name, Address entry_point) = 0;
494 Name* name);
502 Name* name);
507 Name* source,
511 virtual void CallbackEvent(Name* name, Address entry_point) { }
512 virtual void GetterCallbackEvent(Name* name, Address entry_point) { }
513 virtual void SetterCallbackEvent(Name* name, Address entry_point) { }
522 const char* name,