Searched refs:name (Results 151 - 175 of 3725) sorted by relevance

1234567891011>>

/haiku/src/add-ons/network_settings/dialup/
H A DInterfaceUtils.cpp34 FindNextMenuInsertionIndex(BMenu *menu, const char *name, int32 index) argument
39 if(item && strcasecmp(name, item->Label()) <= 0)
48 FindNextListInsertionIndex(BListView *list, const char *name) argument
54 if(item && strcasecmp(name, item->Text()) <= 0)
74 BString name; local
76 name << addon->TechnicalName();
78 name << " (";
81 name << addon->FriendlyName();
83 name << ")";
86 int32 insertAt = FindNextMenuInsertionIndex(menu, name
[all...]
/haiku/src/build/libbe/support/
H A DLocker.cpp53 BLocker::BLocker(const char *name) argument
55 InitLocker(name, true);
65 BLocker::BLocker(const char *name, bool benaphoreStyle) argument
67 InitLocker(name, benaphoreStyle);
75 BLocker::BLocker(const char *name, bool benaphoreStyle, argument
78 InitLocker(name, benaphoreStyle);
193 BLocker::InitLocker(const char *name, bool benaphore) argument
195 if (name == NULL)
196 name = "some BLocker";
203 fSemaphoreID = create_sem(0, name);
[all...]
/haiku/src/libs/x86emu/
H A Dvalidate.c15 * supporting documentation, and that the name of the authors not be used
70 #define VAL_TEST_BINARY(name) \
71 r_asm = name##_asm(&flags,d,s); \
72 r = name(d,s); \
77 #define VAL_TEST_BINARY_VOID(name) \
78 name##_asm(&flags,d,s); \
79 name(d,s); \
85 #define VAL_FAIL_BYTE_BYTE_BINARY(name) \
89 r, #name, d, s, print_flags(buf1,inflags), print_flags(buf2,M.x86.R_EFLG)); \
91 r_asm, #name"_as
[all...]
/haiku/src/kits/tracker/
H A DAttributeStream.h25 Except as contained in this notice, the name of Be Incorporated shall not be
78 AttributeInfo(const char* name, attr_info info);
79 AttributeInfo(const char* name, uint32 type, off_t size);
82 void SetTo(const char* name, attr_info info);
83 void SetTo(const char* name, uint32 type, off_t size);
116 virtual off_t Read(const char* name, const char* foreignName,
119 virtual off_t Write(const char* name, const char* foreignName,
163 virtual off_t Contains(const char* name, uint32 type);
164 virtual off_t Read(const char* name, const char* foreignName, uint32 type,
166 virtual off_t Write(const char* name, cons
214 AttrNode(const char* name, uint32 type, off_t size, char* data) argument
368 AttributeStreamConstValue(const char* name, uint32 attributeType, Type value) argument
409 Find(const char* name, uint32 type) const argument
420 AttributeStreamBoolValue(const char* name, bool value) argument
430 AttributeStreamInt32Value(const char* name, int32 value) argument
440 AttributeStreamInt64Value(const char* name, int64 value) argument
450 AttributeStreamRectValue(const char* name, BRect value) argument
460 AttributeStreamFloatValue(const char* name, float value) argument
[all...]
/haiku/src/add-ons/kernel/file_systems/netfs/client/
H A DVirtualDir.cpp23 VirtualDirEntry::SetTo(const char* name, Node* node) argument
25 if (!name || strlen(name) == 0 || !node)
28 if (!fName.SetTo(name))
91 VirtualDirIterator::GetCurrentEntry(const char** name, Node** node) argument
97 *name = ".";
101 *name = "..";
109 *name = fCurrentEntry->GetName();
202 VirtualDir::AddEntry(const char* name, Node* child) argument
204 if (!name || !chil
233 RemoveEntry(const char* name) argument
[all...]
/haiku/src/add-ons/kernel/file_systems/ramfs/
H A DIndexDirectory.cpp73 IndexDirectory::CreateIndex(const char *name, uint32 type, argument
76 status_t error = (name ? B_OK : B_BAD_VALUE);
78 if (!FindIndex(name)) {
84 name, type, sizeof(int32));
88 name, type, sizeof(uint32));
92 name, type, sizeof(int64));
96 name, type, sizeof(uint64));
100 name, type, sizeof(float));
104 name, type, sizeof(double));
108 name, typ
134 DeleteIndex(const char *name, uint32 type) argument
157 FindIndex(const char *name) argument
172 FindIndex(const char *name, uint32 type) argument
182 FindAttributeIndex(const char *name) argument
192 FindAttributeIndex(const char *name, uint32 type) argument
[all...]
/haiku/src/bin/rc/
H A Ddecompile.cpp51 static void write_generic_data(const char *name, type_code type,
123 write_field_name(const char *name) argument
126 // field's type code (which goes to the left of the field name) and
127 // the field's data (to right of the name). If we are not currently
128 // writing a field (but the entire resource), name is NULL.
130 if (name != NULL)
131 fprintf(sOutputFile, "\"%s\" = ", name);
136 is_ident(const char *name) argument
138 if (name[0] != '_' && !isalpha(name[
151 has_prefix(const char *name) argument
188 write_rsrc(type_code type, int32 id, const char *name) argument
235 write_raw(const char *name, type_code type, const void *data, size_t length, size_t bytesPerLine = 32) argument
277 write_bool(const char *name, const void *data, size_t length) argument
289 write_int8(const char *name, const void *data, size_t length) argument
301 write_int16(const char *name, const void *data, size_t length) argument
313 write_int32(const char *name, const void *data, size_t length) argument
325 write_int64(const char *name, const void *data, size_t length) argument
337 write_uint8(const char *name, const void *data, size_t length) argument
349 write_uint16(const char *name, const void *data, size_t length) argument
361 write_uint32(const char *name, const void *data, size_t length) argument
373 write_uint64(const char *name, const void *data, size_t length) argument
385 write_float(const char *name, const void *data, size_t length) argument
397 write_double(const char *name, const void *data, size_t length) argument
409 write_size(const char *name, const void *data, size_t length) argument
421 write_ssize(const char *name, const void *data, size_t length) argument
433 write_off(const char *name, const void *data, size_t length) argument
445 write_time(const char *name, const void *data, size_t length) argument
457 write_point(const char *name, const void *data) argument
468 write_rect(const char *name, const void *data) argument
479 write_rgb(const char *name, const void *data) argument
535 write_string(const char *name, type_code type, const void *data, size_t length) argument
591 const char *name; local
593 char *name; local
621 write_message(const char *name, BMessage &msg, type_code type) argument
667 write_other(const char *name, type_code type, const void *data, size_t length) argument
801 write_generic_data(const char *name, type_code type, const void *data, size_t length) argument
847 write_data(int32 id, const char *name, type_code type, const void *data, size_t length) argument
937 const char *name; local
[all...]
/haiku/headers/cpp/
H A Dpfstream.h44 ipfstream(const char *name, int mode=ios::in, int prot=0664);
55 opfstream(const char *name, int mode=ios::out, int prot=0664);
/haiku/src/add-ons/index_server/audiotags/
H A DAudioTagAnalyser.h10 AudioTagAnalyser(BString name,
21 AudioTagAddOn(image_id id, const char* name);
/haiku/src/add-ons/kernel/bus_managers/firewire/
H A Dutil.h30 area_id alloc_mem(void **virt, void **phy, size_t size, uint32 protection, const char *name);
31 area_id map_mem(void **virt, void *phy, size_t size, uint32 protection, const char *name);
/haiku/src/add-ons/kernel/network/ppp/shared/libkernelppp/headers/
H A Dsettings_tools.h19 extern driver_parameter *new_driver_parameter(const char *name);
21 extern bool set_driver_parameter_name(const char *name, driver_parameter *parameter);
35 extern const driver_parameter *get_parameter_with_name(const char *name,
37 extern const char *get_settings_value(const char *name,
54 get_parameter_with_name(const char *name, const driver_parameter *parameters) argument
59 return get_parameter_with_name(name,
66 get_parameter_value(const char *name, const driver_parameter *parameters) argument
71 return get_settings_value(name, (driver_settings*) &parameters->parameter_count);
/haiku/src/add-ons/print/transports/shared/
H A DDbgMsg.h9 void DUMP_BFILE(BFile *file, const char *name);
14 #define DUMP_BFILE(file, name) (void)0
/haiku/src/apps/cortex/support/
H A DProfileBlock.h16 * 3. The name of the author may not be used to endorse or promote products
36 // stack, giving it a name and a ProfileTarget to reference.
51 ProfileBlock(ProfileTarget& target, const char* name) : argument
53 m_name(name),
/haiku/src/apps/icon-o-matic/generic/gui/popup_control/
H A DPopupView.cpp15 PopupView::PopupView(const char* name) argument
16 : BView(BRect(0.0, 0.0, 10.0, 10.0), name,
/haiku/src/apps/terminal/
H A DActiveProcessInfo.cpp20 ActiveProcessInfo::SetTo(pid_t id, const BString& name, argument
24 fName = name;
/haiku/src/tests/kits/app/bapplication/
H A DBApplicationTester.h26 TBApplicationTester(std::string name) : TestCase(name) {;} argument
/haiku/src/tests/kits/app/bclipboard/
H A DCountTester.h26 CountTester(std::string name) : TestCase(name) {;} argument
H A DLockTester.h26 LockTester(std::string name) : TestCase(name) {;} argument
/haiku/src/tests/kits/app/bhandler/
H A DAddFilterTest.h27 TAddFilterTest(std::string name) : TestCase(name) {;} argument
H A DHandlerLooperTest.h27 TLooperTest(std::string name) : TestCase(name) {;} argument
H A DIsWatchedTest.h26 TIsWatchedTest(std::string name) : TestCase(name) {;} argument
H A DLockLooperTest.h27 TLockLooperTest(std::string name) : TestCase(name) {;} argument
H A DLockLooperWithTimeoutTest.h27 TLockLooperWithTimeoutTest(std::string name) : TestCase(name) {;} argument
H A DNextHandlerTest.h27 TNextHandlerTest(std::string name) : TestCase(name) {;} argument
H A DRemoveFilterTest.h27 TRemoveFilterTest(std::string name) : TestCase(name) {;} argument

Completed in 118 milliseconds

1234567891011>>