gcc 3 fixes
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@4227 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
72f334d12f
commit
17e6de7a37
@ -45,10 +45,10 @@ void *operator new (size_t) __THROW (std::bad_alloc);
|
|||||||
void *operator new[] (size_t) __THROW (std::bad_alloc);
|
void *operator new[] (size_t) __THROW (std::bad_alloc);
|
||||||
void operator delete (void *) __THROW(__nothing);
|
void operator delete (void *) __THROW(__nothing);
|
||||||
void operator delete[] (void *) __THROW(__nothing);
|
void operator delete[] (void *) __THROW(__nothing);
|
||||||
void *operator new (size_t, const nothrow_t&) __THROW(__nothing);
|
void *operator new (size_t, const std::nothrow_t&) __THROW(__nothing);
|
||||||
void *operator new[] (size_t, const nothrow_t&) __THROW(__nothing);
|
void *operator new[] (size_t, const std::nothrow_t&) __THROW(__nothing);
|
||||||
void operator delete (void *, const nothrow_t&) __THROW(__nothing);
|
void operator delete (void *, const std::nothrow_t&) __THROW(__nothing);
|
||||||
void operator delete[] (void *, const nothrow_t&) __THROW(__nothing);
|
void operator delete[] (void *, const std::nothrow_t&) __THROW(__nothing);
|
||||||
|
|
||||||
// default placement versions of operator new
|
// default placement versions of operator new
|
||||||
#ifndef _BUILDING_NEW_CPP_
|
#ifndef _BUILDING_NEW_CPP_
|
||||||
|
@ -66,7 +66,6 @@ class BLooperList
|
|||||||
BLooper* LooperForName(const char* name);
|
BLooper* LooperForName(const char* name);
|
||||||
BLooper* LooperForPort(port_id port);
|
BLooper* LooperForPort(port_id port);
|
||||||
|
|
||||||
private:
|
|
||||||
struct LooperData
|
struct LooperData
|
||||||
{
|
{
|
||||||
LooperData();
|
LooperData();
|
||||||
@ -78,6 +77,7 @@ class BLooperList
|
|||||||
uint32 id;
|
uint32 id;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
private:
|
||||||
static bool EmptySlotPred(LooperData& Data);
|
static bool EmptySlotPred(LooperData& Data);
|
||||||
struct FindLooperPred
|
struct FindLooperPred
|
||||||
{
|
{
|
||||||
|
@ -93,6 +93,7 @@ public:
|
|||||||
|
|
||||||
template<class T1>
|
template<class T1>
|
||||||
status_t AddData(const char* name, const T1& data, type_code type);
|
status_t AddData(const char* name, const T1& data, type_code type);
|
||||||
|
status_t AddData(const char* name, type_code type, const void* data, ssize_t numBytes, bool is_fixed_size, int32);
|
||||||
status_t FindData(const char* name, type_code type, int32 index,
|
status_t FindData(const char* name, type_code type, int32 index,
|
||||||
const void** data, ssize_t* numBytes) const;
|
const void** data, ssize_t* numBytes) const;
|
||||||
template<class T1>
|
template<class T1>
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
#include <SupportDefs.h>
|
#include <SupportDefs.h>
|
||||||
|
|
||||||
#include <list>
|
#include <list>
|
||||||
#include <pair.h>
|
#include <utility>
|
||||||
|
|
||||||
struct entry_ref;
|
struct entry_ref;
|
||||||
class BMessage;
|
class BMessage;
|
||||||
|
@ -39,11 +39,6 @@ public:
|
|||||||
status_t DeleteSnifferRule(const char *type);
|
status_t DeleteSnifferRule(const char *type);
|
||||||
|
|
||||||
void PrintToStream() const;
|
void PrintToStream() const;
|
||||||
private:
|
|
||||||
status_t BuildRuleList();
|
|
||||||
status_t GuessMimeType(BPositionIO *data, BString *type);
|
|
||||||
ssize_t MaxBytesNeeded();
|
|
||||||
status_t ProcessType(const char *type, ssize_t *bytesNeeded);
|
|
||||||
|
|
||||||
struct sniffer_rule {
|
struct sniffer_rule {
|
||||||
std::string type; // The mime type that own the rule
|
std::string type; // The mime type that own the rule
|
||||||
@ -53,6 +48,11 @@ private:
|
|||||||
sniffer_rule(BPrivate::Storage::Sniffer::Rule *rule = NULL);
|
sniffer_rule(BPrivate::Storage::Sniffer::Rule *rule = NULL);
|
||||||
~sniffer_rule();
|
~sniffer_rule();
|
||||||
};
|
};
|
||||||
|
private:
|
||||||
|
status_t BuildRuleList();
|
||||||
|
status_t GuessMimeType(BPositionIO *data, BString *type);
|
||||||
|
ssize_t MaxBytesNeeded();
|
||||||
|
status_t ProcessType(const char *type, ssize_t *bytesNeeded);
|
||||||
|
|
||||||
std::list<sniffer_rule> fRuleList;
|
std::list<sniffer_rule> fRuleList;
|
||||||
ssize_t fMaxBytesNeeded;
|
ssize_t fMaxBytesNeeded;
|
||||||
|
@ -504,7 +504,7 @@ void BApplication::DispatchMessage(BMessage* message, BHandler* handler)
|
|||||||
const char *arg = NULL;
|
const char *arg = NULL;
|
||||||
error = message->FindString("argv", i, &arg);
|
error = message->FindString("argv", i, &arg);
|
||||||
if (error == B_OK && arg) {
|
if (error == B_OK && arg) {
|
||||||
argv[i] = new(nothrow) char[strlen(arg) + 1];
|
argv[i] = new(std::nothrow) char[strlen(arg) + 1];
|
||||||
if (argv[i])
|
if (argv[i])
|
||||||
strcpy(argv[i], arg);
|
strcpy(argv[i], arg);
|
||||||
else
|
else
|
||||||
|
@ -73,8 +73,8 @@ port_id _get_looper_port_(const BLooper* looper);
|
|||||||
bool _use_preferred_target_(BMessage* msg) { return msg->fPreferred; }
|
bool _use_preferred_target_(BMessage* msg) { return msg->fPreferred; }
|
||||||
int32 _get_message_target_(BMessage* msg) { return msg->fTarget; }
|
int32 _get_message_target_(BMessage* msg) { return msg->fTarget; }
|
||||||
|
|
||||||
uint32 BLooper::sLooperID = B_ERROR;
|
uint32 BLooper::sLooperID = (uint32)B_ERROR;
|
||||||
team_id BLooper::sTeamID = B_ERROR;
|
team_id BLooper::sTeamID = (team_id)B_ERROR;
|
||||||
|
|
||||||
enum
|
enum
|
||||||
{
|
{
|
||||||
@ -882,7 +882,7 @@ void BLooper::SetCommonFilterList(BList* filters)
|
|||||||
{
|
{
|
||||||
for (int32 i = 0; i < fCommonFilters->CountItems(); ++i)
|
for (int32 i = 0; i < fCommonFilters->CountItems(); ++i)
|
||||||
{
|
{
|
||||||
delete fCommonFilters->ItemAt(i);
|
delete (BMessageFilter*)fCommonFilters->ItemAt(i);
|
||||||
}
|
}
|
||||||
|
|
||||||
delete fCommonFilters;
|
delete fCommonFilters;
|
||||||
@ -1251,7 +1251,7 @@ DBG(OUT("BLooper::ReadMessageFromPort()\n"));
|
|||||||
|
|
||||||
if (msgbuffer)
|
if (msgbuffer)
|
||||||
{
|
{
|
||||||
delete[] msgbuffer;
|
delete[] (int8*)msgbuffer;
|
||||||
}
|
}
|
||||||
|
|
||||||
DBG(OUT("BLooper::ReadMessageFromPort() done: %p\n", bmsg));
|
DBG(OUT("BLooper::ReadMessageFromPort() done: %p\n", bmsg));
|
||||||
|
@ -84,7 +84,7 @@ RegistrarThreadManager::LaunchThread(RegistrarThread *thread)
|
|||||||
{
|
{
|
||||||
status_t err = thread ? B_OK : B_BAD_VALUE;
|
status_t err = thread ? B_OK : B_BAD_VALUE;
|
||||||
if (!err)
|
if (!err)
|
||||||
err = fThreadCount < kThreadLimit ? B_OK : B_NO_MORE_THREADS;
|
err = fThreadCount < kThreadLimit ? (status_t)B_OK : (status_t)B_NO_MORE_THREADS;
|
||||||
|
|
||||||
if (!err) {
|
if (!err) {
|
||||||
fThreads.push_back(thread);
|
fThreads.push_back(thread);
|
||||||
|
@ -30,6 +30,7 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
|
||||||
#include <AppFileInfo.h>
|
#include <AppFileInfo.h>
|
||||||
#include <Application.h>
|
#include <Application.h>
|
||||||
@ -1055,7 +1056,7 @@ BRoster::GetRecentDocuments(BMessage *refList, int32 maxCount,
|
|||||||
err = msg.AddString("app sig", appSig);
|
err = msg.AddString("app sig", appSig);
|
||||||
fMess.SendMessage(&msg, &reply);
|
fMess.SendMessage(&msg, &reply);
|
||||||
if (!err)
|
if (!err)
|
||||||
err = reply.what == B_REG_RESULT ? B_OK : B_BAD_REPLY;
|
err = reply.what == B_REG_RESULT ? (status_t)B_OK : (status_t)B_BAD_REPLY;
|
||||||
if (!err)
|
if (!err)
|
||||||
err = reply.FindInt32("result", &result);
|
err = reply.FindInt32("result", &result);
|
||||||
if (!err)
|
if (!err)
|
||||||
@ -1096,7 +1097,7 @@ BRoster::GetRecentDocuments(BMessage *refList, int32 maxCount,
|
|||||||
err = msg.AddString("app sig", appSig);
|
err = msg.AddString("app sig", appSig);
|
||||||
fMess.SendMessage(&msg, &reply);
|
fMess.SendMessage(&msg, &reply);
|
||||||
if (!err)
|
if (!err)
|
||||||
err = reply.what == B_REG_RESULT ? B_OK : B_BAD_REPLY;
|
err = reply.what == B_REG_RESULT ? (status_t)B_OK : (status_t)B_BAD_REPLY;
|
||||||
if (!err)
|
if (!err)
|
||||||
err = reply.FindInt32("result", &result);
|
err = reply.FindInt32("result", &result);
|
||||||
if (!err)
|
if (!err)
|
||||||
@ -1132,7 +1133,7 @@ BRoster::GetRecentFolders(BMessage *refList, int32 maxCount,
|
|||||||
err = msg.AddString("app sig", appSig);
|
err = msg.AddString("app sig", appSig);
|
||||||
fMess.SendMessage(&msg, &reply);
|
fMess.SendMessage(&msg, &reply);
|
||||||
if (!err)
|
if (!err)
|
||||||
err = reply.what == B_REG_RESULT ? B_OK : B_BAD_REPLY;
|
err = reply.what == B_REG_RESULT ? (status_t)B_OK : (status_t)B_BAD_REPLY;
|
||||||
if (!err)
|
if (!err)
|
||||||
err = reply.FindInt32("result", &result);
|
err = reply.FindInt32("result", &result);
|
||||||
if (!err)
|
if (!err)
|
||||||
@ -1165,7 +1166,7 @@ BRoster::GetRecentApps(BMessage *refList, int32 maxCount) const
|
|||||||
}
|
}
|
||||||
fMess.SendMessage(&msg, &reply);
|
fMess.SendMessage(&msg, &reply);
|
||||||
if (!err)
|
if (!err)
|
||||||
err = reply.what == B_REG_RESULT ? B_OK : B_BAD_REPLY;
|
err = reply.what == B_REG_RESULT ? (status_t)B_OK : (status_t)B_BAD_REPLY;
|
||||||
if (!err)
|
if (!err)
|
||||||
err = reply.FindInt32("result", &result);
|
err = reply.FindInt32("result", &result);
|
||||||
if (!err)
|
if (!err)
|
||||||
@ -1205,7 +1206,7 @@ BRoster::AddToRecentDocuments(const entry_ref *doc, const char *appSig) const
|
|||||||
err = msg.AddString("app sig", (appSig ? appSig : callingAppSig));
|
err = msg.AddString("app sig", (appSig ? appSig : callingAppSig));
|
||||||
fMess.SendMessage(&msg, &reply);
|
fMess.SendMessage(&msg, &reply);
|
||||||
if (!err)
|
if (!err)
|
||||||
err = reply.what == B_REG_RESULT ? B_OK : B_BAD_REPLY;
|
err = reply.what == B_REG_RESULT ? (status_t)B_OK : (status_t)B_BAD_REPLY;
|
||||||
if (!err)
|
if (!err)
|
||||||
err = reply.FindInt32("result", &result);
|
err = reply.FindInt32("result", &result);
|
||||||
if (!err)
|
if (!err)
|
||||||
@ -1242,7 +1243,7 @@ BRoster::AddToRecentFolders(const entry_ref *folder, const char *appSig) const
|
|||||||
err = msg.AddString("app sig", (appSig ? appSig : callingAppSig));
|
err = msg.AddString("app sig", (appSig ? appSig : callingAppSig));
|
||||||
fMess.SendMessage(&msg, &reply);
|
fMess.SendMessage(&msg, &reply);
|
||||||
if (!err)
|
if (!err)
|
||||||
err = reply.what == B_REG_RESULT ? B_OK : B_BAD_REPLY;
|
err = reply.what == B_REG_RESULT ? (status_t)B_OK : (status_t)B_BAD_REPLY;
|
||||||
if (!err)
|
if (!err)
|
||||||
err = reply.FindInt32("result", &result);
|
err = reply.FindInt32("result", &result);
|
||||||
if (!err)
|
if (!err)
|
||||||
@ -1748,7 +1749,7 @@ DBG(OUT("BRoster::xLaunchAppPrivate() done: %s (%lx)\n", strerror(error), error)
|
|||||||
bool
|
bool
|
||||||
BRoster::UpdateActiveApp(team_id team) const
|
BRoster::UpdateActiveApp(team_id team) const
|
||||||
{
|
{
|
||||||
status_t error = (team >= 0 ? B_OK : B_BAD_TEAM_ID);
|
status_t error = (team >= 0 ? (status_t)B_OK : (status_t)B_BAD_TEAM_ID);
|
||||||
// compose the request message
|
// compose the request message
|
||||||
BMessage request(B_REG_ACTIVATE_APP);
|
BMessage request(B_REG_ACTIVATE_APP);
|
||||||
if (error == B_OK)
|
if (error == B_OK)
|
||||||
@ -2208,7 +2209,7 @@ BRoster::AddToRecentApps(const char *appSig) const
|
|||||||
// evaluate the reply
|
// evaluate the reply
|
||||||
status_t result;
|
status_t result;
|
||||||
if (error == B_OK)
|
if (error == B_OK)
|
||||||
error = reply.what == B_REG_RESULT ? B_OK : B_BAD_REPLY;
|
error = reply.what == B_REG_RESULT ? (status_t)B_OK : (status_t)B_BAD_REPLY;
|
||||||
if (error == B_OK)
|
if (error == B_OK)
|
||||||
error = reply.FindInt32("result", &result);
|
error = reply.FindInt32("result", &result);
|
||||||
if (error == B_OK)
|
if (error == B_OK)
|
||||||
@ -2273,7 +2274,7 @@ BRoster::LoadRecentLists(const char *filename) const
|
|||||||
// evaluate the reply
|
// evaluate the reply
|
||||||
status_t result;
|
status_t result;
|
||||||
if (error == B_OK)
|
if (error == B_OK)
|
||||||
error = reply.what == B_REG_RESULT ? B_OK : B_BAD_REPLY;
|
error = reply.what == B_REG_RESULT ? (status_t)B_OK : (status_t)B_BAD_REPLY;
|
||||||
if (error == B_OK)
|
if (error == B_OK)
|
||||||
error = reply.FindInt32("result", &result);
|
error = reply.FindInt32("result", &result);
|
||||||
if (error == B_OK)
|
if (error == B_OK)
|
||||||
@ -2303,7 +2304,7 @@ BRoster::SaveRecentLists(const char *filename) const
|
|||||||
// evaluate the reply
|
// evaluate the reply
|
||||||
status_t result;
|
status_t result;
|
||||||
if (error == B_OK)
|
if (error == B_OK)
|
||||||
error = reply.what == B_REG_RESULT ? B_OK : B_BAD_REPLY;
|
error = reply.what == B_REG_RESULT ? (status_t)B_OK : (status_t)B_BAD_REPLY;
|
||||||
if (error == B_OK)
|
if (error == B_OK)
|
||||||
error = reply.FindInt32("result", &result);
|
error = reply.FindInt32("result", &result);
|
||||||
if (error == B_OK)
|
if (error == B_OK)
|
||||||
|
@ -58,8 +58,8 @@ using namespace std;
|
|||||||
|
|
||||||
//! Creates an unitialized entry_ref.
|
//! Creates an unitialized entry_ref.
|
||||||
entry_ref::entry_ref()
|
entry_ref::entry_ref()
|
||||||
: device(-1),
|
: device((dev_t)-1),
|
||||||
directory(-1),
|
directory((ino_t)-1),
|
||||||
name(NULL)
|
name(NULL)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
@ -590,8 +590,8 @@ status_t BEntry::GetParent(BEntry *entry) const
|
|||||||
if (status == B_OK) {
|
if (status == B_OK) {
|
||||||
|
|
||||||
// Verify we aren't an entry representing "/"
|
// Verify we aren't an entry representing "/"
|
||||||
status = BPrivate::Storage::entry_ref_is_root_dir(&ref) ? B_ENTRY_NOT_FOUND
|
status = BPrivate::Storage::entry_ref_is_root_dir(&ref) ? (status_t)B_ENTRY_NOT_FOUND
|
||||||
: B_OK ;
|
: (status_t)B_OK ;
|
||||||
if (status == B_OK) {
|
if (status == B_OK) {
|
||||||
|
|
||||||
status = ref.set_name(".");
|
status = ref.set_name(".");
|
||||||
@ -637,7 +637,7 @@ BEntry::GetParent(BDirectory *dir) const
|
|||||||
if (status == B_OK) {
|
if (status == B_OK) {
|
||||||
|
|
||||||
// Verify we aren't an entry representing "/"
|
// Verify we aren't an entry representing "/"
|
||||||
status = BPrivate::Storage::entry_ref_is_root_dir(&ref) ? B_ENTRY_NOT_FOUND : B_OK ;
|
status = BPrivate::Storage::entry_ref_is_root_dir(&ref) ? (status_t)B_ENTRY_NOT_FOUND : (status_t)B_OK ;
|
||||||
if (status == B_OK) {
|
if (status == B_OK) {
|
||||||
|
|
||||||
// Now point the entry_ref to the parent directory (instead of ourselves)
|
// Now point the entry_ref to the parent directory (instead of ourselves)
|
||||||
|
@ -417,7 +417,7 @@ BFile::WriteAt(off_t location, const void *buffer, size_t size)
|
|||||||
off_t
|
off_t
|
||||||
BFile::Seek(off_t offset, uint32 seekMode)
|
BFile::Seek(off_t offset, uint32 seekMode)
|
||||||
{
|
{
|
||||||
off_t result = (InitCheck() == B_OK ? B_OK : B_FILE_ERROR);
|
off_t result = (InitCheck() == B_OK ? (off_t)B_OK : (off_t)B_FILE_ERROR);
|
||||||
if (result == B_OK)
|
if (result == B_OK)
|
||||||
result = BPrivate::Storage::seek(get_fd(), offset, seekMode);
|
result = BPrivate::Storage::seek(get_fd(), offset, seekMode);
|
||||||
return result;
|
return result;
|
||||||
@ -433,7 +433,7 @@ BFile::Seek(off_t offset, uint32 seekMode)
|
|||||||
off_t
|
off_t
|
||||||
BFile::Position() const
|
BFile::Position() const
|
||||||
{
|
{
|
||||||
off_t result = (InitCheck() == B_OK ? B_OK : B_FILE_ERROR);
|
off_t result = (InitCheck() == B_OK ? (off_t)B_OK : (off_t)B_FILE_ERROR);
|
||||||
if (result == B_OK)
|
if (result == B_OK)
|
||||||
result = BPrivate::Storage::get_position(get_fd());
|
result = BPrivate::Storage::get_position(get_fd());
|
||||||
return result;
|
return result;
|
||||||
|
@ -294,7 +294,7 @@ find_directory(directory_which which, BPath *path, bool createIt,
|
|||||||
{
|
{
|
||||||
status_t error = (path ? B_OK : B_BAD_VALUE);
|
status_t error = (path ? B_OK : B_BAD_VALUE);
|
||||||
if (error == B_OK) {
|
if (error == B_OK) {
|
||||||
dev_t device = -1;
|
dev_t device = (dev_t)-1;
|
||||||
if (volume && volume->InitCheck() == B_OK)
|
if (volume && volume->InitCheck() == B_OK)
|
||||||
device = volume->Device();
|
device = volume->Device();
|
||||||
error = find_directory(which, *path, createIt, device);
|
error = find_directory(which, *path, createIt, device);
|
||||||
|
@ -323,7 +323,7 @@ BMimeType::Install()
|
|||||||
if (!err)
|
if (!err)
|
||||||
err = BRoster::Private().SendTo(&msg, &reply, true);
|
err = BRoster::Private().SendTo(&msg, &reply, true);
|
||||||
if (!err)
|
if (!err)
|
||||||
err = reply.what == B_REG_RESULT ? B_OK : B_BAD_REPLY;
|
err = reply.what == B_REG_RESULT ? (status_t)B_OK : (status_t)B_BAD_REPLY;
|
||||||
if (!err)
|
if (!err)
|
||||||
err = reply.FindInt32("result", &result);
|
err = reply.FindInt32("result", &result);
|
||||||
if (!err)
|
if (!err)
|
||||||
@ -359,7 +359,7 @@ BMimeType::Delete()
|
|||||||
if (!err)
|
if (!err)
|
||||||
err = BRoster::Private().SendTo(&msg, &reply, true);
|
err = BRoster::Private().SendTo(&msg, &reply, true);
|
||||||
if (!err)
|
if (!err)
|
||||||
err = reply.what == B_REG_RESULT ? B_OK : B_BAD_REPLY;
|
err = reply.what == B_REG_RESULT ? (status_t)B_OK : (status_t)B_BAD_REPLY;
|
||||||
if (!err)
|
if (!err)
|
||||||
err = reply.FindInt32("result", &result);
|
err = reply.FindInt32("result", &result);
|
||||||
if (!err)
|
if (!err)
|
||||||
@ -632,7 +632,7 @@ BMimeType::GetSupportingApps(BMessage *signatures) const
|
|||||||
if (!err)
|
if (!err)
|
||||||
err = BRoster::Private().SendTo(&msg, &reply, true);
|
err = BRoster::Private().SendTo(&msg, &reply, true);
|
||||||
if (!err)
|
if (!err)
|
||||||
err = reply.what == B_REG_RESULT ? B_OK : B_BAD_REPLY;
|
err = reply.what == B_REG_RESULT ? (status_t)B_OK : (status_t)B_BAD_REPLY;
|
||||||
if (!err)
|
if (!err)
|
||||||
err = reply.FindInt32("result", &result);
|
err = reply.FindInt32("result", &result);
|
||||||
if (!err)
|
if (!err)
|
||||||
@ -706,7 +706,7 @@ BMimeType::SetPreferredApp(const char *signature, app_verb verb)
|
|||||||
if (!err)
|
if (!err)
|
||||||
err = BRoster::Private().SendTo(&msg, &reply, true);
|
err = BRoster::Private().SendTo(&msg, &reply, true);
|
||||||
if (!err)
|
if (!err)
|
||||||
err = reply.what == B_REG_RESULT ? B_OK : B_BAD_REPLY;
|
err = reply.what == B_REG_RESULT ? (status_t)B_OK : (status_t)B_BAD_REPLY;
|
||||||
if (!err)
|
if (!err)
|
||||||
err = reply.FindInt32("result", &result);
|
err = reply.FindInt32("result", &result);
|
||||||
if (!err)
|
if (!err)
|
||||||
@ -782,7 +782,7 @@ BMimeType::SetAttrInfo(const BMessage *info)
|
|||||||
if (!err)
|
if (!err)
|
||||||
err = BRoster::Private().SendTo(&msg, &reply, true);
|
err = BRoster::Private().SendTo(&msg, &reply, true);
|
||||||
if (!err)
|
if (!err)
|
||||||
err = reply.what == B_REG_RESULT ? B_OK : B_BAD_REPLY;
|
err = reply.what == B_REG_RESULT ? (status_t)B_OK : (status_t)B_BAD_REPLY;
|
||||||
if (!err)
|
if (!err)
|
||||||
err = reply.FindInt32("result", &result);
|
err = reply.FindInt32("result", &result);
|
||||||
if (!err)
|
if (!err)
|
||||||
@ -839,7 +839,7 @@ BMimeType::SetFileExtensions(const BMessage *extensions)
|
|||||||
if (!err)
|
if (!err)
|
||||||
err = BRoster::Private().SendTo(&msg, &reply, true);
|
err = BRoster::Private().SendTo(&msg, &reply, true);
|
||||||
if (!err)
|
if (!err)
|
||||||
err = reply.what == B_REG_RESULT ? B_OK : B_BAD_REPLY;
|
err = reply.what == B_REG_RESULT ? (status_t)B_OK : (status_t)B_BAD_REPLY;
|
||||||
if (!err)
|
if (!err)
|
||||||
err = reply.FindInt32("result", &result);
|
err = reply.FindInt32("result", &result);
|
||||||
if (!err)
|
if (!err)
|
||||||
@ -881,7 +881,7 @@ BMimeType::SetShortDescription(const char *description)
|
|||||||
if (!err)
|
if (!err)
|
||||||
err = BRoster::Private().SendTo(&msg, &reply, true);
|
err = BRoster::Private().SendTo(&msg, &reply, true);
|
||||||
if (!err)
|
if (!err)
|
||||||
err = reply.what == B_REG_RESULT ? B_OK : B_BAD_REPLY;
|
err = reply.what == B_REG_RESULT ? (status_t)B_OK : (status_t)B_BAD_REPLY;
|
||||||
if (!err)
|
if (!err)
|
||||||
err = reply.FindInt32("result", &result);
|
err = reply.FindInt32("result", &result);
|
||||||
if (!err)
|
if (!err)
|
||||||
@ -923,7 +923,7 @@ BMimeType::SetLongDescription(const char *description)
|
|||||||
if (!err)
|
if (!err)
|
||||||
err = BRoster::Private().SendTo(&msg, &reply, true);
|
err = BRoster::Private().SendTo(&msg, &reply, true);
|
||||||
if (!err)
|
if (!err)
|
||||||
err = reply.what == B_REG_RESULT ? B_OK : B_BAD_REPLY;
|
err = reply.what == B_REG_RESULT ? (status_t)B_OK : (status_t)B_BAD_REPLY;
|
||||||
if (!err)
|
if (!err)
|
||||||
err = reply.FindInt32("result", &result);
|
err = reply.FindInt32("result", &result);
|
||||||
if (!err)
|
if (!err)
|
||||||
@ -959,7 +959,7 @@ BMimeType::GetInstalledSupertypes(BMessage *supertypes)
|
|||||||
if (!err)
|
if (!err)
|
||||||
err = BRoster::Private().SendTo(&msg, &reply, true);
|
err = BRoster::Private().SendTo(&msg, &reply, true);
|
||||||
if (!err)
|
if (!err)
|
||||||
err = reply.what == B_REG_RESULT ? B_OK : B_BAD_REPLY;
|
err = reply.what == B_REG_RESULT ? (status_t)B_OK : (status_t)B_BAD_REPLY;
|
||||||
if (!err)
|
if (!err)
|
||||||
err = reply.FindInt32("result", &result);
|
err = reply.FindInt32("result", &result);
|
||||||
if (!err)
|
if (!err)
|
||||||
@ -1018,7 +1018,7 @@ BMimeType::GetInstalledTypes(const char *supertype, BMessage *types)
|
|||||||
if (!err)
|
if (!err)
|
||||||
err = BRoster::Private().SendTo(&msg, &reply, true);
|
err = BRoster::Private().SendTo(&msg, &reply, true);
|
||||||
if (!err)
|
if (!err)
|
||||||
err = reply.what == B_REG_RESULT ? B_OK : B_BAD_REPLY;
|
err = reply.what == B_REG_RESULT ? (status_t)B_OK : (status_t)B_BAD_REPLY;
|
||||||
if (!err)
|
if (!err)
|
||||||
err = reply.FindInt32("result", &result);
|
err = reply.FindInt32("result", &result);
|
||||||
if (!err)
|
if (!err)
|
||||||
@ -1166,7 +1166,7 @@ BMimeType::SetAppHint(const entry_ref *ref)
|
|||||||
if (!err)
|
if (!err)
|
||||||
err = BRoster::Private().SendTo(&msg, &reply, true);
|
err = BRoster::Private().SendTo(&msg, &reply, true);
|
||||||
if (!err)
|
if (!err)
|
||||||
err = reply.what == B_REG_RESULT ? B_OK : B_BAD_REPLY;
|
err = reply.what == B_REG_RESULT ? (status_t)B_OK : (status_t)B_BAD_REPLY;
|
||||||
if (!err)
|
if (!err)
|
||||||
err = reply.FindInt32("result", &result);
|
err = reply.FindInt32("result", &result);
|
||||||
if (!err)
|
if (!err)
|
||||||
@ -1282,13 +1282,13 @@ BMimeType::SetIconForType(const char *type, const BBitmap *icon, icon_size which
|
|||||||
if (!err)
|
if (!err)
|
||||||
err = BRoster::Private().SendTo(&msg, &reply, true);
|
err = BRoster::Private().SendTo(&msg, &reply, true);
|
||||||
if (!err)
|
if (!err)
|
||||||
err = reply.what == B_REG_RESULT ? B_OK : B_BAD_REPLY;
|
err = reply.what == B_REG_RESULT ? (status_t)B_OK : (status_t)B_BAD_REPLY;
|
||||||
if (!err)
|
if (!err)
|
||||||
err = reply.FindInt32("result", &result);
|
err = reply.FindInt32("result", &result);
|
||||||
if (!err)
|
if (!err)
|
||||||
err = result;
|
err = result;
|
||||||
|
|
||||||
delete [] data;
|
delete [] (int8*)data;
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1348,7 +1348,7 @@ BMimeType::SetSnifferRule(const char *rule)
|
|||||||
if (!err)
|
if (!err)
|
||||||
err = BRoster::Private().SendTo(&msg, &reply, true);
|
err = BRoster::Private().SendTo(&msg, &reply, true);
|
||||||
if (!err)
|
if (!err)
|
||||||
err = reply.what == B_REG_RESULT ? B_OK : B_BAD_REPLY;
|
err = reply.what == B_REG_RESULT ? (status_t)B_OK : (status_t)B_BAD_REPLY;
|
||||||
if (!err)
|
if (!err)
|
||||||
err = reply.FindInt32("result", &result);
|
err = reply.FindInt32("result", &result);
|
||||||
if (!err)
|
if (!err)
|
||||||
@ -1477,7 +1477,7 @@ BMimeType::GuessMimeType(const entry_ref *file, BMimeType *type)
|
|||||||
if (!err)
|
if (!err)
|
||||||
err = BRoster::Private().SendTo(&msg, &reply, true);
|
err = BRoster::Private().SendTo(&msg, &reply, true);
|
||||||
if (!err)
|
if (!err)
|
||||||
err = reply.what == B_REG_RESULT ? B_OK : B_BAD_REPLY;
|
err = reply.what == B_REG_RESULT ? (status_t)B_OK : (status_t)B_BAD_REPLY;
|
||||||
if (!err)
|
if (!err)
|
||||||
err = reply.FindInt32("result", &result);
|
err = reply.FindInt32("result", &result);
|
||||||
if (!err)
|
if (!err)
|
||||||
@ -1515,7 +1515,7 @@ BMimeType::GuessMimeType(const void *buffer, int32 length, BMimeType *type)
|
|||||||
if (!err)
|
if (!err)
|
||||||
err = BRoster::Private().SendTo(&msg, &reply, true);
|
err = BRoster::Private().SendTo(&msg, &reply, true);
|
||||||
if (!err)
|
if (!err)
|
||||||
err = reply.what == B_REG_RESULT ? B_OK : B_BAD_REPLY;
|
err = reply.what == B_REG_RESULT ? (status_t)B_OK : (status_t)B_BAD_REPLY;
|
||||||
if (!err)
|
if (!err)
|
||||||
err = reply.FindInt32("result", &result);
|
err = reply.FindInt32("result", &result);
|
||||||
if (!err)
|
if (!err)
|
||||||
@ -1556,7 +1556,7 @@ BMimeType::GuessMimeType(const char *filename, BMimeType *type)
|
|||||||
if (!err)
|
if (!err)
|
||||||
err = BRoster::Private().SendTo(&msg, &reply, true);
|
err = BRoster::Private().SendTo(&msg, &reply, true);
|
||||||
if (!err)
|
if (!err)
|
||||||
err = reply.what == B_REG_RESULT ? B_OK : B_BAD_REPLY;
|
err = reply.what == B_REG_RESULT ? (status_t)B_OK : (status_t)B_BAD_REPLY;
|
||||||
if (!err)
|
if (!err)
|
||||||
err = reply.FindInt32("result", &result);
|
err = reply.FindInt32("result", &result);
|
||||||
if (!err)
|
if (!err)
|
||||||
@ -1590,7 +1590,7 @@ BMimeType::StartWatching(BMessenger target)
|
|||||||
if (!err)
|
if (!err)
|
||||||
err = BRoster::Private().SendTo(&msg, &reply, true);
|
err = BRoster::Private().SendTo(&msg, &reply, true);
|
||||||
if (!err)
|
if (!err)
|
||||||
err = reply.what == B_REG_RESULT ? B_OK : B_BAD_REPLY;
|
err = reply.what == B_REG_RESULT ? (status_t)B_OK : (status_t)B_BAD_REPLY;
|
||||||
if (!err)
|
if (!err)
|
||||||
err = reply.FindInt32("result", &result);
|
err = reply.FindInt32("result", &result);
|
||||||
if (!err)
|
if (!err)
|
||||||
@ -1619,7 +1619,7 @@ BMimeType::StopWatching(BMessenger target)
|
|||||||
if (!err)
|
if (!err)
|
||||||
err = BRoster::Private().SendTo(&msg, &reply, true);
|
err = BRoster::Private().SendTo(&msg, &reply, true);
|
||||||
if (!err)
|
if (!err)
|
||||||
err = reply.what == B_REG_RESULT ? B_OK : B_BAD_REPLY;
|
err = reply.what == B_REG_RESULT ? (status_t)B_OK : (status_t)B_BAD_REPLY;
|
||||||
if (!err)
|
if (!err)
|
||||||
err = reply.FindInt32("result", &result);
|
err = reply.FindInt32("result", &result);
|
||||||
if (!err)
|
if (!err)
|
||||||
@ -1697,7 +1697,7 @@ BMimeType::DeleteIconForType(const char *type, icon_size which)
|
|||||||
// DeletePreferredApp
|
// DeletePreferredApp
|
||||||
//! Deletes the mime type's preferred app for the given verb
|
//! Deletes the mime type's preferred app for the given verb
|
||||||
status_t
|
status_t
|
||||||
BMimeType::DeletePreferredApp(app_verb verb = B_OPEN)
|
BMimeType::DeletePreferredApp(app_verb verb)
|
||||||
{
|
{
|
||||||
return SetPreferredApp(NULL, verb);
|
return SetPreferredApp(NULL, verb);
|
||||||
}
|
}
|
||||||
@ -1799,7 +1799,7 @@ BMimeType::SetSupportedTypes(const BMessage *types, bool fullSync)
|
|||||||
if (!err)
|
if (!err)
|
||||||
err = BRoster::Private().SendTo(&msg, &reply, true);
|
err = BRoster::Private().SendTo(&msg, &reply, true);
|
||||||
if (!err)
|
if (!err)
|
||||||
err = reply.what == B_REG_RESULT ? B_OK : B_BAD_REPLY;
|
err = reply.what == B_REG_RESULT ? (status_t)B_OK : (status_t)B_BAD_REPLY;
|
||||||
if (!err)
|
if (!err)
|
||||||
err = reply.FindInt32("result", &result);
|
err = reply.FindInt32("result", &result);
|
||||||
if (!err)
|
if (!err)
|
||||||
@ -1837,7 +1837,7 @@ BMimeType::GetAssociatedTypes(const char *extension, BMessage *types)
|
|||||||
if (!err)
|
if (!err)
|
||||||
err = BRoster::Private().SendTo(&msg, &reply, true);
|
err = BRoster::Private().SendTo(&msg, &reply, true);
|
||||||
if (!err)
|
if (!err)
|
||||||
err = reply.what == B_REG_RESULT ? B_OK : B_BAD_REPLY;
|
err = reply.what == B_REG_RESULT ? (status_t)B_OK : (status_t)B_BAD_REPLY;
|
||||||
if (!err)
|
if (!err)
|
||||||
err = reply.FindInt32("result", &result);
|
err = reply.FindInt32("result", &result);
|
||||||
if (!err)
|
if (!err)
|
||||||
|
@ -26,8 +26,8 @@
|
|||||||
/*! \brief Creates an uninitialized node_ref object.
|
/*! \brief Creates an uninitialized node_ref object.
|
||||||
*/
|
*/
|
||||||
node_ref::node_ref()
|
node_ref::node_ref()
|
||||||
: device(-1),
|
: device((dev_t)-1),
|
||||||
node(-1)
|
node((ino_t)-1)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -36,8 +36,8 @@ node_ref::node_ref()
|
|||||||
\param ref the node_ref to be copied
|
\param ref the node_ref to be copied
|
||||||
*/
|
*/
|
||||||
node_ref::node_ref(const node_ref &ref)
|
node_ref::node_ref(const node_ref &ref)
|
||||||
: device(-1),
|
: device((dev_t)-1),
|
||||||
node(-1)
|
node((ino_t)-1)
|
||||||
{
|
{
|
||||||
*this = ref;
|
*this = ref;
|
||||||
}
|
}
|
||||||
|
@ -10,6 +10,7 @@
|
|||||||
#include <NodeInfo.h>
|
#include <NodeInfo.h>
|
||||||
|
|
||||||
#include <new>
|
#include <new>
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
#include <Bitmap.h>
|
#include <Bitmap.h>
|
||||||
#include <Entry.h>
|
#include <Entry.h>
|
||||||
|
@ -151,7 +151,7 @@ watch_node(const node_ref *node, uint32 flags, const BHandler *handler,
|
|||||||
// subscribe to...
|
// subscribe to...
|
||||||
// mount watching
|
// mount watching
|
||||||
if (flags & B_WATCH_MOUNT) {
|
if (flags & B_WATCH_MOUNT) {
|
||||||
error = _kstart_watching_vnode_(-1, -1, 0, port, handlerToken);
|
error = _kstart_watching_vnode_((dev_t)-1, (ino_t)-1, 0, port, handlerToken);
|
||||||
flags &= ~B_WATCH_MOUNT;
|
flags &= ~B_WATCH_MOUNT;
|
||||||
}
|
}
|
||||||
// node watching
|
// node watching
|
||||||
|
@ -36,7 +36,7 @@ BQuery::BQuery()
|
|||||||
: BEntryList(),
|
: BEntryList(),
|
||||||
fStack(NULL),
|
fStack(NULL),
|
||||||
fPredicate(NULL),
|
fPredicate(NULL),
|
||||||
fDevice(B_ERROR),
|
fDevice((dev_t)B_ERROR),
|
||||||
fLive(false),
|
fLive(false),
|
||||||
fPort(B_ERROR),
|
fPort(B_ERROR),
|
||||||
fToken(0),
|
fToken(0),
|
||||||
@ -71,7 +71,7 @@ BQuery::Clear()
|
|||||||
delete[] fPredicate;
|
delete[] fPredicate;
|
||||||
fPredicate = NULL;
|
fPredicate = NULL;
|
||||||
// reset the other parameters
|
// reset the other parameters
|
||||||
fDevice = B_ERROR;
|
fDevice = (dev_t)B_ERROR;
|
||||||
fLive = false;
|
fLive = false;
|
||||||
fPort = B_ERROR;
|
fPort = B_ERROR;
|
||||||
fToken = 0;
|
fToken = 0;
|
||||||
@ -344,7 +344,7 @@ BQuery::SetVolume(const BVolume *volume)
|
|||||||
if (volume->InitCheck() == B_OK)
|
if (volume->InitCheck() == B_OK)
|
||||||
fDevice = volume->Device();
|
fDevice = volume->Device();
|
||||||
else
|
else
|
||||||
fDevice = B_ERROR;
|
fDevice = (dev_t)B_ERROR;
|
||||||
}
|
}
|
||||||
return error;
|
return error;
|
||||||
}
|
}
|
||||||
|
@ -112,7 +112,7 @@ calculate_checksum(const void *data, uint32 size)
|
|||||||
const uint8 *current = csData;
|
const uint8 *current = csData;
|
||||||
for (; current < dataEnd; current += 4) {
|
for (; current < dataEnd; current += 4) {
|
||||||
uint32 word = 0;
|
uint32 word = 0;
|
||||||
int32 bytes = min(4L, dataEnd - current);
|
int32 bytes = min(4L, (int32)(dataEnd - current));
|
||||||
for (int32 i = 0; i < bytes; i++)
|
for (int32 i = 0; i < bytes; i++)
|
||||||
word = (word << 8) + current[i];
|
word = (word << 8) + current[i];
|
||||||
checkSum += word;
|
checkSum += word;
|
||||||
@ -1035,12 +1035,12 @@ ResourceFile::_WriteResources(ResourcesContainer &container)
|
|||||||
indexSectionSize = align_value(indexSectionSize,
|
indexSectionSize = align_value(indexSectionSize,
|
||||||
kResourceIndexSectionAlignment);
|
kResourceIndexSectionAlignment);
|
||||||
size += indexSectionSize;
|
size += indexSectionSize;
|
||||||
bufferSize = max(bufferSize, indexSectionSize);
|
bufferSize = max((uint32)bufferSize, indexSectionSize);
|
||||||
// unknown section
|
// unknown section
|
||||||
uint32 unknownSectionOffset = size;
|
uint32 unknownSectionOffset = size;
|
||||||
uint32 unknownSectionSize = kUnknownResourceSectionSize;
|
uint32 unknownSectionSize = kUnknownResourceSectionSize;
|
||||||
size += unknownSectionSize;
|
size += unknownSectionSize;
|
||||||
bufferSize = max(bufferSize, unknownSectionSize);
|
bufferSize = max((uint32)bufferSize, unknownSectionSize);
|
||||||
// data
|
// data
|
||||||
uint32 dataOffset = size;
|
uint32 dataOffset = size;
|
||||||
uint32 dataSize = 0;
|
uint32 dataSize = 0;
|
||||||
@ -1071,7 +1071,7 @@ ResourceFile::_WriteResources(ResourcesContainer &container)
|
|||||||
infoTableSize += kResourceInfoSeparatorSize
|
infoTableSize += kResourceInfoSeparatorSize
|
||||||
+ kResourceInfoTableEndSize;
|
+ kResourceInfoTableEndSize;
|
||||||
size += infoTableSize;
|
size += infoTableSize;
|
||||||
bufferSize = max(bufferSize, infoTableSize);
|
bufferSize = max((uint32)bufferSize, infoTableSize);
|
||||||
|
|
||||||
// write...
|
// write...
|
||||||
// set the file size
|
// set the file size
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
#include <Node.h>
|
#include <Node.h>
|
||||||
#include <Volume.h>
|
#include <Volume.h>
|
||||||
|
|
||||||
#include <posix/sys/stat.h>
|
#include <sys/stat.h>
|
||||||
|
|
||||||
#include "fsproto.h"
|
#include "fsproto.h"
|
||||||
#include "kernel_interface.h"
|
#include "kernel_interface.h"
|
||||||
|
@ -55,7 +55,7 @@ namespace OpenBeOS {
|
|||||||
InitCheck() will return \c B_NO_INIT.
|
InitCheck() will return \c B_NO_INIT.
|
||||||
*/
|
*/
|
||||||
BVolume::BVolume()
|
BVolume::BVolume()
|
||||||
: fDevice(-1),
|
: fDevice((dev_t)-1),
|
||||||
fCStatus(B_NO_INIT)
|
fCStatus(B_NO_INIT)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
@ -70,7 +70,7 @@ BVolume::BVolume()
|
|||||||
\param device The device ID of the volume.
|
\param device The device ID of the volume.
|
||||||
*/
|
*/
|
||||||
BVolume::BVolume(dev_t device)
|
BVolume::BVolume(dev_t device)
|
||||||
: fDevice(-1),
|
: fDevice((dev_t)-1),
|
||||||
fCStatus(B_NO_INIT)
|
fCStatus(B_NO_INIT)
|
||||||
{
|
{
|
||||||
SetTo(device);
|
SetTo(device);
|
||||||
@ -146,7 +146,7 @@ BVolume::SetTo(dev_t device)
|
|||||||
void
|
void
|
||||||
BVolume::Unset()
|
BVolume::Unset()
|
||||||
{
|
{
|
||||||
fDevice = -1;
|
fDevice = (dev_t)-1;
|
||||||
fCStatus = B_NO_INIT;
|
fCStatus = B_NO_INIT;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -546,7 +546,7 @@ BPrivate::Storage::rename_attr(FileDescriptor file, const char *oldName,
|
|||||||
char *data = NULL;
|
char *data = NULL;
|
||||||
if (error == B_OK) {
|
if (error == B_OK) {
|
||||||
// alloc at least one byte
|
// alloc at least one byte
|
||||||
data = new(nothrow) char[max(info.size, 1LL)];
|
data = new(nothrow) char[max(info.size, (off_t)1LL)];
|
||||||
if (data == NULL)
|
if (data == NULL)
|
||||||
error = B_NO_MEMORY;
|
error = B_NO_MEMORY;
|
||||||
}
|
}
|
||||||
|
@ -82,7 +82,7 @@ CreateAppMetaMimeThread::DoMimeUpdate(const entry_ref *entry, bool *entryIsDir)
|
|||||||
err = info.size == 16*16 ? B_OK : B_BAD_VALUE;
|
err = info.size == 16*16 ? B_OK : B_BAD_VALUE;
|
||||||
if (!err) {
|
if (!err) {
|
||||||
ssize_t bytes = node.ReadAttr("BEOS:M:STD_ICON", kMiniIconType, 0, miniIcon.Bits(), 16*16);
|
ssize_t bytes = node.ReadAttr("BEOS:M:STD_ICON", kMiniIconType, 0, miniIcon.Bits(), 16*16);
|
||||||
err = bytes == 16*16 ? B_OK : B_FILE_ERROR;
|
err = bytes == 16*16 ? (status_t)B_OK : (status_t)B_FILE_ERROR;
|
||||||
}
|
}
|
||||||
if (!err)
|
if (!err)
|
||||||
err = mime.SetIcon(&miniIcon, B_MINI_ICON);
|
err = mime.SetIcon(&miniIcon, B_MINI_ICON);
|
||||||
|
@ -360,7 +360,7 @@ Database::SetIconForType(const char *type, const char *fileType, const void *dat
|
|||||||
if (!err)
|
if (!err)
|
||||||
err = node.WriteAttr(attr.c_str(), attrType, 0, data, attrSize);
|
err = node.WriteAttr(attr.c_str(), attrType, 0, data, attrSize);
|
||||||
if (err >= 0)
|
if (err >= 0)
|
||||||
err = err == (ssize_t)attrSize ? B_OK : B_FILE_ERROR;
|
err = err == (ssize_t)attrSize ? (status_t)B_OK : (status_t)B_FILE_ERROR;
|
||||||
if (!err) {
|
if (!err) {
|
||||||
if (fileType)
|
if (fileType)
|
||||||
err = SendMonitorUpdate(B_ICON_FOR_TYPE_CHANGED, type, fileType, (which == B_LARGE_ICON), B_META_MIME_MODIFIED);
|
err = SendMonitorUpdate(B_ICON_FOR_TYPE_CHANGED, type, fileType, (which == B_LARGE_ICON), B_META_MIME_MODIFIED);
|
||||||
@ -381,7 +381,7 @@ Database::SetIconForType(const char *type, const char *fileType, const void *dat
|
|||||||
\param verb \c app_verb action for which the new preferred application is applicable
|
\param verb \c app_verb action for which the new preferred application is applicable
|
||||||
*/
|
*/
|
||||||
status_t
|
status_t
|
||||||
Database::SetPreferredApp(const char *type, const char *signature, app_verb verb = B_OPEN)
|
Database::SetPreferredApp(const char *type, const char *signature, app_verb verb)
|
||||||
{
|
{
|
||||||
DBG(OUT("Database::SetPreferredApp()\n"));
|
DBG(OUT("Database::SetPreferredApp()\n"));
|
||||||
bool didCreate = false;
|
bool didCreate = false;
|
||||||
@ -767,7 +767,7 @@ Database::StopWatching(BMessenger target)
|
|||||||
DBG(OUT("Database::StopWatching()\n"));
|
DBG(OUT("Database::StopWatching()\n"));
|
||||||
status_t err = target.IsValid() ? B_OK : B_BAD_VALUE;
|
status_t err = target.IsValid() ? B_OK : B_BAD_VALUE;
|
||||||
if (!err)
|
if (!err)
|
||||||
err = fMonitorMessengers.find(target) != fMonitorMessengers.end() ? B_OK : B_ENTRY_NOT_FOUND;
|
err = fMonitorMessengers.find(target) != fMonitorMessengers.end() ? (status_t)B_OK : (status_t)B_ENTRY_NOT_FOUND;
|
||||||
if (!err)
|
if (!err)
|
||||||
fMonitorMessengers.erase(target);
|
fMonitorMessengers.erase(target);
|
||||||
return err;
|
return err;
|
||||||
@ -925,7 +925,7 @@ Database::DeleteIconForType(const char *type, const char *fileType, icon_size wh
|
|||||||
- "error code": failure
|
- "error code": failure
|
||||||
*/
|
*/
|
||||||
status_t
|
status_t
|
||||||
Database::DeletePreferredApp(const char *type, app_verb verb = B_OPEN)
|
Database::DeletePreferredApp(const char *type, app_verb verb)
|
||||||
{
|
{
|
||||||
status_t err;
|
status_t err;
|
||||||
switch (verb) {
|
switch (verb) {
|
||||||
|
@ -160,7 +160,7 @@ SnifferRules::GuessMimeType(const entry_ref *ref, BString *type)
|
|||||||
// Next read that many bytes (or fewer, if the file isn't
|
// Next read that many bytes (or fewer, if the file isn't
|
||||||
// that long) into a buffer
|
// that long) into a buffer
|
||||||
if (!err) {
|
if (!err) {
|
||||||
buffer = new(nothrow) char[bytes];
|
buffer = new(std::nothrow) char[bytes];
|
||||||
if (!buffer)
|
if (!buffer)
|
||||||
err = B_NO_MEMORY;
|
err = B_NO_MEMORY;
|
||||||
}
|
}
|
||||||
|
@ -61,7 +61,7 @@ UpdateMimeInfoThread::DoMimeUpdate(const entry_ref *entry, bool *entryIsDir)
|
|||||||
if (bytes < B_OK)
|
if (bytes < B_OK)
|
||||||
err = bytes;
|
err = bytes;
|
||||||
else
|
else
|
||||||
err = (bytes != len ? B_FILE_ERROR : B_OK);
|
err = (bytes != len ? (status_t)B_FILE_ERROR : (status_t)B_OK);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return err;
|
return err;
|
||||||
|
@ -260,7 +260,7 @@ get_icon_for_type(const char *type, const char *fileType, BBitmap *icon,
|
|||||||
char *buffer = NULL;
|
char *buffer = NULL;
|
||||||
if (otherColorSpace) {
|
if (otherColorSpace) {
|
||||||
// other color space than stored in attribute
|
// other color space than stored in attribute
|
||||||
buffer = new(nothrow) char[attrSize];
|
buffer = new(std::nothrow) char[attrSize];
|
||||||
if (!buffer)
|
if (!buffer)
|
||||||
err = B_NO_MEMORY;
|
err = B_NO_MEMORY;
|
||||||
if (!err)
|
if (!err)
|
||||||
@ -270,7 +270,7 @@ get_icon_for_type(const char *type, const char *fileType, BBitmap *icon,
|
|||||||
err = node.ReadAttr(attr.c_str(), attrType, 0, icon->Bits(), attrSize);
|
err = node.ReadAttr(attr.c_str(), attrType, 0, icon->Bits(), attrSize);
|
||||||
}
|
}
|
||||||
if (err >= 0)
|
if (err >= 0)
|
||||||
err = (err == attrSize) ? B_OK : B_FILE_ERROR;
|
err = (err == attrSize) ? (status_t)B_OK : (status_t)B_FILE_ERROR;
|
||||||
if (otherColorSpace) {
|
if (otherColorSpace) {
|
||||||
if (!err) {
|
if (!err) {
|
||||||
err = icon->ImportBits(buffer, attrSize, B_ANY_BYTES_PER_ROW,
|
err = icon->ImportBits(buffer, attrSize, B_ANY_BYTES_PER_ROW,
|
||||||
@ -390,7 +390,7 @@ get_icon_data(const BBitmap *icon, icon_size which, void **data, int32 *dataSize
|
|||||||
if (!err) {
|
if (!err) {
|
||||||
otherColorSpace = (icon->ColorSpace() != B_CMAP8);
|
otherColorSpace = (icon->ColorSpace() != B_CMAP8);
|
||||||
if (otherColorSpace) {
|
if (otherColorSpace) {
|
||||||
icon8 = new(nothrow) BBitmap(bounds, B_CMAP8);
|
icon8 = new(std::nothrow) BBitmap(bounds, B_CMAP8);
|
||||||
if (!icon8)
|
if (!icon8)
|
||||||
err = B_NO_MEMORY;
|
err = B_NO_MEMORY;
|
||||||
if (!err)
|
if (!err)
|
||||||
@ -406,7 +406,7 @@ get_icon_data(const BBitmap *icon, icon_size which, void **data, int32 *dataSize
|
|||||||
}
|
}
|
||||||
// Alloc a new data buffer
|
// Alloc a new data buffer
|
||||||
if (!err) {
|
if (!err) {
|
||||||
*data = new(nothrow) char[*dataSize];
|
*data = new(std::nothrow) char[*dataSize];
|
||||||
if (!*data)
|
if (!*data)
|
||||||
err = B_NO_MEMORY;
|
err = B_NO_MEMORY;
|
||||||
}
|
}
|
||||||
|
@ -221,14 +221,14 @@ read_mime_attr_message(const char *type, const char *attr, BMessage *msg)
|
|||||||
if (!err)
|
if (!err)
|
||||||
err = info.type == B_MESSAGE_TYPE ? B_OK : B_BAD_VALUE;
|
err = info.type == B_MESSAGE_TYPE ? B_OK : B_BAD_VALUE;
|
||||||
if (!err) {
|
if (!err) {
|
||||||
buffer = new(nothrow) char[info.size];
|
buffer = new(std::nothrow) char[info.size];
|
||||||
if (!buffer)
|
if (!buffer)
|
||||||
err = B_NO_MEMORY;
|
err = B_NO_MEMORY;
|
||||||
}
|
}
|
||||||
if (!err)
|
if (!err)
|
||||||
err = node.ReadAttr(attr, B_MESSAGE_TYPE, 0, buffer, info.size);
|
err = node.ReadAttr(attr, B_MESSAGE_TYPE, 0, buffer, info.size);
|
||||||
if (err >= 0)
|
if (err >= 0)
|
||||||
err = err == info.size ? B_OK : B_FILE_ERROR;
|
err = err == info.size ? (status_t)B_OK : (status_t)B_FILE_ERROR;
|
||||||
if (!err)
|
if (!err)
|
||||||
err = msg->Unflatten(buffer);
|
err = msg->Unflatten(buffer);
|
||||||
delete [] buffer;
|
delete [] buffer;
|
||||||
@ -247,7 +247,7 @@ read_mime_attr_message(const char *type, const char *attr, BMessage *msg)
|
|||||||
\param str Pointer to a pre-allocated BString into which the attribute
|
\param str Pointer to a pre-allocated BString into which the attribute
|
||||||
data stored.
|
data stored.
|
||||||
*/
|
*/
|
||||||
ssize_t
|
status_t
|
||||||
read_mime_attr_string(const char *type, const char *attr, BString *str)
|
read_mime_attr_string(const char *type, const char *attr, BString *str)
|
||||||
{
|
{
|
||||||
BNode node;
|
BNode node;
|
||||||
@ -284,7 +284,7 @@ write_mime_attr(const char *type, const char *attr, const void *data,
|
|||||||
if (bytes < B_OK)
|
if (bytes < B_OK)
|
||||||
err = bytes;
|
err = bytes;
|
||||||
else
|
else
|
||||||
err = (bytes != (ssize_t)len ? B_FILE_ERROR : B_OK);
|
err = (bytes != (ssize_t)len ? (status_t)B_FILE_ERROR : (status_t)B_OK);
|
||||||
}
|
}
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
@ -317,7 +317,7 @@ write_mime_attr_message(const char *type, const char *attr, const BMessage *msg,
|
|||||||
if (!err)
|
if (!err)
|
||||||
err = node.WriteAttr(attr, B_MESSAGE_TYPE, 0, data.Buffer(), data.BufferLength());
|
err = node.WriteAttr(attr, B_MESSAGE_TYPE, 0, data.Buffer(), data.BufferLength());
|
||||||
if (err >= 0)
|
if (err >= 0)
|
||||||
err = err == (ssize_t)data.BufferLength() ? B_OK : B_FILE_ERROR;
|
err = err == (ssize_t)data.BufferLength() ? (ssize_t)B_OK : (ssize_t)B_FILE_ERROR;
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <sniffer/Err.h>
|
#include <sniffer/Err.h>
|
||||||
#include <new.h>
|
#include <new>
|
||||||
|
|
||||||
using namespace BPrivate::Storage::Sniffer;
|
using namespace BPrivate::Storage::Sniffer;
|
||||||
|
|
||||||
@ -82,7 +82,7 @@ Err::SetMsg(const char *msg) {
|
|||||||
fMsg = NULL;
|
fMsg = NULL;
|
||||||
}
|
}
|
||||||
if (msg) {
|
if (msg) {
|
||||||
fMsg = new(nothrow) char[strlen(msg)+1];
|
fMsg = new(std::nothrow) char[strlen(msg)+1];
|
||||||
if (fMsg)
|
if (fMsg)
|
||||||
strcpy(fMsg, msg);
|
strcpy(fMsg, msg);
|
||||||
}
|
}
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
#include <sniffer/RPatternList.h>
|
#include <sniffer/RPatternList.h>
|
||||||
#include <sniffer/Rule.h>
|
#include <sniffer/Rule.h>
|
||||||
|
|
||||||
#include <new.h>
|
#include <new>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h> // For atol(), atof()
|
#include <stdlib.h> // For atol(), atof()
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
@ -931,7 +931,7 @@ BPrivate::Storage::Sniffer::tokenTypeToString(TokenType type) {
|
|||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
Parser::Parser()
|
Parser::Parser()
|
||||||
: fOutOfMemErr(new(nothrow) Err("Sniffer parser error: out of memory", -1))
|
: fOutOfMemErr(new(std::nothrow) Err("Sniffer parser error: out of memory", -1))
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -958,7 +958,7 @@ Parser::Parse(const char *rule, Rule *result, BString *parseError) {
|
|||||||
if (parseError)
|
if (parseError)
|
||||||
parseError->SetTo(ErrorMessage(err, rule).c_str());
|
parseError->SetTo(ErrorMessage(err, rule).c_str());
|
||||||
delete err;
|
delete err;
|
||||||
return rule ? B_BAD_MIME_SNIFFER_RULE : B_BAD_VALUE;
|
return rule ? (status_t)B_BAD_MIME_SNIFFER_RULE : (status_t)B_BAD_VALUE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1006,7 +1006,7 @@ Parser::ParsePriority() {
|
|||||||
|
|
||||||
std::vector<DisjList*>*
|
std::vector<DisjList*>*
|
||||||
Parser::ParseConjList() {
|
Parser::ParseConjList() {
|
||||||
std::vector<DisjList*> *list = new(nothrow) std::vector<DisjList*>;
|
std::vector<DisjList*> *list = new(std::nothrow) std::vector<DisjList*>;
|
||||||
if (!list)
|
if (!list)
|
||||||
ThrowOutOfMemError(stream.Pos());
|
ThrowOutOfMemError(stream.Pos());
|
||||||
try {
|
try {
|
||||||
@ -1116,7 +1116,7 @@ Parser::ParseRange() {
|
|||||||
|
|
||||||
DisjList*
|
DisjList*
|
||||||
Parser::ParsePatternList(Range range) {
|
Parser::ParsePatternList(Range range) {
|
||||||
PatternList *list = new(nothrow) PatternList(range);
|
PatternList *list = new(std::nothrow) PatternList(range);
|
||||||
if (!list)
|
if (!list)
|
||||||
ThrowOutOfMemError(stream.Pos());
|
ThrowOutOfMemError(stream.Pos());
|
||||||
try {
|
try {
|
||||||
@ -1146,7 +1146,7 @@ Parser::ParsePatternList(Range range) {
|
|||||||
|
|
||||||
DisjList*
|
DisjList*
|
||||||
Parser::ParseRPatternList() {
|
Parser::ParseRPatternList() {
|
||||||
RPatternList *list = new(nothrow) RPatternList();
|
RPatternList *list = new(std::nothrow) RPatternList();
|
||||||
if (!list)
|
if (!list)
|
||||||
ThrowOutOfMemError(stream.Pos());
|
ThrowOutOfMemError(stream.Pos());
|
||||||
try {
|
try {
|
||||||
@ -1181,7 +1181,7 @@ Parser::ParseRPattern() {
|
|||||||
// Pattern
|
// Pattern
|
||||||
Pattern *pattern = ParsePattern();
|
Pattern *pattern = ParsePattern();
|
||||||
|
|
||||||
RPattern *result = new(nothrow) RPattern(range, pattern);
|
RPattern *result = new(std::nothrow) RPattern(range, pattern);
|
||||||
if (result) {
|
if (result) {
|
||||||
if (result->InitCheck() == B_OK)
|
if (result->InitCheck() == B_OK)
|
||||||
return result;
|
return result;
|
||||||
@ -1211,7 +1211,7 @@ Parser::ParsePattern() {
|
|||||||
// String (i.e. Mask)
|
// String (i.e. Mask)
|
||||||
const Token *t = stream.Get();
|
const Token *t = stream.Get();
|
||||||
if (t->Type() == CharacterString) {
|
if (t->Type() == CharacterString) {
|
||||||
Pattern *result = new(nothrow) Pattern(str, t->String());
|
Pattern *result = new(std::nothrow) Pattern(str, t->String());
|
||||||
if (!result)
|
if (!result)
|
||||||
ThrowOutOfMemError(t->Pos());
|
ThrowOutOfMemError(t->Pos());
|
||||||
if (result->InitCheck() == B_OK) {
|
if (result->InitCheck() == B_OK) {
|
||||||
@ -1228,7 +1228,7 @@ Parser::ParsePattern() {
|
|||||||
ThrowUnexpectedTokenError(CharacterString, t);
|
ThrowUnexpectedTokenError(CharacterString, t);
|
||||||
} else {
|
} else {
|
||||||
// No mask specified.
|
// No mask specified.
|
||||||
Pattern *result = new(nothrow) Pattern(str);
|
Pattern *result = new(std::nothrow) Pattern(str);
|
||||||
if (result) {
|
if (result) {
|
||||||
if (result->InitCheck() == B_OK)
|
if (result->InitCheck() == B_OK)
|
||||||
return result;
|
return result;
|
||||||
|
@ -48,7 +48,7 @@ Pattern::GetErr() const {
|
|||||||
if (fCStatus == B_OK)
|
if (fCStatus == B_OK)
|
||||||
return NULL;
|
return NULL;
|
||||||
else
|
else
|
||||||
return new(nothrow) Err(*fErrorMessage);
|
return new(std::nothrow) Err(*fErrorMessage);
|
||||||
}
|
}
|
||||||
|
|
||||||
void dumpStr(const std::string &string, const char *label = NULL) {
|
void dumpStr(const std::string &string, const char *label = NULL) {
|
||||||
@ -157,7 +157,7 @@ Pattern::Sniff(off_t start, off_t size, BPositionIO *data, bool caseInsensitive)
|
|||||||
bool
|
bool
|
||||||
Pattern::Sniff(off_t start, off_t size, BPositionIO *data, bool caseInsensitive) const {
|
Pattern::Sniff(off_t start, off_t size, BPositionIO *data, bool caseInsensitive) const {
|
||||||
off_t len = fString.length();
|
off_t len = fString.length();
|
||||||
char *buffer = new(nothrow) char[len+1];
|
char *buffer = new(std::nothrow) char[len+1];
|
||||||
if (buffer) {
|
if (buffer) {
|
||||||
ssize_t bytesRead = data->ReadAt(start, buffer, len);
|
ssize_t bytesRead = data->ReadAt(start, buffer, len);
|
||||||
// \todo If there are fewer bytes left in the data stream
|
// \todo If there are fewer bytes left in the data stream
|
||||||
@ -218,7 +218,7 @@ Pattern::SetStatus(status_t status, const char *msg) {
|
|||||||
void
|
void
|
||||||
Pattern::SetErrorMessage(const char *msg) {
|
Pattern::SetErrorMessage(const char *msg) {
|
||||||
delete fErrorMessage;
|
delete fErrorMessage;
|
||||||
fErrorMessage = (msg) ? (new(nothrow) Err(msg, -1)) : (NULL);
|
fErrorMessage = (msg) ? (new(std::nothrow) Err(msg, -1)) : (NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -44,7 +44,7 @@ object_alloc(size_t Size)
|
|||||||
static void
|
static void
|
||||||
object_free(void *Data)
|
object_free(void *Data)
|
||||||
{
|
{
|
||||||
delete[] Data;
|
delete[] (int8*)Data;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -108,7 +108,7 @@ BBlockCache::BBlockCache(size_t CacheSize, size_t BlockSize, uint32 Type)
|
|||||||
|
|
||||||
BBlockCache::~BBlockCache()
|
BBlockCache::~BBlockCache()
|
||||||
{
|
{
|
||||||
delete[] fCache;
|
delete[] (int8*)fCache;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -286,7 +286,7 @@ status_t CursorSet::FindCursor(cursor_which which, BBitmap **cursor, BPoint *hot
|
|||||||
{
|
{
|
||||||
bmp=new BBitmap( msg.FindRect("_frame"),
|
bmp=new BBitmap( msg.FindRect("_frame"),
|
||||||
(color_space) msg.FindInt32("_cspace"),true );
|
(color_space) msg.FindInt32("_cspace"),true );
|
||||||
msg.FindData("_data",B_RAW_TYPE,(const void **)&buffer, &bufferLength);
|
msg.FindData("_data",B_RAW_TYPE,(const void **)&buffer, (ssize_t*)&bufferLength);
|
||||||
memcpy(bmp->Bits(), buffer, bufferLength);
|
memcpy(bmp->Bits(), buffer, bufferLength);
|
||||||
|
|
||||||
*cursor=bmp;
|
*cursor=bmp;
|
||||||
@ -330,7 +330,7 @@ status_t CursorSet::FindCursor(cursor_which which, ServerCursor **cursor)
|
|||||||
if(tempstr.Compare("cursor")==0)
|
if(tempstr.Compare("cursor")==0)
|
||||||
{
|
{
|
||||||
csr=new ServerCursor(msg.FindRect("_frame"),(color_space) msg.FindInt32("_cspace"),0, hotpt);
|
csr=new ServerCursor(msg.FindRect("_frame"),(color_space) msg.FindInt32("_cspace"),0, hotpt);
|
||||||
msg.FindData("_data",B_RAW_TYPE,(const void **)&buffer, &bufferLength);
|
msg.FindData("_data",B_RAW_TYPE,(const void **)&buffer, (ssize_t*)&bufferLength);
|
||||||
memcpy(csr->Bits(), buffer, bufferLength);
|
memcpy(csr->Bits(), buffer, bufferLength);
|
||||||
|
|
||||||
*cursor=csr;
|
*cursor=csr;
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <iostream.h>
|
#include <iostream>
|
||||||
#include <Message.h>
|
#include <Message.h>
|
||||||
#include <Region.h>
|
#include <Region.h>
|
||||||
#include <Bitmap.h>
|
#include <Bitmap.h>
|
||||||
|
Loading…
Reference in New Issue
Block a user