Searched refs:shares (Results 1 - 6 of 6) sorted by relevance

/haiku/src/add-ons/kernel/file_systems/netfs/netfs_server_prefs/
H A DNetFSServerRoster.h28 // shares
31 status_t GetShares(BMessage* shares);
H A DNetFSServerPrefs.cpp36 " list all users and all shares\n"
149 // get the shares
150 BMessage shares; local
151 error = roster.GetShares(&shares);
153 // list the shares
154 printf("shares\n");
157 for (int32 i = 0; shares.FindString("shares", i, &share) == B_OK; i++) {
160 if (shares.FindString("paths", i, &path) != B_OK)
H A DNetFSServerRoster.cpp221 NetFSServerRoster::GetShares(BMessage* shares) argument
224 if (!shares)
237 if (reply.FindMessage("shares", shares) != B_OK)
/haiku/src/add-ons/kernel/file_systems/netfs/server/
H A DSecurityContext.h106 status_t GetShares(BMessage* shares);
H A DNetFSServer.cpp525 // get the shares
527 BMessage shares; local
528 status_t error = fSecurityContext->GetShares(&shares);
530 error = reply.AddMessage("shares", &shares);
824 // load shares
1318 // get the shares from the security context
1319 BMessage shares;
1320 error = fSecurityContext->GetShares(&shares);
1324 // add the shares
[all...]
H A DSecurityContext.cpp413 // shares
416 archive->FindMessage("shares", i, &shareArchive) == B_OK;
510 // shares
517 error = archive->AddMessage("shares", &shareArchive);
908 SecurityContext::GetShares(BMessage* shares) argument
910 if (!shares)
915 // iterate through all shares and add their names to the message
919 status_t error = shares->AddString("shares", share->GetName());
924 error = shares
[all...]

Completed in 60 milliseconds