mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 04:27:45 +00:00
Kernel: Replace KResult and KResultOr<T> with Error and ErrorOr<T>
We now use AK::Error and AK::ErrorOr<T> in both kernel and userspace! This was a slightly tedious refactoring that took a long time, so it's not unlikely that some bugs crept in. Nevertheless, it does pass basic functionality testing, and it's just real nice to finally see the same pattern in all contexts. :^)
This commit is contained in:
parent
7ee10c6926
commit
79fa9765ca
262 changed files with 2415 additions and 2600 deletions
|
@ -16,14 +16,14 @@ class KString {
|
|||
AK_MAKE_NONMOVABLE(KString);
|
||||
|
||||
public:
|
||||
[[nodiscard]] static KResultOr<NonnullOwnPtr<KString>> try_create_uninitialized(size_t, char*&);
|
||||
[[nodiscard]] static ErrorOr<NonnullOwnPtr<KString>> try_create_uninitialized(size_t, char*&);
|
||||
[[nodiscard]] static NonnullOwnPtr<KString> must_create_uninitialized(size_t, char*&);
|
||||
[[nodiscard]] static KResultOr<NonnullOwnPtr<KString>> try_create(StringView);
|
||||
[[nodiscard]] static ErrorOr<NonnullOwnPtr<KString>> try_create(StringView);
|
||||
[[nodiscard]] static NonnullOwnPtr<KString> must_create(StringView);
|
||||
|
||||
void operator delete(void*);
|
||||
|
||||
KResultOr<NonnullOwnPtr<KString>> try_clone() const;
|
||||
ErrorOr<NonnullOwnPtr<KString>> try_clone() const;
|
||||
|
||||
[[nodiscard]] bool is_empty() const { return m_length == 0; }
|
||||
[[nodiscard]] size_t length() const { return m_length; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue