LibCore: Remove leading C from filenames
This commit is contained in:
parent
7415e6ef9f
commit
d17e23bd27
Notes:
sideshowbarker
2024-07-19 09:34:07 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/d17e23bd27e
214 changed files with 361 additions and 361 deletions
|
@ -26,7 +26,7 @@
|
|||
|
||||
#include "History.h"
|
||||
#include "InspectorWidget.h"
|
||||
#include <LibCore/CFile.h>
|
||||
#include <LibCore/File.h>
|
||||
#include <LibGUI/GAboutDialog.h>
|
||||
#include <LibGUI/GAction.h>
|
||||
#include <LibGUI/GApplication.h>
|
||||
|
|
|
@ -28,9 +28,9 @@
|
|||
#include <AK/JsonArray.h>
|
||||
#include <AK/JsonObject.h>
|
||||
#include <AK/JsonValue.h>
|
||||
#include <LibCore/CHttpRequest.h>
|
||||
#include <LibCore/CNetworkJob.h>
|
||||
#include <LibCore/CNetworkResponse.h>
|
||||
#include <LibCore/HttpRequest.h>
|
||||
#include <LibCore/NetworkJob.h>
|
||||
#include <LibCore/NetworkResponse.h>
|
||||
#include <stdio.h>
|
||||
|
||||
BoardListModel::BoardListModel()
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
#pragma once
|
||||
|
||||
#include <AK/JsonArray.h>
|
||||
#include <LibCore/CHttpJob.h>
|
||||
#include <LibCore/HttpJob.h>
|
||||
#include <LibGUI/GModel.h>
|
||||
|
||||
class BoardListModel final : public GUI::Model {
|
||||
|
|
|
@ -28,9 +28,9 @@
|
|||
#include <AK/JsonArray.h>
|
||||
#include <AK/JsonObject.h>
|
||||
#include <AK/JsonValue.h>
|
||||
#include <LibCore/CHttpRequest.h>
|
||||
#include <LibCore/CNetworkJob.h>
|
||||
#include <LibCore/CNetworkResponse.h>
|
||||
#include <LibCore/HttpRequest.h>
|
||||
#include <LibCore/NetworkJob.h>
|
||||
#include <LibCore/NetworkResponse.h>
|
||||
#include <stdio.h>
|
||||
|
||||
ThreadCatalogModel::ThreadCatalogModel()
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
#pragma once
|
||||
|
||||
#include <AK/JsonArray.h>
|
||||
#include <LibCore/CHttpJob.h>
|
||||
#include <LibCore/HttpJob.h>
|
||||
#include <LibGUI/GModel.h>
|
||||
|
||||
class ThreadCatalogModel final : public GUI::Model {
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
#include "DisplayProperties.h"
|
||||
#include "ItemListModel.h"
|
||||
#include <AK/StringBuilder.h>
|
||||
#include <LibCore/CDirIterator.h>
|
||||
#include <LibCore/DirIterator.h>
|
||||
#include <LibGUI/GAction.h>
|
||||
#include <LibGUI/GApplication.h>
|
||||
#include <LibGUI/GBoxLayout.h>
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
#include <AK/RefPtr.h>
|
||||
#include <AK/String.h>
|
||||
#include <AK/Vector.h>
|
||||
#include <LibCore/CConfigFile.h>
|
||||
#include <LibCore/ConfigFile.h>
|
||||
#include <LibGfx/Color.h>
|
||||
#include <LibGfx/Size.h>
|
||||
#include <LibGUI/GWidget.h>
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
#include "FileUtils.h"
|
||||
#include <AK/FileSystemPath.h>
|
||||
#include <AK/StringBuilder.h>
|
||||
#include <LibCore/CDirIterator.h>
|
||||
#include <LibCore/DirIterator.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <sys/stat.h>
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
#pragma once
|
||||
|
||||
#include <AK/FileSystemPath.h>
|
||||
#include <LibCore/CFile.h>
|
||||
#include <LibCore/File.h>
|
||||
#include <LibGUI/GButton.h>
|
||||
#include <LibGUI/GDialog.h>
|
||||
#include <LibGUI/GFileSystemModel.h>
|
||||
|
|
|
@ -29,8 +29,8 @@
|
|||
#include "PropertiesDialog.h"
|
||||
#include <AK/FileSystemPath.h>
|
||||
#include <AK/StringBuilder.h>
|
||||
#include <LibCore/CConfigFile.h>
|
||||
#include <LibCore/CUserInfo.h>
|
||||
#include <LibCore/ConfigFile.h>
|
||||
#include <LibCore/UserInfo.h>
|
||||
#include <LibGUI/GAboutDialog.h>
|
||||
#include <LibGUI/GAction.h>
|
||||
#include <LibGUI/GActionGroup.h>
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include "ManualPageNode.h"
|
||||
#include <AK/FileSystemPath.h>
|
||||
#include <AK/String.h>
|
||||
#include <LibCore/CDirIterator.h>
|
||||
#include <LibCore/DirIterator.h>
|
||||
|
||||
String ManualSectionNode::path() const
|
||||
{
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
|
||||
#include "History.h"
|
||||
#include "ManualModel.h"
|
||||
#include <LibCore/CFile.h>
|
||||
#include <LibCore/File.h>
|
||||
#include <LibGUI/GAboutDialog.h>
|
||||
#include <LibGUI/GAction.h>
|
||||
#include <LibGUI/GApplication.h>
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
#include "HexEditorWidget.h"
|
||||
#include <AK/Optional.h>
|
||||
#include <AK/StringBuilder.h>
|
||||
#include <LibCore/CFile.h>
|
||||
#include <LibCore/File.h>
|
||||
#include <LibGUI/GAboutDialog.h>
|
||||
#include <LibGUI/GAction.h>
|
||||
#include <LibGUI/GBoxLayout.h>
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
#include "IRCWindowListModel.h"
|
||||
#include <AK/QuickSort.h>
|
||||
#include <AK/StringBuilder.h>
|
||||
#include <LibCore/CNotifier.h>
|
||||
#include <LibCore/Notifier.h>
|
||||
#include <arpa/inet.h>
|
||||
#include <netinet/in.h>
|
||||
#include <stdio.h>
|
||||
|
|
|
@ -32,8 +32,8 @@
|
|||
#include <AK/Function.h>
|
||||
#include <AK/HashMap.h>
|
||||
#include <AK/String.h>
|
||||
#include <LibCore/CConfigFile.h>
|
||||
#include <LibCore/CTCPSocket.h>
|
||||
#include <LibCore/ConfigFile.h>
|
||||
#include <LibCore/TCPSocket.h>
|
||||
|
||||
class IRCChannel;
|
||||
class IRCQuery;
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
#pragma once
|
||||
|
||||
#include "Tool.h"
|
||||
#include <LibCore/CTimer.h>
|
||||
#include <LibCore/Timer.h>
|
||||
#include <LibGUI/GActionGroup.h>
|
||||
#include <LibGUI/GPainter.h>
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include "AudioEngine.h"
|
||||
#include "MainWidget.h"
|
||||
#include <LibAudio/AClientConnection.h>
|
||||
#include <LibCore/CFile.h>
|
||||
#include <LibCore/File.h>
|
||||
#include <LibGUI/GAboutDialog.h>
|
||||
#include <LibGUI/GAction.h>
|
||||
#include <LibGUI/GApplication.h>
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
#include <AK/Vector.h>
|
||||
#include <LibAudio/AClientConnection.h>
|
||||
#include <LibAudio/AWavLoader.h>
|
||||
#include <LibCore/CTimer.h>
|
||||
#include <LibCore/Timer.h>
|
||||
|
||||
#define PLAYBACK_MANAGER_BUFFER_SIZE 64 * KB
|
||||
#define PLAYBACK_MANAGER_RATE 44100
|
||||
|
|
|
@ -28,8 +28,8 @@
|
|||
#include <AK/JsonArray.h>
|
||||
#include <AK/JsonObject.h>
|
||||
#include <AK/JsonValue.h>
|
||||
#include <LibCore/CDirIterator.h>
|
||||
#include <LibCore/CFile.h>
|
||||
#include <LibCore/DirIterator.h>
|
||||
#include <LibCore/File.h>
|
||||
#include <sys/stat.h>
|
||||
|
||||
NonnullRefPtr<DevicesModel> DevicesModel::create()
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
#include "MemoryStatsWidget.h"
|
||||
#include "GraphWidget.h"
|
||||
#include <AK/JsonObject.h>
|
||||
#include <LibCore/CFile.h>
|
||||
#include <LibCore/File.h>
|
||||
#include <LibGfx/StylePainter.h>
|
||||
#include <LibGUI/GBoxLayout.h>
|
||||
#include <LibGUI/GLabel.h>
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include <LibCore/CTimer.h>
|
||||
#include <LibCore/Timer.h>
|
||||
#include <LibGUI/GLazyWidget.h>
|
||||
|
||||
namespace GUI {
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
*/
|
||||
|
||||
#include "ProcessMemoryMapWidget.h"
|
||||
#include <LibCore/CTimer.h>
|
||||
#include <LibCore/Timer.h>
|
||||
#include <LibGUI/GBoxLayout.h>
|
||||
#include <LibGUI/GJsonArrayModel.h>
|
||||
#include <LibGUI/GSortingProxyModel.h>
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
#include <AK/JsonObject.h>
|
||||
#include <AK/JsonValue.h>
|
||||
#include <AK/SharedBuffer.h>
|
||||
#include <LibCore/CProcessStatisticsReader.h>
|
||||
#include <LibCore/ProcessStatisticsReader.h>
|
||||
#include <fcntl.h>
|
||||
#include <stdio.h>
|
||||
|
||||
|
|
|
@ -25,8 +25,8 @@
|
|||
*/
|
||||
|
||||
#include "ProcessStacksWidget.h"
|
||||
#include <LibCore/CFile.h>
|
||||
#include <LibCore/CTimer.h>
|
||||
#include <LibCore/File.h>
|
||||
#include <LibCore/Timer.h>
|
||||
#include <LibGUI/GBoxLayout.h>
|
||||
|
||||
ProcessStacksWidget::ProcessStacksWidget(GUI::Widget* parent)
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
#include "ProcessStacksWidget.h"
|
||||
#include "ProcessTableView.h"
|
||||
#include "ProcessUnveiledPathsWidget.h"
|
||||
#include <LibCore/CTimer.h>
|
||||
#include <LibCore/Timer.h>
|
||||
#include <LibGUI/GAboutDialog.h>
|
||||
#include <LibGUI/GAction.h>
|
||||
#include <LibGUI/GActionGroup.h>
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
#include "TaskbarWindow.h"
|
||||
#include "TaskbarButton.h"
|
||||
#include <AK/SharedBuffer.h>
|
||||
#include <LibCore/CConfigFile.h>
|
||||
#include <LibCore/ConfigFile.h>
|
||||
#include <LibGUI/GBoxLayout.h>
|
||||
#include <LibGUI/GButton.h>
|
||||
#include <LibGUI/GDesktop.h>
|
||||
|
|
|
@ -25,8 +25,8 @@
|
|||
*/
|
||||
|
||||
#include <Kernel/KeyCode.h>
|
||||
#include <LibCore/CArgsParser.h>
|
||||
#include <LibCore/CUserInfo.h>
|
||||
#include <LibCore/ArgsParser.h>
|
||||
#include <LibCore/UserInfo.h>
|
||||
#include <LibGUI/GAboutDialog.h>
|
||||
#include <LibGUI/GAction.h>
|
||||
#include <LibGUI/GActionGroup.h>
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include <AK/Optional.h>
|
||||
#include <AK/StringBuilder.h>
|
||||
#include <AK/URL.h>
|
||||
#include <LibCore/CFile.h>
|
||||
#include <LibCore/File.h>
|
||||
#include <LibGUI/GAboutDialog.h>
|
||||
#include <LibGUI/GAction.h>
|
||||
#include <LibGUI/GBoxLayout.h>
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include <LibCore/CTimer.h>
|
||||
#include <LibCore/Timer.h>
|
||||
#include <LibGUI/GApplication.h>
|
||||
#include <LibGUI/GBoxLayout.h>
|
||||
#include <LibGUI/GButton.h>
|
||||
|
|
|
@ -11,14 +11,14 @@ OBJS = \
|
|||
../../AK/JsonValue.o \
|
||||
../../AK/JsonParser.o \
|
||||
../../AK/LogStream.o \
|
||||
../../Libraries/LibCore/CIODevice.o \
|
||||
../../Libraries/LibCore/CFile.o \
|
||||
../../Libraries/LibCore/CObject.o \
|
||||
../../Libraries/LibCore/CEvent.o \
|
||||
../../Libraries/LibCore/CSocket.o \
|
||||
../../Libraries/LibCore/CLocalSocket.o \
|
||||
../../Libraries/LibCore/CLocalServer.o \
|
||||
../../Libraries/LibCore/CNotifier.o \
|
||||
../../Libraries/LibCore/CEventLoop.o
|
||||
../../Libraries/LibCore/IODevice.o \
|
||||
../../Libraries/LibCore/File.o \
|
||||
../../Libraries/LibCore/Object.o \
|
||||
../../Libraries/LibCore/Event.o \
|
||||
../../Libraries/LibCore/Socket.o \
|
||||
../../Libraries/LibCore/LocalSocket.o \
|
||||
../../Libraries/LibCore/LocalServer.o \
|
||||
../../Libraries/LibCore/Notifier.o \
|
||||
../../Libraries/LibCore/EventLoop.o
|
||||
|
||||
include ../../Makefile.common
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
#include <AK/JsonValue.h>
|
||||
#include <AK/LogStream.h>
|
||||
#include <AK/StringBuilder.h>
|
||||
#include <LibCore/CFile.h>
|
||||
#include <LibCore/File.h>
|
||||
#include <stdio.h>
|
||||
|
||||
int main(int argc, char** argv)
|
||||
|
|
|
@ -28,8 +28,8 @@
|
|||
#include "CppLexer.h"
|
||||
#include "EditorWrapper.h"
|
||||
#include <AK/FileSystemPath.h>
|
||||
#include <LibCore/CDirIterator.h>
|
||||
#include <LibCore/CFile.h>
|
||||
#include <LibCore/DirIterator.h>
|
||||
#include <LibCore/File.h>
|
||||
#include <LibGUI/GApplication.h>
|
||||
#include <LibGUI/GPainter.h>
|
||||
#include <LibGUI/GScrollBar.h>
|
||||
|
|
|
@ -25,8 +25,8 @@
|
|||
*/
|
||||
|
||||
#include "ProcessStateWidget.h"
|
||||
#include <LibCore/CProcessStatisticsReader.h>
|
||||
#include <LibCore/CTimer.h>
|
||||
#include <LibCore/ProcessStatisticsReader.h>
|
||||
#include <LibCore/Timer.h>
|
||||
#include <LibGUI/GBoxLayout.h>
|
||||
#include <LibGUI/GLabel.h>
|
||||
#include <unistd.h>
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include <AK/FileSystemPath.h>
|
||||
#include <AK/QuickSort.h>
|
||||
#include <AK/StringBuilder.h>
|
||||
#include <LibCore/CFile.h>
|
||||
#include <LibCore/File.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <sys/stat.h>
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
*/
|
||||
|
||||
#include "ProjectFile.h"
|
||||
#include <LibCore/CFile.h>
|
||||
#include <LibCore/File.h>
|
||||
#include <string.h>
|
||||
|
||||
const GUI::TextDocument& ProjectFile::document() const
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
#include "TerminalWrapper.h"
|
||||
#include "ProcessStateWidget.h"
|
||||
#include <AK/String.h>
|
||||
#include <LibCore/CConfigFile.h>
|
||||
#include <LibCore/ConfigFile.h>
|
||||
#include <LibGUI/GBoxLayout.h>
|
||||
#include <LibGUI/GMessageBox.h>
|
||||
#include <LibVT/TerminalWidget.h>
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
#include "WidgetTool.h"
|
||||
#include "WidgetTreeModel.h"
|
||||
#include <AK/StringBuilder.h>
|
||||
#include <LibCore/CFile.h>
|
||||
#include <LibCore/File.h>
|
||||
#include <LibGUI/GAboutDialog.h>
|
||||
#include <LibGUI/GAction.h>
|
||||
#include <LibGUI/GActionGroup.h>
|
||||
|
|
|
@ -11,14 +11,14 @@ OBJS = \
|
|||
../../AK/JsonValue.o \
|
||||
../../AK/JsonParser.o \
|
||||
../../AK/LogStream.o \
|
||||
../../Libraries/LibCore/CIODevice.o \
|
||||
../../Libraries/LibCore/CFile.o \
|
||||
../../Libraries/LibCore/CObject.o \
|
||||
../../Libraries/LibCore/CEvent.o \
|
||||
../../Libraries/LibCore/CSocket.o \
|
||||
../../Libraries/LibCore/CLocalSocket.o \
|
||||
../../Libraries/LibCore/CNotifier.o \
|
||||
../../Libraries/LibCore/CLocalServer.o \
|
||||
../../Libraries/LibCore/CEventLoop.o
|
||||
../../Libraries/LibCore/IODevice.o \
|
||||
../../Libraries/LibCore/File.o \
|
||||
../../Libraries/LibCore/Object.o \
|
||||
../../Libraries/LibCore/Event.o \
|
||||
../../Libraries/LibCore/Socket.o \
|
||||
../../Libraries/LibCore/LocalSocket.o \
|
||||
../../Libraries/LibCore/Notifier.o \
|
||||
../../Libraries/LibCore/LocalServer.o \
|
||||
../../Libraries/LibCore/EventLoop.o
|
||||
|
||||
include ../../Makefile.common
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
#include <AK/BufferStream.h>
|
||||
#include <AK/HashMap.h>
|
||||
#include <AK/StringBuilder.h>
|
||||
#include <LibCore/CFile.h>
|
||||
#include <LibCore/File.h>
|
||||
#include <ctype.h>
|
||||
#include <stdio.h>
|
||||
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
#include <AK/JsonArray.h>
|
||||
#include <AK/JsonObject.h>
|
||||
#include <AK/NonnullOwnPtrVector.h>
|
||||
#include <LibCore/CLocalSocket.h>
|
||||
#include <LibCore/LocalSocket.h>
|
||||
#include <LibGUI/GModel.h>
|
||||
|
||||
class RemoteProcess;
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
#pragma once
|
||||
|
||||
#include <AK/NonnullOwnPtrVector.h>
|
||||
#include <LibCore/CLocalSocket.h>
|
||||
#include <LibCore/LocalSocket.h>
|
||||
|
||||
namespace AK {
|
||||
class JsonObject;
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
#include <AK/HashTable.h>
|
||||
#include <AK/MappedFile.h>
|
||||
#include <AK/QuickSort.h>
|
||||
#include <LibCore/CFile.h>
|
||||
#include <LibCore/File.h>
|
||||
#include <LibELF/ELFLoader.h>
|
||||
#include <stdio.h>
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
#include <AK/JsonArray.h>
|
||||
#include <AK/JsonObject.h>
|
||||
#include <AK/StringBuilder.h>
|
||||
#include <LibCore/CFile.h>
|
||||
#include <LibCore/File.h>
|
||||
#include <LibGUI/GAction.h>
|
||||
#include <LibGUI/GBoxLayout.h>
|
||||
#include <LibGUI/GMenu.h>
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
#include "Field.h"
|
||||
#include <AK/HashTable.h>
|
||||
#include <AK/Queue.h>
|
||||
#include <LibCore/CConfigFile.h>
|
||||
#include <LibCore/ConfigFile.h>
|
||||
#include <LibGUI/GButton.h>
|
||||
#include <LibGUI/GLabel.h>
|
||||
#include <LibGUI/GPainter.h>
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
#pragma once
|
||||
|
||||
#include <AK/Noncopyable.h>
|
||||
#include <LibCore/CTimer.h>
|
||||
#include <LibCore/Timer.h>
|
||||
#include <LibGUI/GFrame.h>
|
||||
|
||||
namespace GUI {
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
*/
|
||||
|
||||
#include "Field.h"
|
||||
#include <LibCore/CConfigFile.h>
|
||||
#include <LibCore/ConfigFile.h>
|
||||
#include <LibGUI/GAboutDialog.h>
|
||||
#include <LibGUI/GAction.h>
|
||||
#include <LibGUI/GApplication.h>
|
||||
|
|
|
@ -26,8 +26,8 @@
|
|||
|
||||
#include <AK/BufferStream.h>
|
||||
#include <LibAudio/AWavLoader.h>
|
||||
#include <LibCore/CFile.h>
|
||||
#include <LibCore/CIODeviceStreamReader.h>
|
||||
#include <LibCore/File.h>
|
||||
#include <LibCore/IODeviceStreamReader.h>
|
||||
#include <limits>
|
||||
|
||||
namespace Audio {
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
#include <AK/String.h>
|
||||
#include <AK/StringView.h>
|
||||
#include <LibAudio/ABuffer.h>
|
||||
#include <LibCore/CFile.h>
|
||||
#include <LibCore/File.h>
|
||||
|
||||
namespace AK {
|
||||
class ByteBuffer;
|
||||
|
|
|
@ -24,8 +24,8 @@
|
|||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include "CArgsParser.h"
|
||||
#include <AK/StringBuilder.h>
|
||||
#include <LibCore/ArgsParser.h>
|
||||
#include <getopt.h>
|
||||
#include <limits.h>
|
||||
#include <stdio.h>
|
|
@ -25,9 +25,9 @@
|
|||
*/
|
||||
|
||||
#include <AK/StringBuilder.h>
|
||||
#include <LibCore/CConfigFile.h>
|
||||
#include <LibCore/CFile.h>
|
||||
#include <LibCore/CUserInfo.h>
|
||||
#include <LibCore/ConfigFile.h>
|
||||
#include <LibCore/File.h>
|
||||
#include <LibCore/UserInfo.h>
|
||||
#include <pwd.h>
|
||||
#include <stdio.h>
|
||||
#include <unistd.h>
|
|
@ -24,7 +24,7 @@
|
|||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include "CDirIterator.h"
|
||||
#include <LibCore/DirIterator.h>
|
||||
#include <errno.h>
|
||||
|
||||
namespace Core {
|
|
@ -26,7 +26,7 @@
|
|||
|
||||
#include <AK/Assertions.h>
|
||||
#include <AK/Time.h>
|
||||
#include <LibCore/CElapsedTimer.h>
|
||||
#include <LibCore/ElapsedTimer.h>
|
||||
#include <sys/time.h>
|
||||
|
||||
namespace Core {
|
|
@ -24,8 +24,8 @@
|
|||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include <LibCore/CEvent.h>
|
||||
#include <LibCore/CObject.h>
|
||||
#include <LibCore/Event.h>
|
||||
#include <LibCore/Object.h>
|
||||
|
||||
namespace Core {
|
||||
|
|
@ -28,12 +28,12 @@
|
|||
#include <AK/JsonObject.h>
|
||||
#include <AK/JsonValue.h>
|
||||
#include <AK/Time.h>
|
||||
#include <LibCore/CEvent.h>
|
||||
#include <LibCore/CEventLoop.h>
|
||||
#include <LibCore/CLocalSocket.h>
|
||||
#include <LibCore/CNotifier.h>
|
||||
#include <LibCore/CObject.h>
|
||||
#include <LibCore/CSyscallUtils.h>
|
||||
#include <LibCore/Event.h>
|
||||
#include <LibCore/EventLoop.h>
|
||||
#include <LibCore/LocalSocket.h>
|
||||
#include <LibCore/Notifier.h>
|
||||
#include <LibCore/Object.h>
|
||||
#include <LibCore/SyscallUtils.h>
|
||||
#include <LibThread/Lock.h>
|
||||
#include <errno.h>
|
||||
#include <fcntl.h>
|
|
@ -31,8 +31,8 @@
|
|||
#include <AK/OwnPtr.h>
|
||||
#include <AK/Vector.h>
|
||||
#include <AK/WeakPtr.h>
|
||||
#include <LibCore/CEvent.h>
|
||||
#include <LibCore/CLocalServer.h>
|
||||
#include <LibCore/Event.h>
|
||||
#include <LibCore/LocalServer.h>
|
||||
#include <LibThread/Lock.h>
|
||||
#include <sys/select.h>
|
||||
#include <sys/time.h>
|
|
@ -24,7 +24,7 @@
|
|||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include <LibCore/CFile.h>
|
||||
#include <LibCore/File.h>
|
||||
#include <errno.h>
|
||||
#include <fcntl.h>
|
||||
#include <stdio.h>
|
|
@ -27,7 +27,7 @@
|
|||
#pragma once
|
||||
|
||||
#include <AK/String.h>
|
||||
#include <LibCore/CIODevice.h>
|
||||
#include <LibCore/IODevice.h>
|
||||
|
||||
namespace Core {
|
||||
|
|
@ -24,9 +24,9 @@
|
|||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include "CGzip.h"
|
||||
#include <AK/ByteBuffer.h>
|
||||
#include <AK/Optional.h>
|
||||
#include <LibCore/Gzip.h>
|
||||
#include <LibCore/puff.h>
|
||||
#include <limits.h>
|
||||
#include <stddef.h>
|
||||
|
@ -131,8 +131,8 @@ Optional<ByteBuffer> CGzip::decompress(const ByteBuffer& data)
|
|||
if (puff_ret == 0) {
|
||||
dbg() << "Gzip::decompress: Decompression success.";
|
||||
break;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
if (puff_ret == 1) {
|
||||
// FIXME: Find a better way of decompressing without needing to try over and over again.
|
||||
dbg() << "Gzip::decompress: Output buffer exhausted. Growing.";
|
|
@ -24,10 +24,10 @@
|
|||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include <LibCore/CGzip.h>
|
||||
#include <LibCore/CHttpJob.h>
|
||||
#include <LibCore/CHttpResponse.h>
|
||||
#include <LibCore/CTCPSocket.h>
|
||||
#include <LibCore/Gzip.h>
|
||||
#include <LibCore/HttpJob.h>
|
||||
#include <LibCore/HttpResponse.h>
|
||||
#include <LibCore/TCPSocket.h>
|
||||
#include <stdio.h>
|
||||
#include <unistd.h>
|
||||
|
|
@ -27,9 +27,9 @@
|
|||
#pragma once
|
||||
|
||||
#include <AK/HashMap.h>
|
||||
#include <LibCore/CHttpRequest.h>
|
||||
#include <LibCore/CHttpResponse.h>
|
||||
#include <LibCore/CNetworkJob.h>
|
||||
#include <LibCore/HttpRequest.h>
|
||||
#include <LibCore/HttpResponse.h>
|
||||
#include <LibCore/NetworkJob.h>
|
||||
|
||||
namespace Core {
|
||||
|
|
@ -25,8 +25,8 @@
|
|||
*/
|
||||
|
||||
#include <AK/StringBuilder.h>
|
||||
#include <LibCore/CHttpJob.h>
|
||||
#include <LibCore/CHttpRequest.h>
|
||||
#include <LibCore/HttpJob.h>
|
||||
#include <LibCore/HttpRequest.h>
|
||||
|
||||
namespace Core {
|
||||
|
|
@ -24,7 +24,7 @@
|
|||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include <LibCore/CHttpResponse.h>
|
||||
#include <LibCore/HttpResponse.h>
|
||||
|
||||
namespace Core {
|
||||
|
|
@ -28,7 +28,7 @@
|
|||
|
||||
#include <AK/HashMap.h>
|
||||
#include <AK/String.h>
|
||||
#include <LibCore/CNetworkResponse.h>
|
||||
#include <LibCore/NetworkResponse.h>
|
||||
|
||||
namespace Core {
|
||||
|
|
@ -25,8 +25,8 @@
|
|||
*/
|
||||
|
||||
#include <AK/PrintfImplementation.h>
|
||||
#include <LibCore/CIODevice.h>
|
||||
#include <LibCore/CSyscallUtils.h>
|
||||
#include <LibCore/IODevice.h>
|
||||
#include <LibCore/SyscallUtils.h>
|
||||
#include <errno.h>
|
||||
#include <stdio.h>
|
||||
#include <sys/select.h>
|
|
@ -28,7 +28,7 @@
|
|||
|
||||
#include <AK/ByteBuffer.h>
|
||||
#include <AK/StringView.h>
|
||||
#include <LibCore/CObject.h>
|
||||
#include <LibCore/Object.h>
|
||||
|
||||
namespace Core {
|
||||
|
|
@ -27,7 +27,7 @@
|
|||
#pragma once
|
||||
|
||||
#include <AK/StdLibExtras.h>
|
||||
#include <LibCore/CIODevice.h>
|
||||
#include <LibCore/IODevice.h>
|
||||
|
||||
namespace Core {
|
||||
|
|
@ -24,9 +24,9 @@
|
|||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include <LibCore/CLocalServer.h>
|
||||
#include <LibCore/CLocalSocket.h>
|
||||
#include <LibCore/CNotifier.h>
|
||||
#include <LibCore/LocalServer.h>
|
||||
#include <LibCore/LocalSocket.h>
|
||||
#include <LibCore/Notifier.h>
|
||||
#include <stdio.h>
|
||||
#include <sys/socket.h>
|
||||
#include <sys/stat.h>
|
|
@ -26,8 +26,8 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include <LibCore/CNotifier.h>
|
||||
#include <LibCore/CObject.h>
|
||||
#include <LibCore/Notifier.h>
|
||||
#include <LibCore/Object.h>
|
||||
|
||||
namespace Core {
|
||||
|
|
@ -24,7 +24,7 @@
|
|||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include <LibCore/CLocalSocket.h>
|
||||
#include <LibCore/LocalSocket.h>
|
||||
#include <errno.h>
|
||||
#include <sys/socket.h>
|
||||
|
|
@ -27,7 +27,7 @@
|
|||
#pragma once
|
||||
|
||||
#include <AK/Badge.h>
|
||||
#include <LibCore/CSocket.h>
|
||||
#include <LibCore/Socket.h>
|
||||
|
||||
namespace Core {
|
||||
|
|
@ -1,30 +1,30 @@
|
|||
OBJS = \
|
||||
CArgsParser.o \
|
||||
CIODevice.o \
|
||||
CFile.o \
|
||||
CSocket.o \
|
||||
CLocalSocket.o \
|
||||
CLocalServer.o \
|
||||
CTCPSocket.o \
|
||||
CTCPServer.o \
|
||||
CUdpSocket.o \
|
||||
CUdpServer.o \
|
||||
CElapsedTimer.o \
|
||||
CNotifier.o \
|
||||
CHttpRequest.o \
|
||||
CHttpResponse.o \
|
||||
CHttpJob.o \
|
||||
CNetworkJob.o \
|
||||
CNetworkResponse.o \
|
||||
CObject.o \
|
||||
CTimer.o \
|
||||
CEventLoop.o \
|
||||
CConfigFile.o \
|
||||
CEvent.o \
|
||||
CProcessStatisticsReader.o \
|
||||
CDirIterator.o \
|
||||
CUserInfo.o \
|
||||
CGzip.o \
|
||||
ArgsParser.o \
|
||||
IODevice.o \
|
||||
File.o \
|
||||
Socket.o \
|
||||
LocalSocket.o \
|
||||
LocalServer.o \
|
||||
TCPSocket.o \
|
||||
TCPServer.o \
|
||||
UdpSocket.o \
|
||||
UdpServer.o \
|
||||
ElapsedTimer.o \
|
||||
Notifier.o \
|
||||
HttpRequest.o \
|
||||
HttpResponse.o \
|
||||
HttpJob.o \
|
||||
NetworkJob.o \
|
||||
NetworkResponse.o \
|
||||
Object.o \
|
||||
Timer.o \
|
||||
EventLoop.o \
|
||||
ConfigFile.o \
|
||||
Event.o \
|
||||
ProcessStatisticsReader.o \
|
||||
DirIterator.o \
|
||||
UserInfo.o \
|
||||
Gzip.o \
|
||||
puff.o
|
||||
|
||||
LIBRARY = libcore.a
|
||||
|
|
|
@ -24,8 +24,8 @@
|
|||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include <LibCore/CNetworkJob.h>
|
||||
#include <LibCore/CNetworkResponse.h>
|
||||
#include <LibCore/NetworkJob.h>
|
||||
#include <LibCore/NetworkResponse.h>
|
||||
#include <stdio.h>
|
||||
|
||||
//#define CNETWORKJOB_DEBUG
|
|
@ -27,7 +27,7 @@
|
|||
#pragma once
|
||||
|
||||
#include <AK/Function.h>
|
||||
#include <LibCore/CObject.h>
|
||||
#include <LibCore/Object.h>
|
||||
|
||||
namespace Core {
|
||||
|
|
@ -24,7 +24,7 @@
|
|||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include <LibCore/CNetworkResponse.h>
|
||||
#include <LibCore/NetworkResponse.h>
|
||||
|
||||
namespace Core {
|
||||
|
|
@ -24,9 +24,9 @@
|
|||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include <LibCore/CEvent.h>
|
||||
#include <LibCore/CEventLoop.h>
|
||||
#include <LibCore/CNotifier.h>
|
||||
#include <LibCore/Event.h>
|
||||
#include <LibCore/EventLoop.h>
|
||||
#include <LibCore/Notifier.h>
|
||||
|
||||
namespace Core {
|
||||
|
|
@ -27,7 +27,7 @@
|
|||
#pragma once
|
||||
|
||||
#include <AK/Function.h>
|
||||
#include <LibCore/CObject.h>
|
||||
#include <LibCore/Object.h>
|
||||
|
||||
namespace Core {
|
||||
|
|
@ -27,9 +27,9 @@
|
|||
#include <AK/Assertions.h>
|
||||
#include <AK/JsonObject.h>
|
||||
#include <AK/kstdio.h>
|
||||
#include <LibCore/CEvent.h>
|
||||
#include <LibCore/CEventLoop.h>
|
||||
#include <LibCore/CObject.h>
|
||||
#include <LibCore/Event.h>
|
||||
#include <LibCore/EventLoop.h>
|
||||
#include <LibCore/Object.h>
|
||||
#include <stdio.h>
|
||||
|
||||
namespace Core {
|
|
@ -27,8 +27,8 @@
|
|||
#include <AK/JsonArray.h>
|
||||
#include <AK/JsonObject.h>
|
||||
#include <AK/JsonValue.h>
|
||||
#include <LibCore/CFile.h>
|
||||
#include <LibCore/CProcessStatisticsReader.h>
|
||||
#include <LibCore/File.h>
|
||||
#include <LibCore/ProcessStatisticsReader.h>
|
||||
#include <pwd.h>
|
||||
#include <stdio.h>
|
||||
|
|
@ -24,8 +24,8 @@
|
|||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include <LibCore/CNotifier.h>
|
||||
#include <LibCore/CSocket.h>
|
||||
#include <LibCore/Notifier.h>
|
||||
#include <LibCore/Socket.h>
|
||||
#include <arpa/inet.h>
|
||||
#include <errno.h>
|
||||
#include <fcntl.h>
|
|
@ -26,8 +26,8 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include <LibCore/CIODevice.h>
|
||||
#include <LibCore/CSocketAddress.h>
|
||||
#include <LibCore/IODevice.h>
|
||||
#include <LibCore/SocketAddress.h>
|
||||
|
||||
namespace Core {
|
||||
|
|
@ -26,9 +26,9 @@
|
|||
|
||||
#include <AK/IPv4Address.h>
|
||||
#include <AK/Types.h>
|
||||
#include <LibCore/CNotifier.h>
|
||||
#include <LibCore/CTCPServer.h>
|
||||
#include <LibCore/CTCPSocket.h>
|
||||
#include <LibCore/Notifier.h>
|
||||
#include <LibCore/TCPServer.h>
|
||||
#include <LibCore/TCPSocket.h>
|
||||
#include <stdio.h>
|
||||
#include <sys/socket.h>
|
||||
|
|
@ -27,8 +27,8 @@
|
|||
#pragma once
|
||||
|
||||
#include <AK/IPv4Address.h>
|
||||
#include <LibCore/CNotifier.h>
|
||||
#include <LibCore/CObject.h>
|
||||
#include <LibCore/Notifier.h>
|
||||
#include <LibCore/Object.h>
|
||||
|
||||
namespace Core {
|
||||
|
|
@ -24,7 +24,7 @@
|
|||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include <LibCore/CTCPSocket.h>
|
||||
#include <LibCore/TCPSocket.h>
|
||||
#include <errno.h>
|
||||
#include <sys/socket.h>
|
||||
|
|
@ -27,7 +27,7 @@
|
|||
#pragma once
|
||||
|
||||
#include <AK/Badge.h>
|
||||
#include <LibCore/CSocket.h>
|
||||
#include <LibCore/Socket.h>
|
||||
|
||||
namespace Core {
|
||||
|
|
@ -24,7 +24,7 @@
|
|||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include <LibCore/CTimer.h>
|
||||
#include <LibCore/Timer.h>
|
||||
|
||||
namespace Core {
|
||||
|
|
@ -27,7 +27,7 @@
|
|||
#pragma once
|
||||
|
||||
#include <AK/Function.h>
|
||||
#include <LibCore/CObject.h>
|
||||
#include <LibCore/Object.h>
|
||||
|
||||
namespace Core {
|
||||
|
|
@ -26,9 +26,9 @@
|
|||
|
||||
#include <AK/IPv4Address.h>
|
||||
#include <AK/Types.h>
|
||||
#include <LibCore/CNotifier.h>
|
||||
#include <LibCore/CUdpServer.h>
|
||||
#include <LibCore/CUdpSocket.h>
|
||||
#include <LibCore/Notifier.h>
|
||||
#include <LibCore/UdpServer.h>
|
||||
#include <LibCore/UdpSocket.h>
|
||||
#include <stdio.h>
|
||||
#include <sys/socket.h>
|
||||
|
|
@ -27,8 +27,8 @@
|
|||
#pragma once
|
||||
|
||||
#include <AK/IPv4Address.h>
|
||||
#include <LibCore/CNotifier.h>
|
||||
#include <LibCore/CObject.h>
|
||||
#include <LibCore/Notifier.h>
|
||||
#include <LibCore/Object.h>
|
||||
|
||||
namespace Core {
|
||||
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue