Symbol: HashString
headers/private/shared/HashString.h
30
class HashString {
headers/private/shared/HashString.h
32
HashString();
headers/private/shared/HashString.h
33
HashString(const HashString &string);
headers/private/shared/HashString.h
34
HashString(const char *string, int32 length = -1);
headers/private/shared/HashString.h
35
~HashString();
headers/private/shared/HashString.h
47
HashString &operator=(const HashString &string);
headers/private/shared/HashString.h
48
bool operator==(const HashString &string) const;
headers/private/shared/HashString.h
49
bool operator!=(const HashString &string) const { return !(*this == string); }
headers/private/shared/HashString.h
63
using BPrivate::HashString;
src/add-ons/kernel/file_systems/netfs/authentication_server/AuthenticationServer.cpp
103
HashString fContext;
src/add-ons/kernel/file_systems/netfs/authentication_server/AuthenticationServer.cpp
104
HashString fServer;
src/add-ons/kernel/file_systems/netfs/authentication_server/AuthenticationServer.cpp
171
typedef HashMap<HashString, Authentication*> AuthenticationMap;
src/add-ons/kernel/file_systems/netfs/authentication_server/AuthenticationServer.cpp
211
HashString defaultUser;
src/add-ons/kernel/file_systems/netfs/authentication_server/AuthenticationServer.cpp
212
HashString defaultPassword;
src/add-ons/kernel/file_systems/netfs/authentication_server/AuthenticationServer.cpp
247
HashString fContext;
src/add-ons/kernel/file_systems/netfs/authentication_server/AuthenticationServer.cpp
248
HashString fServer;
src/add-ons/kernel/file_systems/netfs/authentication_server/AuthenticationServer.cpp
249
HashString fShare;
src/add-ons/kernel/file_systems/netfs/authentication_server/AuthenticationServer.cpp
341
HashString foundUser;
src/add-ons/kernel/file_systems/netfs/authentication_server/AuthenticationServer.cpp
342
HashString foundPassword;
src/add-ons/kernel/file_systems/netfs/authentication_server/AuthenticationServer.cpp
374
const char* server, const char* share, HashString* user,
src/add-ons/kernel/file_systems/netfs/authentication_server/AuthenticationServer.cpp
375
HashString* password)
src/add-ons/kernel/file_systems/netfs/authentication_server/AuthenticationServer.cpp
55
HashString fUser;
src/add-ons/kernel/file_systems/netfs/authentication_server/AuthenticationServer.cpp
56
HashString fPassword;
src/add-ons/kernel/file_systems/netfs/authentication_server/AuthenticationServer.h
23
HashString* user, HashString* password);
src/add-ons/kernel/file_systems/netfs/client/ExtendedServerInfo.cpp
109
HashString addressString;
src/add-ons/kernel/file_systems/netfs/client/ExtendedServerInfo.h
25
HashString fShareName;
src/add-ons/kernel/file_systems/netfs/client/ExtendedServerInfo.h
53
HashString fServerName;
src/add-ons/kernel/file_systems/netfs/client/ExtendedServerInfo.h
54
HashString fConnectionMethod;
src/add-ons/kernel/file_systems/netfs/client/ServerConnection.cpp
69
HashString server;
src/add-ons/kernel/file_systems/netfs/client/ServerQueryIterator.h
42
HashString fEntryName;
src/add-ons/kernel/file_systems/netfs/client/ShareNode.h
42
HashString fName;
src/add-ons/kernel/file_systems/netfs/client/ShareVolume.cpp
3021
HashString serverAddressString;
src/add-ons/kernel/file_systems/netfs/client/VirtualDir.h
54
HashString fName;
src/add-ons/kernel/file_systems/netfs/client/Volume.h
162
HashString fName;
src/add-ons/kernel/file_systems/netfs/headers/shared/NetAddress.h
14
class HashString;
src/add-ons/kernel/file_systems/netfs/headers/shared/NetAddress.h
16
using BPrivate::HashString;
src/add-ons/kernel/file_systems/netfs/headers/shared/NetAddress.h
36
status_t GetString(HashString* string,
src/add-ons/kernel/file_systems/netfs/headers/shared/Request.h
48
void SetTo(const HashString& string)
src/add-ons/kernel/file_systems/netfs/headers/shared/RequestUnflattener.h
55
status_t ReadString(HashString& string);
src/add-ons/kernel/file_systems/netfs/headers/shared/ServerInfo.h
26
HashString fShareName;
src/add-ons/kernel/file_systems/netfs/headers/shared/ServerInfo.h
55
HashString fServerName;
src/add-ons/kernel/file_systems/netfs/headers/shared/ServerInfo.h
56
HashString fConnectionMethod;
src/add-ons/kernel/file_systems/netfs/headers/shared/TaskManager.h
33
HashString fName;
src/add-ons/kernel/file_systems/netfs/server/Entry.h
46
HashString fName;
src/add-ons/kernel/file_systems/netfs/server/NodeMonitoringEvent.h
34
HashString name;
src/add-ons/kernel/file_systems/netfs/server/NodeMonitoringEvent.h
48
HashString name; // filled in later
src/add-ons/kernel/file_systems/netfs/server/NodeMonitoringEvent.h
63
HashString fromName; // filled in later
src/add-ons/kernel/file_systems/netfs/server/NodeMonitoringEvent.h
64
HashString toName;
src/add-ons/kernel/file_systems/netfs/server/NodeMonitoringEvent.h
81
HashString attribute;
src/add-ons/kernel/file_systems/netfs/server/SecurityContext.cpp
1013
HashString path;
src/add-ons/kernel/file_systems/netfs/server/SecurityContext.cpp
1083
SecurityContext::_AddNodePath(const node_ref& ref, HashString* _path)
src/add-ons/kernel/file_systems/netfs/server/SecurityContext.cpp
307
struct SecurityContext::UserMap : HashMap<HashString, User*> {
src/add-ons/kernel/file_systems/netfs/server/SecurityContext.cpp
311
struct SecurityContext::ShareMap : HashMap<HashString, Share*> {
src/add-ons/kernel/file_systems/netfs/server/SecurityContext.cpp
357
HashString path;
src/add-ons/kernel/file_systems/netfs/server/SecurityContext.cpp
367
struct SecurityContext::NodePathMap : HashMap<NodeRef, HashString> {
src/add-ons/kernel/file_systems/netfs/server/SecurityContext.cpp
371
struct SecurityContext::PathNodeMap : HashMap<HashString, NodeRef> {
src/add-ons/kernel/file_systems/netfs/server/SecurityContext.cpp
945
HashString path;
src/add-ons/kernel/file_systems/netfs/server/SecurityContext.cpp
974
HashString path;
src/add-ons/kernel/file_systems/netfs/server/SecurityContext.h
128
HashString* path = NULL);
src/add-ons/kernel/file_systems/netfs/server/SecurityContext.h
38
HashString fName;
src/add-ons/kernel/file_systems/netfs/server/SecurityContext.h
39
HashString fPassword;
src/add-ons/kernel/file_systems/netfs/server/SecurityContext.h
68
HashString fName;
src/add-ons/kernel/file_systems/netfs/server/SecurityContext.h
70
HashString fPath;
src/add-ons/kernel/file_systems/netfs/server/StatisticsManager.cpp
12
typedef HashMap<HashString, int32> UserCountMap;
src/add-ons/kernel/file_systems/netfs/server/StatisticsManager.cpp
63
HashString user(it.Next().key);
src/add-ons/kernel/file_systems/netfs/server/StatisticsManager.cpp
73
HashString fShare;
src/add-ons/kernel/file_systems/netfs/server/StatisticsManager.cpp
79
: HashMap<HashString, StatisticsManager::ShareStatistics*> {
src/add-ons/kernel/file_systems/netfs/server/VolumeManager.cpp
171
HashString toName;
src/add-ons/kernel/file_systems/netfs/shared/NetAddress.cpp
141
NetAddress::GetString(HashString* string, bool includePort) const
src/add-ons/kernel/file_systems/netfs/shared/RequestUnflattener.cpp
330
RequestUnflattener::ReadString(HashString& string)
src/add-ons/kernel/file_systems/netfs/shared/ServerInfo.cpp
11
HashString& string)
src/add-ons/print/transports/ipp/Ipp.cpp
43
typedef HashMap<HashString,IPPPrinter*> IPPPrinterMap;
src/add-ons/print/transports/usb_port/USBTransport.cpp
65
typedef HashMap<HashString,USBPrinter*> PrinterMap;
src/apps/drivesetup/Support.cpp
76
HashMap<HashString, partition_id>(),
src/apps/drivesetup/Support.h
25
class SpaceIDMap : public HashMap<HashString, partition_id> {
src/apps/haikudepot/icon/PackageIconDefaultRepository.cpp
43
HashString key(BString() << size);
src/apps/haikudepot/icon/PackageIconDefaultRepository.h
31
LRUCache<HashString, BitmapHolderRef>
src/apps/haikudepot/icon/PackageIconTarRepository.cpp
245
HashString key = _ToIconCacheKey(pkgName, storedSize, size);
src/apps/haikudepot/icon/PackageIconTarRepository.cpp
274
return fIconTarPtrs.Get(HashString(pkgName));
src/apps/haikudepot/icon/PackageIconTarRepository.cpp
298
const HashString
src/apps/haikudepot/icon/PackageIconTarRepository.cpp
302
return HashString(
src/apps/haikudepot/icon/PackageIconTarRepository.cpp
390
HashString key(pkgName);
src/apps/haikudepot/icon/PackageIconTarRepository.h
40
const HashString _ToIconCacheKey(const BString& pkgName, BitmapSize storedSize,
src/apps/haikudepot/icon/PackageIconTarRepository.h
55
LRUCache<HashString, BitmapHolderRef>
src/apps/haikudepot/icon/PackageIconTarRepository.h
57
HashMap<HashString, IconTarPtrRef>
src/apps/text_search/ChangesIterator.cpp
101
HashString key(path);
src/apps/text_search/ChangesIterator.cpp
112
HashString key(path);
src/apps/text_search/ChangesIterator.cpp
88
HashString key(path);
src/apps/webpositive/BrowserWindow.cpp
1821
HashString key(message);
src/apps/webpositive/CredentialsStorage.cpp
161
CredentialsStorage::Contains(const HashString& key)
src/apps/webpositive/CredentialsStorage.cpp
170
CredentialsStorage::PutCredentials(const HashString& key,
src/apps/webpositive/CredentialsStorage.cpp
180
CredentialsStorage::GetCredentials(const HashString& key)
src/apps/webpositive/CredentialsStorage.h
53
bool Contains(const BPrivate::HashString& key);
src/apps/webpositive/CredentialsStorage.h
54
status_t PutCredentials(const HashString& key,
src/apps/webpositive/CredentialsStorage.h
56
Credentials GetCredentials(const HashString& key);
src/kits/network/libnetservices/NetworkCookieJar.cpp
143
HashString key(cookie->Domain());
src/kits/network/libnetservices/NetworkCookieJarPrivate.h
30
HashString fKey;
src/kits/network/libnetservices/UrlContext.cpp
124
authentication = fAuthenticationMap->Get( HashString(domain.String(),
src/kits/network/libnetservices/UrlContext.cpp
22
SynchronizedHashMap<BPrivate::HashString, BHttpAuthentication*> {};
src/kits/network/libnetservices/UrlContext.cpp
38
fAuthenticationMap->Put(HashString("", 0), new BHttpAuthentication());
src/kits/network/libnetservices/UrlContext.cpp
69
BPrivate::HashString hostHash(domain.String(), domain.Length());
src/kits/shared/HashString.cpp
106
HashString::operator==(const HashString &string) const
src/kits/shared/HashString.cpp
114
HashString::_SetTo(const char *string, int32 length)
src/kits/shared/HashString.cpp
16
HashString::HashString()
src/kits/shared/HashString.cpp
23
HashString::HashString(const HashString &string)
src/kits/shared/HashString.cpp
31
HashString::HashString(const char *string, int32 length)
src/kits/shared/HashString.cpp
39
HashString::~HashString()
src/kits/shared/HashString.cpp
46
HashString::SetTo(const char *string, int32 maxLength)
src/kits/shared/HashString.cpp
59
HashString::Unset()
src/kits/shared/HashString.cpp
70
HashString::Truncate(int32 newLength)
src/kits/shared/HashString.cpp
88
HashString::GetString() const
src/kits/shared/HashString.cpp
96
HashString &
src/kits/shared/HashString.cpp
97
HashString::operator=(const HashString &string)
src/servers/midi/DeviceWatcher.cpp
36
using BPrivate::HashString;
src/tests/kits/shared/LRUCacheTest.cpp
100
BString resultLake = map.Remove(HashString("Lake"));
src/tests/kits/shared/LRUCacheTest.cpp
106
CPPUNIT_ASSERT_EQUAL(BString("Tirau"), map.Get(HashString("Town")));
src/tests/kits/shared/LRUCacheTest.cpp
107
CPPUNIT_ASSERT_EQUAL(BString(""), map.Get(HashString("Lake")));
src/tests/kits/shared/LRUCacheTest.cpp
108
CPPUNIT_ASSERT_EQUAL(BString(""), map.Get(HashString("Ocean")));
src/tests/kits/shared/LRUCacheTest.cpp
37
LRUCache<HashString, BString> map(5);
src/tests/kits/shared/LRUCacheTest.cpp
46
map.Put(HashString(tmpKey), tmpValue);
src/tests/kits/shared/LRUCacheTest.cpp
52
CPPUNIT_ASSERT_EQUAL(BString(""), map.Get(HashString("a")));
src/tests/kits/shared/LRUCacheTest.cpp
53
CPPUNIT_ASSERT_EQUAL(BString(""), map.Get(HashString("u")));
src/tests/kits/shared/LRUCacheTest.cpp
55
CPPUNIT_ASSERT_EQUAL(BString("zz"), map.Get(HashString("z")));
src/tests/kits/shared/LRUCacheTest.cpp
56
CPPUNIT_ASSERT_EQUAL(BString("yy"), map.Get(HashString("y")));
src/tests/kits/shared/LRUCacheTest.cpp
57
CPPUNIT_ASSERT_EQUAL(BString("xx"), map.Get(HashString("x")));
src/tests/kits/shared/LRUCacheTest.cpp
58
CPPUNIT_ASSERT_EQUAL(BString("ww"), map.Get(HashString("w")));
src/tests/kits/shared/LRUCacheTest.cpp
59
CPPUNIT_ASSERT_EQUAL(BString("vv"), map.Get(HashString("v")));
src/tests/kits/shared/LRUCacheTest.cpp
71
LRUCache<HashString, BString> map(3);
src/tests/kits/shared/LRUCacheTest.cpp
74
map.Put(HashString("Red"), "Rot");
src/tests/kits/shared/LRUCacheTest.cpp
75
map.Put(HashString("Yellow"), "Gelb");
src/tests/kits/shared/LRUCacheTest.cpp
76
map.Get(HashString("Red"));
src/tests/kits/shared/LRUCacheTest.cpp
77
map.Put(HashString("Green"), "Gruen");
src/tests/kits/shared/LRUCacheTest.cpp
78
map.Put(HashString("Purple"), "Lila");
src/tests/kits/shared/LRUCacheTest.cpp
82
CPPUNIT_ASSERT_EQUAL(BString(""), map.Get(HashString("Yellow")));
src/tests/kits/shared/LRUCacheTest.cpp
83
CPPUNIT_ASSERT_EQUAL(BString("Rot"), map.Get(HashString("Red")));
src/tests/kits/shared/LRUCacheTest.cpp
84
CPPUNIT_ASSERT_EQUAL(BString("Gruen"), map.Get(HashString("Green")));
src/tests/kits/shared/LRUCacheTest.cpp
85
CPPUNIT_ASSERT_EQUAL(BString("Lila"), map.Get(HashString("Purple")));
src/tests/kits/shared/LRUCacheTest.cpp
92
LRUCache<HashString, BString> map(3);
src/tests/kits/shared/LRUCacheTest.cpp
95
map.Put(HashString("Town"), "Tirau");
src/tests/kits/shared/LRUCacheTest.cpp
96
map.Put(HashString("Lake"), "Taupo");
src/tests/kits/shared/LRUCacheTest.cpp
99
BString resultOcean = map.Remove(HashString("Ocean"));