Searched refs:msg (Results 1 - 25 of 1076) sorted by relevance

1234567891011>>

/haiku-fatelf/src/bin/gdb/libiberty/
H A Dmsdos.c1 char msg[] = "No vfork available - aborting\n"; variable
4 write(1, msg, sizeof(msg));
/haiku-fatelf/src/bin/coreutils/lib/
H A Dstrerror.c43 char const *msg = NULL; local
49 msg = "Text file busy";
56 msg = "Operation now in progress";
59 msg = "Operation already in progress";
62 msg = "Socket operation on non-socket";
65 msg = "Destination address required";
68 msg = "Message too long";
71 msg = "Protocol wrong type for socket";
74 msg = "Protocol not available";
77 msg
[all...]
/haiku-fatelf/src/bin/network/wget/lib/
H A Dstrerror.c43 char const *msg = NULL; local
49 msg = "Text file busy";
56 msg = "Operation now in progress";
59 msg = "Operation already in progress";
62 msg = "Socket operation on non-socket";
65 msg = "Destination address required";
68 msg = "Message too long";
71 msg = "Protocol wrong type for socket";
74 msg = "Protocol not available";
77 msg
[all...]
/haiku-fatelf/src/tests/kits/net/
H A Dufunc.h6 void err(int error, char *msg);
7 void test_banner(char *msg);
/haiku-fatelf/src/tests/kits/interface/menu/menuworld/
H A Dstddlg.h17 void ierror(const char* msg);
/haiku-fatelf/src/add-ons/translators/hpgs/lib/
H A Dhpgsi18n.c53 const char *hpgs_i18n(const char *msg) argument
55 return dgettext(HPGS_I18N_DOMAIN,msg);
58 const char *hpgs_i18n_n(const char *msg, argument
62 return dngettext(HPGS_I18N_DOMAIN,msg,msg_plural,n);
67 const char *hpgs_i18n(const char *msg) argument
68 { return msg; }
70 const char *hpgs_i18n_n(const char *msg, argument
73 { return n==1 ? msg : msg_plural; }
/haiku-fatelf/src/kits/media/
H A DNotifications.cpp61 BMessage msg(MEDIA_SERVER_REQUEST_NOTIFICATIONS);
62 msg.AddInt32(NOTIFICATION_PARAM_WHAT, notification);
63 msg.AddInt32(NOTIFICATION_PARAM_TEAM, BPrivate::current_team());
64 msg.AddMessenger(NOTIFICATION_PARAM_MESSENGER, notifyHandler);
65 msg.AddData("node", B_RAW_TYPE, &node, sizeof(node));
67 return BPrivate::media::dataexchange::SendToServer(&msg);
76 BMessage msg(MEDIA_SERVER_CANCEL_NOTIFICATIONS);
77 msg.AddInt32(NOTIFICATION_PARAM_WHAT, notification);
78 msg.AddInt32(NOTIFICATION_PARAM_TEAM, BPrivate::current_team());
79 msg
96 BMessage msg; local
[all...]
/haiku-fatelf/src/tests/kits/app/bmessage/
H A DMessageEasyFindTest.cpp27 BMessage msg; local
28 CPPUNIT_ASSERT(msg.FindRect("data") == r);
29 CPPUNIT_ASSERT(msg.FindPoint("data") == p);
30 CPPUNIT_ASSERT(msg.FindString("data") == NULL);
31 CPPUNIT_ASSERT(msg.FindInt8("data") == 0);
32 CPPUNIT_ASSERT(msg.FindInt16("data") == 0);
33 CPPUNIT_ASSERT(msg.FindInt32("data") == 0);
34 CPPUNIT_ASSERT(msg.FindInt64("data") == 0);
35 CPPUNIT_ASSERT(msg.FindBool("data") == false);
36 CPPUNIT_ASSERT(msg
[all...]
H A DMessageConstructTest.cpp30 BMessage msg; local
31 CPPUNIT_ASSERT(msg.what == 0);
32 ConfirmNullConstruction(msg);
43 BMessage msg(1234);
44 CPPUNIT_ASSERT(msg.what == 1234);
45 ConfirmNullConstruction(msg);
49 BMessage(const BMessage& msg)
51 @params msg a default constructed BMessage instance
52 @results what == msg.what and ConfirmNullConstruction is good
75 void TMessageConstructTest::ConfirmNullConstruction(BMessage& msg) argument
[all...]
/haiku-fatelf/src/kits/network/libbind/nameser/
H A Dns_newmsg.c33 ns_msg *msg = &handle->msg; local
36 msg->_msg = buffer;
37 msg->_eom = buffer + bufsiz;
38 msg->_sect = ns_s_qd;
39 msg->_rrnum = 0;
40 msg->_msg_ptr = buffer + NS_HFIXEDSZ;
41 handle->dnptrs[0] = msg->_msg;
51 ns_newmsg_copy(ns_newmsg *handle, ns_msg *msg) { argument
55 ns_newmsg_id(handle, ns_msg_id(*msg));
92 ns_msg *msg = &handle->msg; local
103 ns_msg *msg = &handle->msg; local
116 ns_msg *msg = &handle->msg; local
151 ns_msg *msg = &handle->msg; local
189 ns_msg *msg = &handle->msg; local
211 ns_msg *msg = &handle->msg; local
[all...]
/haiku-fatelf/src/add-ons/print/transports/lpr/
H A DLpr.cpp22 init_transport(BMessage *msg) argument
26 gTransport = new LprTransport(msg);
32 if (msg)
33 msg->what = 'okok';
/haiku-fatelf/src/libs/pdflib/bind/pdflib/java/
H A DPDFlibException.java32 public PDFlibException(String msg) { argument
33 super(msg);
36 public PDFlibException(String msg, int errnum, String apiname) { argument
37 super(msg);
/haiku-fatelf/src/apps/expander/
H A DExpanderApp.cpp27 BMessage* msg = NULL; local
32 if (!msg) {
33 msg = new BMessage;
34 msg->what = B_REFS_RECEIVED;
36 msg->AddRef("refs", &ref);
39 if (msg)
40 RefsReceived(msg);
45 ExpanderApp::RefsReceived(BMessage* msg) argument
48 msg->AddBool("fromApp", true);
49 messenger.SendMessage(msg);
[all...]
/haiku-fatelf/src/add-ons/print/drivers/pdf/source/
H A DPrinterSettings.cpp81 PrinterSettings::ReadSettings(BMessage *msg) argument
87 msg->MakeEmpty();
88 msg->what = 0;
96 msg->Unflatten(data);
101 GetDefaults(msg);
102 WriteSettings(msg);
116 PrinterSettings::WriteSettings(BMessage* msg) argument
122 length = msg->FlattenedSize();
125 msg->Flatten(data, length);
144 PrinterSettings::GetDefaults(BMessage *msg) argument
195 Validate(const BMessage *msg) argument
273 Read(BNode* node, BMessage* msg, Kind kind) argument
289 Update(BNode* node, BMessage* msg, Kind kind) argument
[all...]
H A DDriver.h36 BMessage * take_job(BFile * spool_file, BNode * spool_dir, BMessage * msg);
37 BMessage * config_page(BNode * spool_dir, BMessage * msg);
38 BMessage * config_job(BNode * spool_dir, BMessage * msg);
/haiku-fatelf/src/servers/notification/
H A DNotificationReceived.cpp57 BMessage msg; local
58 msg.AddString("notify_title", fTitle);
59 msg.AddInt32("notify_type", (int32)fType);
60 msg.AddInt32("notify_lastreceived", (int32)fLastReceived);
61 msg.AddBool("notify_enabled", fEnabled);
63 if (numBytes < msg.FlattenedSize())
66 return msg.Flatten((char*)buffer, numBytes);
73 BMessage msg; local
74 msg.AddString("notify_title", fTitle);
75 msg
[all...]
/haiku-fatelf/src/libs/util/
H A D_secure_path.c50 const char *msg = NULL; local
56 msg = "%s: cannot stat %s: %m";
59 msg = "%s: %s is not a regular file";
61 msg = "%s: %s is world writable";
64 msg = "%s: %s is not owned by root";
66 msg = "%s: %s is not owned by uid %d";
68 msg = "%s: %s is group writeable by non-authorised groups";
71 if (msg != NULL)
72 syslog(LOG_ERR, msg, "_secure_path", path, uid);
/haiku-fatelf/src/add-ons/accelerants/matrox/
H A DGetAccelerantHook.c136 char *msg = ""; local
142 msg = "B_OVERLAY_COUNT";
145 msg = "B_OVERLAY_SUPPORTED_SPACES";
148 msg = "B_OVERLAY_SUPPORTED_FEATURES";
151 msg = "B_ALLOCATE_OVERLAY_BUFFER";
154 msg = "B_RELEASE_OVERLAY_BUFFER";
157 msg = "B_GET_OVERLAY_CONSTRAINTS";
160 msg = "B_ALLOCATE_OVERLAY";
163 msg = "B_RELEASE_OVERLAY";
166 msg
188 char *msg = ""; local
[all...]
/haiku-fatelf/src/add-ons/print/transports/hp_jetdirect/
H A Dprint_transport.cpp42 extern "C" _EXPORT BDataIO * init_transport(BMessage *msg) argument
44 if (msg == NULL)
50 const char* printer_name = msg->FindString("printer_file");
56 HPJetDirectPort * transport = new HPJetDirectPort(&printer, msg);
60 if (msg)
61 msg->what = 'okok';
/haiku-fatelf/src/bin/pkgman/
H A Dpkgman.h16 #define DIE(result, msg...) \
18 fprintf(stderr, "*** " msg); \
23 #define ERROR(result, msg...) \
25 fprintf(stderr, "*** " msg); \
29 #define WARN(result, msg...) \
31 fprintf(stderr, "* " msg); \
/haiku-fatelf/src/add-ons/kernel/file_systems/reiserfs/
H A Dhashes.cpp53 uint32 keyed_hash(const signed char *msg, int len) argument
70 a = (uint32)msg[ 0] |
71 (uint32)msg[ 1] << 8 |
72 (uint32)msg[ 2] << 16|
73 (uint32)msg[ 3] << 24;
74 b = (uint32)msg[ 4] |
75 (uint32)msg[ 5] << 8 |
76 (uint32)msg[ 6] << 16|
77 (uint32)msg[ 7] << 24;
78 c = (uint32)msg[
179 yura_hash(const signed char *msg, int len) argument
214 r5_hash(const signed char *msg, int len) argument
[all...]
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/test/reiserfs/
H A Dhashes.cpp53 uint32 keyed_hash(const signed char *msg, int len) argument
70 a = (uint32)msg[ 0] |
71 (uint32)msg[ 1] << 8 |
72 (uint32)msg[ 2] << 16|
73 (uint32)msg[ 3] << 24;
74 b = (uint32)msg[ 4] |
75 (uint32)msg[ 5] << 8 |
76 (uint32)msg[ 6] << 16|
77 (uint32)msg[ 7] << 24;
78 c = (uint32)msg[
179 yura_hash(const signed char *msg, int len) argument
214 r5_hash(const signed char *msg, int len) argument
[all...]
/haiku-fatelf/src/add-ons/accelerants/neomagic/
H A DGetAccelerantHook.c135 char *msg = ""; local
141 msg = "B_OVERLAY_COUNT";
144 msg = "B_OVERLAY_SUPPORTED_SPACES";
147 msg = "B_OVERLAY_SUPPORTED_FEATURES";
150 msg = "B_ALLOCATE_OVERLAY_BUFFER";
153 msg = "B_RELEASE_OVERLAY_BUFFER";
156 msg = "B_GET_OVERLAY_CONSTRAINTS";
159 msg = "B_ALLOCATE_OVERLAY";
162 msg = "B_RELEASE_OVERLAY";
165 msg
186 char *msg = ""; local
[all...]
/haiku-fatelf/src/add-ons/accelerants/via/
H A DGetAccelerantHook.c136 char *msg = ""; local
142 msg = "B_OVERLAY_COUNT";
145 msg = "B_OVERLAY_SUPPORTED_SPACES";
148 msg = "B_OVERLAY_SUPPORTED_FEATURES";
151 msg = "B_ALLOCATE_OVERLAY_BUFFER";
154 msg = "B_RELEASE_OVERLAY_BUFFER";
157 msg = "B_GET_OVERLAY_CONSTRAINTS";
160 msg = "B_ALLOCATE_OVERLAY";
163 msg = "B_RELEASE_OVERLAY";
166 msg
184 char *msg = ""; local
[all...]
/haiku-fatelf/headers/private/mail/
H A Dcrypt.h12 char *get_passwd(const BMessage *msg,const char *name);
13 bool set_passwd(BMessage *msg,const char *name,const char *password);

Completed in 152 milliseconds

1234567891011>>