ladybird/Userland/Libraries/LibCore
Sam Atkins a98ae8f357 LibCore: Expose file type from DirIterator
Our `find` utility makes use of the `dirent::d_type` field for filtering
results, which `Core::DirIterator` didn't expose. So, now it does. :^)

We now store the name and type of the entry as the "next" value instead
of just the name. The type is exposed as a `DirectoryEntry::Type`
instead of a `DT_FOO` constant, so that we're not tied to posixy
systems, and because proper enums are nice. :^)
2023-03-05 20:23:42 +01:00
..
Account.cpp AK: Remove StringBuilder::build() in favor of to_deprecated_string() 2023-01-27 20:38:49 +00:00
Account.h
AnonymousBuffer.cpp
AnonymousBuffer.h
ArgsParser.cpp LibCore+LibGUI+About: Use String in Core::Version and GUI::AboutDialog 2023-03-03 15:23:47 +01:00
ArgsParser.h LibCore+Userland: Remove ArgsParser::add*(Vector<char const*>&) 2023-03-01 10:47:19 +01:00
CMakeLists.txt LibCore: Expose file type from DirIterator 2023-03-05 20:23:42 +01:00
Command.cpp LibCore: Rename File to DeprecatedFile 2023-02-13 00:50:07 +00:00
Command.h
ConfigFile.cpp LibCore: Move Stream-based file into the Core namespace 2023-02-13 00:50:07 +00:00
ConfigFile.h LibCore: Remove Stream.h 2023-02-13 00:50:07 +00:00
DateTime.cpp AK: Remove StringBuilder::build() in favor of to_deprecated_string() 2023-01-27 20:38:49 +00:00
DateTime.h
Debounce.h
DeferredInvocationContext.h
DeprecatedFile.cpp LibCore: Rename File to DeprecatedFile 2023-02-13 00:50:07 +00:00
DeprecatedFile.h LibCore: Move Stream-based file into the Core namespace 2023-02-13 00:50:07 +00:00
Directory.cpp LibCore: Move Stream-based file into the Core namespace 2023-02-13 00:50:07 +00:00
Directory.h LibCore: Remove Stream.h 2023-02-13 00:50:07 +00:00
DirectoryEntry.cpp LibCore: Expose file type from DirIterator 2023-03-05 20:23:42 +01:00
DirectoryEntry.h LibCore: Expose file type from DirIterator 2023-03-05 20:23:42 +01:00
DirIterator.cpp LibCore: Expose file type from DirIterator 2023-03-05 20:23:42 +01:00
DirIterator.h LibCore: Expose file type from DirIterator 2023-03-05 20:23:42 +01:00
ElapsedTimer.cpp
ElapsedTimer.h
Event.cpp
Event.h
EventLoop.cpp LibCore: Move Stream-based sockets into the Core namespace 2023-02-13 00:50:07 +00:00
EventLoop.h
File.cpp LibCore: Move Stream-based file into the Core namespace 2023-02-13 00:50:07 +00:00
File.h LibCore: Allow MappedFile to make File leak its fd 2023-02-16 10:56:01 +00:00
FilePermissionsMask.cpp
FilePermissionsMask.h
FileWatcher.h LibCore: Allow subclassing FileWatcher 2023-01-19 11:29:48 +00:00
FileWatcherLinux.cpp LibCore+ConfigServer: Add FileWatcherFlags to replace InodeWatcherFlags 2023-01-18 09:37:11 -05:00
FileWatcherMacOS.mm LibCore: Implement FileWatcher for macOS 2023-01-19 11:29:48 +00:00
FileWatcherSerenity.cpp LibCore+ConfigServer: Add FileWatcherFlags to replace InodeWatcherFlags 2023-01-18 09:37:11 -05:00
FileWatcherUnimplemented.cpp LibCore+ConfigServer: Add FileWatcherFlags to replace InodeWatcherFlags 2023-01-18 09:37:11 -05:00
Forward.h LibCore: Forward declare MappedFile 2023-02-16 10:56:01 +00:00
GetPassword.cpp LibCore: Propagate errors in SecretString 2023-02-08 19:49:48 +01:00
GetPassword.h
Group.cpp LibCore+Utilities: Replace uses of strpbrk with find_any_of() 2023-02-25 22:31:17 +01:00
Group.h
IODevice.cpp
IODevice.h AK: Move Stream and SeekableStream from LibCore 2023-01-29 19:16:44 -07:00
LocalServer.cpp LibCore: Remove Stream.h 2023-02-13 00:50:07 +00:00
LocalServer.h LibCore: Remove Stream.h 2023-02-13 00:50:07 +00:00
LockFile.cpp
LockFile.h
MappedFile.cpp LibCore: Add MappedFile::map_from_file() 2023-02-16 10:56:01 +00:00
MappedFile.h LibCore: Add MappedFile::map_from_file() 2023-02-16 10:56:01 +00:00
MimeData.cpp LibGfx: Add scaffolding for a webp decoder 2023-02-24 19:44:20 +01:00
MimeData.h LibCore: Return StringView from guess_mime_type_based_on_filename method 2023-01-20 15:13:31 +00:00
NetworkJob.cpp Everywhere: Remove the AK:: qualifier from Stream usages 2023-02-13 00:50:07 +00:00
NetworkJob.h Everywhere: Remove the AK:: qualifier from Stream usages 2023-02-13 00:50:07 +00:00
NetworkResponse.h
Notifier.cpp
Notifier.h
Object.cpp
Object.h LibCore: Replace uses of JsonObject::get_deprecated()/get_ptr() 2023-01-26 09:57:14 -05:00
Process.cpp Everywhere: Use _{short_,}string to create Strings from literals 2023-02-25 20:51:49 +01:00
Process.h Everywhere: Use ReadonlySpan<T> instead of Span<T const> 2023-02-08 19:15:45 +00:00
ProcessStatisticsReader.cpp LibCore: Move Stream-based file into the Core namespace 2023-02-13 00:50:07 +00:00
ProcessStatisticsReader.h LibCore: Remove Stream.h 2023-02-13 00:50:07 +00:00
Promise.h
Property.cpp
Property.h
Proxy.h
SecretString.cpp LibCore: Propagate errors in SecretString 2023-02-08 19:49:48 +01:00
SecretString.h LibCore: Propagate errors in SecretString 2023-02-08 19:49:48 +01:00
SessionManagement.cpp
SessionManagement.h
SharedCircularQueue.h LibCore: Remove try_ prefix from fallible SharedCircularQueue methods 2023-01-28 22:41:36 +01:00
Socket.cpp LibCore: Implement socket credentials for Solaris 2023-03-04 21:34:54 -07:00
Socket.h Everywhere: Remove the AK:: qualifier from Stream usages 2023-02-13 00:50:07 +00:00
SocketAddress.h
SOCKSProxyClient.cpp LibCore: Move Stream-based sockets into the Core namespace 2023-02-13 00:50:07 +00:00
SOCKSProxyClient.h LibCore: Remove Stream.h 2023-02-13 00:50:07 +00:00
StandardPaths.cpp Everywhere: Use _{short_,}string to create Strings from literals 2023-02-25 20:51:49 +01:00
StandardPaths.h
System.cpp Kernel+Userland: Add support for using the PCSpeaker with various tones 2023-03-05 08:38:29 +00:00
System.h Kernel+Userland: Add support for using the PCSpeaker with various tones 2023-03-05 08:38:29 +00:00
SystemServerTakeover.cpp LibCore: Move Stream-based sockets into the Core namespace 2023-02-13 00:50:07 +00:00
SystemServerTakeover.h LibCore: Remove Stream.h 2023-02-13 00:50:07 +00:00
TCPServer.cpp LibCore: Move Stream-based sockets into the Core namespace 2023-02-13 00:50:07 +00:00
TCPServer.h LibCore: Remove Stream.h 2023-02-13 00:50:07 +00:00
TempFile.cpp LibCore: Rename File to DeprecatedFile 2023-02-13 00:50:07 +00:00
TempFile.h
Timer.cpp
Timer.h
UDPServer.cpp
UDPServer.h
UmaskScope.h
Version.cpp LibCore+LibGUI+About: Use String in Core::Version and GUI::AboutDialog 2023-03-03 15:23:47 +01:00
Version.h LibCore+LibGUI+About: Use String in Core::Version and GUI::AboutDialog 2023-03-03 15:23:47 +01:00