mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-11 18:20:43 +09:00
Everywhere: Run clang-format
This commit is contained in:
parent
0376c127f6
commit
086969277e
Notes:
sideshowbarker
2024-07-17 16:21:09 +09:00
Author: https://github.com/IdanHo
Commit: 086969277e
Pull-request: https://github.com/SerenityOS/serenity/pull/12321
Reviewed-by: https://github.com/BertalanD
Reviewed-by: https://github.com/bgianfo ✅
1665 changed files with 8479 additions and 8479 deletions
|
@ -113,7 +113,7 @@ public:
|
|||
ErrorOr<void> append(int type, FlatPtr arg1, FlatPtr arg2, StringView arg3, Thread* current_thread = Thread::current(), FlatPtr arg4 = 0, u64 arg5 = 0, ErrorOr<FlatPtr> arg6 = 0);
|
||||
ErrorOr<void> append_with_ip_and_bp(ProcessID pid, ThreadID tid, FlatPtr eip, FlatPtr ebp,
|
||||
int type, u32 lost_samples, FlatPtr arg1, FlatPtr arg2, StringView arg3, FlatPtr arg4 = 0, u64 arg5 = {}, ErrorOr<FlatPtr> arg6 = 0);
|
||||
ErrorOr<void> append_with_ip_and_bp(ProcessID pid, ThreadID tid, const RegisterState& regs,
|
||||
ErrorOr<void> append_with_ip_and_bp(ProcessID pid, ThreadID tid, RegisterState const& regs,
|
||||
int type, u32 lost_samples, FlatPtr arg1, FlatPtr arg2, StringView arg3, FlatPtr arg4 = 0, u64 arg5 = {}, ErrorOr<FlatPtr> arg6 = 0);
|
||||
|
||||
void clear()
|
||||
|
@ -123,14 +123,14 @@ public:
|
|||
|
||||
size_t capacity() const { return m_buffer->size() / sizeof(PerformanceEvent); }
|
||||
size_t count() const { return m_count; }
|
||||
const PerformanceEvent& at(size_t index) const
|
||||
PerformanceEvent const& at(size_t index) const
|
||||
{
|
||||
return const_cast<PerformanceEventBuffer&>(*this).at(index);
|
||||
}
|
||||
|
||||
ErrorOr<void> to_json(KBufferBuilder&) const;
|
||||
|
||||
ErrorOr<void> add_process(const Process&, ProcessEventType event_type);
|
||||
ErrorOr<void> add_process(Process const&, ProcessEventType event_type);
|
||||
|
||||
ErrorOr<FlatPtr> register_string(NonnullOwnPtr<KString>);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue