Searched refs:name (Results 51 - 75 of 3741) sorted by relevance

1234567891011>>

/haiku/headers/os/app/
H A DMessage.h71 status_t GetInfo(const char* name, type_code* typeFound,
73 status_t GetInfo(const char* name, type_code* typeFound,
75 status_t GetInfo(const char* name, type_code* typeFound,
127 const char* name);
139 status_t AddAlignment(const char* name,
141 status_t AddRect(const char* name, BRect rect);
142 status_t AddPoint(const char* name, BPoint point);
143 status_t AddSize(const char* name, BSize size);
144 status_t AddString(const char* name, const char* string);
145 status_t AddString(const char* name,
[all...]
/haiku/src/system/libroot/posix/glibc/libio/
H A Dstdio.c42 # define AL(name) AL2 (name, _IO_##name)
44 # define AL2(name, al) \
45 extern __typeof (name) al __attribute__ ((alias (#name), \
48 # define AL2(name, al) \
49 extern __typeof (name) al __attribute__ ((alias (#name)))
/haiku/src/system/kernel/device_manager/
H A Did_generator.cpp46 id_generator(const char* name) argument
49 name(strdup(name)),
57 free(name);
61 char* name; member in struct:id_generator
77 create_generator(const char* name) argument
79 TRACE(("create_generator(name: %s)\n", name));
81 id_generator* generator = new(std::nothrow) id_generator(name);
85 if (generator->name
126 get_generator(const char* name) argument
180 dm_create_id(const char* name) argument
207 dm_free_id(const char* name, uint32 id) argument
[all...]
H A Did_generator.h18 int32 dm_create_id(const char *name);
19 status_t dm_free_id(const char *name, uint32 id);
/haiku/src/tests/kits/interface/bshelf/Container/
H A DTPreferences.h31 status_t SetBool(const char *name, bool b);
32 status_t SetInt8(const char *name, int8 i);
33 status_t SetInt16(const char *name, int16 i);
34 status_t SetInt32(const char *name, int32 i);
35 status_t SetInt64(const char *name, int64 i);
36 status_t SetFloat(const char *name, float f);
37 status_t SetDouble(const char *name, double d);
38 status_t SetString(const char *name, const char *string);
39 status_t SetPoint(const char *name, BPoint p);
40 status_t SetRect(const char *name, BRec
[all...]
/haiku/src/tests/kits/interface/bshelf/ShelfInspector/
H A DTPreferences.h31 status_t SetBool(const char *name, bool b);
32 status_t SetInt8(const char *name, int8 i);
33 status_t SetInt16(const char *name, int16 i);
34 status_t SetInt32(const char *name, int32 i);
35 status_t SetInt64(const char *name, int64 i);
36 status_t SetFloat(const char *name, float f);
37 status_t SetDouble(const char *name, double d);
38 status_t SetString(const char *name, const char *string);
39 status_t SetPoint(const char *name, BPoint p);
40 status_t SetRect(const char *name, BRec
[all...]
/haiku/src/tests/kits/interface/bdeskbar/
H A DDeskbarGetItemTest.cpp26 DeskbarGetItemTest::DeskbarGetItemTest(std::string name) : argument
27 TestCase(name)
62 const char *name = buffer; local
82 name = NULL;
83 assert(myDeskbar.GetItemInfo(id, &name) == B_BAD_VALUE); */
85 name = buffer;
86 assert(myDeskbar.GetItemInfo(id, &name) == B_OK);
88 assert(name != buffer);
89 assert(myDeskbar.HasItem(name));
90 assert(myDeskbar.GetItemInfo(name,
[all...]
/haiku/src/apps/showimage/
H A DShowImageSettings.cpp52 ShowImageSettings::GetBool(const char* name, bool defaultValue) argument
55 if (fSettings.FindBool(name, &value) == B_OK)
63 ShowImageSettings::GetInt32(const char* name, int32 defaultValue) argument
66 if (fSettings.FindInt32(name, &value) == B_OK)
74 ShowImageSettings::GetFloat(const char* name, float defaultValue) argument
77 if (fSettings.FindFloat(name, &value) == B_OK)
85 ShowImageSettings::GetRect(const char* name, BRect defaultValue) argument
88 if (fSettings.FindRect(name, &value) == B_OK)
96 ShowImageSettings::GetTime(const char* name, bigtime_t defaultValue) argument
99 if (fSettings.FindInt64(name,
107 GetString(const char* name, const char* defaultValue) argument
118 SetBool(const char* name, bool value) argument
130 SetInt32(const char* name, int32 value) argument
142 SetFloat(const char* name, float value) argument
154 SetRect(const char* name, BRect value) argument
166 SetTime(const char* name, bigtime_t value) argument
176 SetString(const char* name, const char* value) argument
[all...]
/haiku/src/tools/cppunit/cppunit/
H A DTypeInfoHelper.cpp18 string name( info.name() );
22 name.compare( classPrefix, 0, classPrefix.length() );
24 name.compare( 0, classPrefix.length(), classPrefix );
27 return has_class_prefix ? name.substr( classPrefix.length() ) : name;
/haiku/headers/private/kernel/util/
H A DKMessage.h59 status_t AddField(const char* name, type_code type,
62 status_t FindField(const char* name,
64 status_t FindField(const char* name, type_code type,
69 status_t AddData(const char* name, type_code type,
72 status_t AddArray(const char* name, type_code type,
75 inline status_t AddBool(const char* name, bool value);
76 inline status_t AddInt8(const char* name, int8 value);
77 inline status_t AddInt16(const char* name, int16 value);
78 inline status_t AddInt32(const char* name, int32 value);
79 inline status_t AddInt64(const char* name, int6
292 AddBool(const char* name, bool value) argument
299 AddInt8(const char* name, int8 value) argument
306 AddInt16(const char* name, int16 value) argument
313 AddInt32(const char* name, int32 value) argument
320 AddInt64(const char* name, int64 value) argument
327 AddPointer(const char* name, const void* value) argument
335 AddString(const char* name, const char* value) argument
348 _FindType(const char* name, type_code type, int32 index, T* value) const argument
367 FindBool(const char* name, bool* value) const argument
374 FindBool(const char* name, int32 index, bool* value) const argument
381 FindInt8(const char* name, int8* value) const argument
388 FindInt8(const char* name, int32 index, int8* value) const argument
395 FindInt16(const char* name, int16* value) const argument
402 FindInt16(const char* name, int32 index, int16* value) const argument
409 FindInt32(const char* name, int32* value) const argument
416 FindInt32(const char* name, int32 index, int32* value) const argument
423 FindInt64(const char* name, int64* value) const argument
430 FindInt64(const char* name, int32 index, int64* value) const argument
437 FindPointer(const char* name, void** value) const argument
444 FindPointer(const char* name, int32 index, void** value) const argument
451 FindString(const char* name, const char** value) const argument
458 FindString(const char* name, int32 index, const char** value) const argument
467 _GetType(const char* name, type_code type, int32 index, const T& defaultValue) const argument
478 GetBool(const char* name, bool defaultValue) const argument
485 GetBool(const char* name, int32 index, bool defaultValue) const argument
492 GetInt8(const char* name, int8 defaultValue) const argument
499 GetInt8(const char* name, int32 index, int8 defaultValue) const argument
506 GetInt16(const char* name, int16 defaultValue) const argument
513 GetInt16(const char* name, int32 index, int16 defaultValue) const argument
520 GetInt32(const char* name, int32 defaultValue) const argument
527 GetInt32(const char* name, int32 index, int32 defaultValue) const argument
534 GetInt64(const char* name, int64 defaultValue) const argument
541 GetInt64(const char* name, int32 index, int64 defaultValue) const argument
548 GetPointer(const char* name, const void* defaultValue) const argument
555 GetPointer(const char* name, int32 index, const void* defaultValue) const argument
564 GetString(const char* name, int32 index, const char* defaultValue) const argument
579 GetString(const char* name, const char* defaultValue) const argument
586 SetBool(const char* name, bool value) argument
593 SetInt8(const char* name, int8 value) argument
600 SetInt16(const char* name, int16 value) argument
607 SetInt32(const char* name, int32 value) argument
614 SetInt64(const char* name, int64 value) argument
621 SetPointer(const char* name, const void* value) argument
[all...]
/haiku/src/apps/processcontroller/
H A DPreferences.h19 void SaveWindowPosition(BWindow* window, const char* name);
20 void LoadWindowPosition(BWindow* window, const char* name);
21 void SaveWindowFrame(BWindow* window, const char* name);
22 void LoadWindowFrame(BWindow* window, const char* name);
23 void SaveInt32(int32 val, const char* name);
24 bool ReadInt32(int32& val, const char* name);
25 void SaveFloat(float val, const char* name);
26 bool ReadFloat(float& val, const char* name);
27 void SaveRect(BRect& rect, const char* name);
28 BRect& ReadRect(BRect& rect, const char* name);
[all...]
/haiku/headers/private/kernel/
H A Dboot_item.h17 extern status_t add_boot_item(const char *name, void *data, size_t size);
18 extern void *get_boot_item(const char *name, size_t *_size);
/haiku/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);
/haiku/src/servers/net/
H A DAutoconfigClient.cpp13 AutoconfigClient::AutoconfigClient(const char* name, BMessenger target, argument
15 : BHandler(name),
/haiku/src/system/libroot/os/arch/x86_64/
H A Dsyscalls.inc16 #define _SYSCALL_NO_RCX(name, n) \
18 FUNCTION(name): \
22 FUNCTION_END(name)
24 #define _SYSCALL_RCX(name, n) \
26 FUNCTION(name): \
31 FUNCTION_END(name)
34 #define SYSCALL0(name, n) _SYSCALL_NO_RCX(name, n)
35 #define SYSCALL1(name, n) _SYSCALL_NO_RCX(name,
[all...]
/haiku/src/tests/kits/app/bapplication/
H A DAppQuitRequestedTester.h26 AppQuitRequestedTester(std::string name) : TestCase(name) {;} argument
H A DAppQuitTester.h26 AppQuitTester(std::string name) : TestCase(name) {;} argument
/haiku/src/tests/kits/app/bclipboard/
H A DBClipboardTester.h26 BClipboardTester(std::string name) : TestCase(name) {;} argument
/haiku/src/tests/kits/app/blooper/
H A DAddCommonFilterTest.h26 TAddCommonFilterTest(std::string name) : TestCase(name) {;} argument
H A DAddHandlerTest.h26 TAddHandlerTest(std::string name) : TestCase(name) {;} argument
H A DCountHandlersTest.h26 TCountHandlersTest(std::string name) : TestCase(name) {;} argument
H A DHandlerAtTest.h26 THandlerAtTest(std::string name) : TestCase(name) {;} argument
H A DLooperForThreadTest.h26 TLooperForThreadTest(std::string name) : TestCase(name) {;} argument
H A DLooperSizeTest.h26 TLooperSizeTest(std::string name) : TestCase(name) {;} argument
H A DPerformTest.h26 TPerformTest(std::string name) : TestCase(name) {;} argument

Completed in 1223 milliseconds

1234567891011>>