VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Core/Unix
diff options
context:
space:
mode:
authorMounir IDRASSI <mounir.idrassi@idrix.fr>2014-06-22 16:02:42 +0200
committerMounir IDRASSI <mounir.idrassi@idrix.fr>2014-11-08 23:20:14 +0100
commit41a22ca4e78df752d4ce143a692310ab9e48c686 (patch)
tree7167af89d885e032926cb79981fd981f7b685962 /src/Core/Unix
parent17823cb58c5c68e5d1cf8cc6e9d92d0ce6194d8d (diff)
downloadVeraCrypt-41a22ca4e78df752d4ce143a692310ab9e48c686.tar.gz
VeraCrypt-41a22ca4e78df752d4ce143a692310ab9e48c686.zip
Change namespace from TrueCrypt to VeraCrypt. Rename method from Resources Resources::GetTrueCryptIcon to Resources::GetVeraCryptIcon.
Diffstat (limited to 'src/Core/Unix')
-rw-r--r--src/Core/Unix/CoreService.cpp2
-rw-r--r--src/Core/Unix/CoreService.h2
-rw-r--r--src/Core/Unix/CoreServiceProxy.h2
-rw-r--r--src/Core/Unix/CoreServiceRequest.cpp2
-rw-r--r--src/Core/Unix/CoreServiceRequest.h2
-rw-r--r--src/Core/Unix/CoreServiceResponse.cpp2
-rw-r--r--src/Core/Unix/CoreServiceResponse.h2
-rw-r--r--src/Core/Unix/CoreUnix.cpp2
-rw-r--r--src/Core/Unix/CoreUnix.h2
-rw-r--r--src/Core/Unix/FreeBSD/CoreFreeBSD.cpp2
-rw-r--r--src/Core/Unix/FreeBSD/CoreFreeBSD.h2
-rw-r--r--src/Core/Unix/Linux/CoreLinux.cpp2
-rw-r--r--src/Core/Unix/Linux/CoreLinux.h2
-rw-r--r--src/Core/Unix/MacOSX/CoreMacOSX.cpp2
-rw-r--r--src/Core/Unix/MacOSX/CoreMacOSX.h2
-rw-r--r--src/Core/Unix/MountedFilesystem.h2
-rw-r--r--src/Core/Unix/Solaris/CoreSolaris.cpp2
-rw-r--r--src/Core/Unix/Solaris/CoreSolaris.h2
18 files changed, 18 insertions, 18 deletions
diff --git a/src/Core/Unix/CoreService.cpp b/src/Core/Unix/CoreService.cpp
index 9d2fd2a4..53592c0a 100644
--- a/src/Core/Unix/CoreService.cpp
+++ b/src/Core/Unix/CoreService.cpp
@@ -19,9 +19,9 @@
#include "CoreUnix.h"
#include "CoreServiceRequest.h"
#include "CoreServiceResponse.h"
-namespace TrueCrypt
+namespace VeraCrypt
{
template <class T>
auto_ptr <T> CoreService::GetResponse ()
{
diff --git a/src/Core/Unix/CoreService.h b/src/Core/Unix/CoreService.h
index 9702dc7e..f752fc94 100644
--- a/src/Core/Unix/CoreService.h
+++ b/src/Core/Unix/CoreService.h
@@ -13,9 +13,9 @@
#include "Platform/Stream.h"
#include "Platform/Unix/Pipe.h"
#include "Core/Core.h"
-namespace TrueCrypt
+namespace VeraCrypt
{
// This service facilitates process forking and elevation of user privileges
class CoreService
{
diff --git a/src/Core/Unix/CoreServiceProxy.h b/src/Core/Unix/CoreServiceProxy.h
index 2a264617..3a65bc00 100644
--- a/src/Core/Unix/CoreServiceProxy.h
+++ b/src/Core/Unix/CoreServiceProxy.h
@@ -11,9 +11,9 @@
#include "CoreService.h"
#include "Volume/VolumePasswordCache.h"
-namespace TrueCrypt
+namespace VeraCrypt
{
template <class T>
class CoreServiceProxy : public T
{
diff --git a/src/Core/Unix/CoreServiceRequest.cpp b/src/Core/Unix/CoreServiceRequest.cpp
index 49ee8418..15711055 100644
--- a/src/Core/Unix/CoreServiceRequest.cpp
+++ b/src/Core/Unix/CoreServiceRequest.cpp
@@ -9,9 +9,9 @@
#include <errno.h>
#include "CoreServiceRequest.h"
#include "Platform/SerializerFactory.h"
-namespace TrueCrypt
+namespace VeraCrypt
{
void CoreServiceRequest::Deserialize (shared_ptr <Stream> stream)
{
Serializer sr (stream);
diff --git a/src/Core/Unix/CoreServiceRequest.h b/src/Core/Unix/CoreServiceRequest.h
index 030ac81b..583d1058 100644
--- a/src/Core/Unix/CoreServiceRequest.h
+++ b/src/Core/Unix/CoreServiceRequest.h
@@ -11,9 +11,9 @@
#include "Platform/Serializable.h"
#include "Core/Core.h"
-namespace TrueCrypt
+namespace VeraCrypt
{
struct CoreServiceRequest : public Serializable
{
CoreServiceRequest () : ElevateUserPrivileges (false), FastElevation (false) { }
diff --git a/src/Core/Unix/CoreServiceResponse.cpp b/src/Core/Unix/CoreServiceResponse.cpp
index 7809b448..3f69c4bd 100644
--- a/src/Core/Unix/CoreServiceResponse.cpp
+++ b/src/Core/Unix/CoreServiceResponse.cpp
@@ -8,9 +8,9 @@
#include "CoreServiceResponse.h"
#include "Platform/SerializerFactory.h"
-namespace TrueCrypt
+namespace VeraCrypt
{
// CheckFilesystemResponse
void CheckFilesystemResponse::Deserialize (shared_ptr <Stream> stream)
{
diff --git a/src/Core/Unix/CoreServiceResponse.h b/src/Core/Unix/CoreServiceResponse.h
index 24c09b35..458b309f 100644
--- a/src/Core/Unix/CoreServiceResponse.h
+++ b/src/Core/Unix/CoreServiceResponse.h
@@ -11,9 +11,9 @@
#include "Platform/Serializable.h"
#include "Core/Core.h"
-namespace TrueCrypt
+namespace VeraCrypt
{
struct CoreServiceResponse : public Serializable
{
};
diff --git a/src/Core/Unix/CoreUnix.cpp b/src/Core/Unix/CoreUnix.cpp
index 975c8401..15a96297 100644
--- a/src/Core/Unix/CoreUnix.cpp
+++ b/src/Core/Unix/CoreUnix.cpp
@@ -17,9 +17,9 @@
#include "Platform/FileStream.h"
#include "Driver/Fuse/FuseService.h"
#include "Volume/VolumePasswordCache.h"
-namespace TrueCrypt
+namespace VeraCrypt
{
CoreUnix::CoreUnix ()
{
signal (SIGPIPE, SIG_IGN);
diff --git a/src/Core/Unix/CoreUnix.h b/src/Core/Unix/CoreUnix.h
index b8e4cc54..08bf3395 100644
--- a/src/Core/Unix/CoreUnix.h
+++ b/src/Core/Unix/CoreUnix.h
@@ -13,9 +13,9 @@
#include "Platform/Unix/Process.h"
#include "Core/CoreBase.h"
#include "Core/Unix/MountedFilesystem.h"
-namespace TrueCrypt
+namespace VeraCrypt
{
class CoreUnix : public CoreBase
{
public:
diff --git a/src/Core/Unix/FreeBSD/CoreFreeBSD.cpp b/src/Core/Unix/FreeBSD/CoreFreeBSD.cpp
index e0a4dd5f..a160415b 100644
--- a/src/Core/Unix/FreeBSD/CoreFreeBSD.cpp
+++ b/src/Core/Unix/FreeBSD/CoreFreeBSD.cpp
@@ -15,9 +15,9 @@
#include <sys/wait.h>
#include "CoreFreeBSD.h"
#include "Core/Unix/CoreServiceProxy.h"
-namespace TrueCrypt
+namespace VeraCrypt
{
CoreFreeBSD::CoreFreeBSD ()
{
}
diff --git a/src/Core/Unix/FreeBSD/CoreFreeBSD.h b/src/Core/Unix/FreeBSD/CoreFreeBSD.h
index a8230334..4c1eaa77 100644
--- a/src/Core/Unix/FreeBSD/CoreFreeBSD.h
+++ b/src/Core/Unix/FreeBSD/CoreFreeBSD.h
@@ -11,9 +11,9 @@
#include "System.h"
#include "Core/Unix/CoreUnix.h"
-namespace TrueCrypt
+namespace VeraCrypt
{
class CoreFreeBSD : public CoreUnix
{
public:
diff --git a/src/Core/Unix/Linux/CoreLinux.cpp b/src/Core/Unix/Linux/CoreLinux.cpp
index 777ccb77..4170cdfe 100644
--- a/src/Core/Unix/Linux/CoreLinux.cpp
+++ b/src/Core/Unix/Linux/CoreLinux.cpp
@@ -21,9 +21,9 @@
#include "Volume/EncryptionModeXTS.h"
#include "Driver/Fuse/FuseService.h"
#include "Core/Unix/CoreServiceProxy.h"
-namespace TrueCrypt
+namespace VeraCrypt
{
CoreLinux::CoreLinux ()
{
}
diff --git a/src/Core/Unix/Linux/CoreLinux.h b/src/Core/Unix/Linux/CoreLinux.h
index 5758d651..54c40d5b 100644
--- a/src/Core/Unix/Linux/CoreLinux.h
+++ b/src/Core/Unix/Linux/CoreLinux.h
@@ -11,9 +11,9 @@
#include "System.h"
#include "Core/Unix/CoreUnix.h"
-namespace TrueCrypt
+namespace VeraCrypt
{
class CoreLinux : public CoreUnix
{
public:
diff --git a/src/Core/Unix/MacOSX/CoreMacOSX.cpp b/src/Core/Unix/MacOSX/CoreMacOSX.cpp
index b7aa08c7..4f2baea6 100644
--- a/src/Core/Unix/MacOSX/CoreMacOSX.cpp
+++ b/src/Core/Unix/MacOSX/CoreMacOSX.cpp
@@ -18,9 +18,9 @@
#include "CoreMacOSX.h"
#include "Driver/Fuse/FuseService.h"
#include "Core/Unix/CoreServiceProxy.h"
-namespace TrueCrypt
+namespace VeraCrypt
{
CoreMacOSX::CoreMacOSX ()
{
}
diff --git a/src/Core/Unix/MacOSX/CoreMacOSX.h b/src/Core/Unix/MacOSX/CoreMacOSX.h
index 37ebd1d6..179c458e 100644
--- a/src/Core/Unix/MacOSX/CoreMacOSX.h
+++ b/src/Core/Unix/MacOSX/CoreMacOSX.h
@@ -11,9 +11,9 @@
#include "System.h"
#include "Core/Unix/FreeBSD/CoreFreeBSD.h"
-namespace TrueCrypt
+namespace VeraCrypt
{
class CoreMacOSX : public CoreFreeBSD
{
public:
diff --git a/src/Core/Unix/MountedFilesystem.h b/src/Core/Unix/MountedFilesystem.h
index 6e704d3c..c6c10ae9 100644
--- a/src/Core/Unix/MountedFilesystem.h
+++ b/src/Core/Unix/MountedFilesystem.h
@@ -10,9 +10,9 @@
#define TC_HEADER_Core_Unix_MountedFilesystem
#include "Platform/Platform.h"
-namespace TrueCrypt
+namespace VeraCrypt
{
struct MountedFilesystem
{
public:
diff --git a/src/Core/Unix/Solaris/CoreSolaris.cpp b/src/Core/Unix/Solaris/CoreSolaris.cpp
index 63736db3..25fb537d 100644
--- a/src/Core/Unix/Solaris/CoreSolaris.cpp
+++ b/src/Core/Unix/Solaris/CoreSolaris.cpp
@@ -14,9 +14,9 @@
#include <sys/mnttab.h>
#include "CoreSolaris.h"
#include "Core/Unix/CoreServiceProxy.h"
-namespace TrueCrypt
+namespace VeraCrypt
{
CoreSolaris::CoreSolaris ()
{
}
diff --git a/src/Core/Unix/Solaris/CoreSolaris.h b/src/Core/Unix/Solaris/CoreSolaris.h
index 76dd1945..1e6cd1f3 100644
--- a/src/Core/Unix/Solaris/CoreSolaris.h
+++ b/src/Core/Unix/Solaris/CoreSolaris.h
@@ -11,9 +11,9 @@
#include "System.h"
#include "Core/Unix/CoreUnix.h"
-namespace TrueCrypt
+namespace VeraCrypt
{
class CoreSolaris : public CoreUnix
{
public: