Searched refs:name (Results 226 - 250 of 3725) sorted by path

1234567891011>>

/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/headers/private/media/
H A DMediaDebug.h21 #define PRINT_INPUT(_text, _in) do { char _buf[300]; string_for_format((_in).format, _buf, sizeof(_buf)); printf("%s node(node %" B_PRId32 ", port %" B_PRId32 "); source(port %" B_PRId32 ", id %" B_PRId32 "); dest(port %" B_PRId32 ", id %" B_PRId32 "); fmt(%s); name(%s)\n", (_text), (_in).node.node, (_in).node.port, (_in).source.port, (_in).source.id, (_in).destination.port, (_in).destination.id, _buf, (_in).name); } while (0)
22 #define PRINT_OUTPUT(_text, _out) do { char _buf[300]; string_for_format((_out).format, _buf, sizeof(_buf)); printf("%s node(node %" B_PRId32 ", port %" B_PRId32 "); source(port %" B_PRId32 ", id %" B_PRId32 "); dest(port %" B_PRId32 ", id %" B_PRId32 "); fmt(%s); name(%s)\n", (_text), (_out).node.node, (_out).node.port, (_out).source.port, (_out).source.id, (_out).destination.port, (_out).destination.id, _buf, (_out).name); } while (0)
H A DPluginManager.h72 char name[260]; member in struct:BPrivate::media::PluginManager::plugin_info
79 strcpy(name, other.name);
H A DServerInterface.h234 name[0] = 0;
239 entry_ref ref(device, directory, name);
247 if (ref.name == NULL)
248 name[0] = 0;
249 else if (strlen(ref.name) > B_FILE_NAME_LENGTH) {
250 debugger("File name too long!");
251 name[0] = 0;
253 strcpy(name, ref.name);
261 char name[B_FILE_NAME_LENGT member in struct:BPrivate::media::xfer_entry_ref
415 char name[B_MEDIA_NAME_LENGTH]; member in struct:server_register_node_request
450 char name[B_MEDIA_NAME_LENGTH + 1]; member in struct:server_get_live_nodes_request
638 char name[B_MEDIA_NAME_LENGTH + 1]; // 1 for a trailing "*" member in struct:server_get_dormant_nodes_request
684 char name[B_MEDIA_NAME_LENGTH]; member in struct:producer_prepare_to_connect_request
690 char name[B_MEDIA_NAME_LENGTH]; member in struct:producer_prepare_to_connect_reply
698 char name[B_MEDIA_NAME_LENGTH]; member in struct:producer_connect_request
702 char name[B_MEDIA_NAME_LENGTH]; member in struct:producer_connect_reply
1005 char name[B_FILE_NAME_LENGTH]; member in struct:fileinterface_set_ref_request
1020 char name[B_FILE_NAME_LENGTH]; member in struct:fileinterface_get_ref_reply
1027 char name[B_FILE_NAME_LENGTH]; member in struct:fileinterface_sniff_ref_request
[all...]
/haiku/headers/private/media/experimental/
H A DMediaClient.h37 BMediaClient(const char* name,
H A DMediaConnection.h71 const char* name = NULL);
119 BMediaInput(const char* name = NULL);
151 BMediaOutput(const char* name = NULL);
H A DSimpleMediaClient.h34 BSimpleMediaClient(const char* name,
92 // char* name
/haiku/headers/private/net/
H A Dnet_device.h25 char name[IF_NAMESIZE]; member in struct:net_device
44 status_t (*init_device)(const char* name, net_device** _device);
H A Dnet_stack.h97 status_t (*register_domain)(int family, const char* name,
147 status_t (*init_fifo)(net_fifo* fifo, const char* name, size_t maxBytes);
/haiku/headers/private/notification/
H A DAppUsage.h24 AppUsage(const char* name,
/haiku/headers/private/package/hpkg/
H A DPackageWriterImpl.h80 const char* name, size_t nameLength, int fd,
/haiku/headers/private/package/hpkg/v1/
H A DReaderImplBase.h180 const char* name; member in struct:BPackageKit::BHPKG::V1::BPrivate::ReaderImplBase::SectionInfo
186 name(_name)
/haiku/headers/private/package/manager/
H A DPackageManager.h146 const char* name, bool refresh);
192 LocalRepository(const BString& name);
220 InstalledRepository(const char* name,
H A DRepositoryBuilder.h36 const BString& name,
/haiku/headers/private/package/
H A Dpackagefs.h65 const char* name; member in struct:PackageFSPackageInfo
96 char* name; member in struct:PackageFSActivationChangeItem
/haiku/headers/private/print/
H A DPrintAddOnServer.h46 void AddDirectory(BMessage& message, const char* name,
48 void AddEntryRef(BMessage& message, const char* name,
H A DPrinterRoster.h34 status_t FindPrinter(const BString& name, BPrinter* printer);
/haiku/headers/private/screen_saver/
H A DScreenSaverSettings.h64 status_t GetModuleState(const char* name,
90 void SetModuleName(const char* name) argument
91 { fModuleName = name; }
92 void SetModuleState(const char* name,
/haiku/headers/private/shared/
H A DCalendarView.h28 BCalendarView(BRect frame, const char* name,
33 BCalendarView(const char* name,
H A DDriverSettingsMessageAdapter.h24 const char* name, int32 index, uint32 type,
28 const char* name, uint32 type,
32 const char* name, int32 index,
39 const char* name; member in struct:settings_template
69 const char* name);
84 const char* name, type_code type,
H A DEntryFilter.h50 bool Filter(const char* path, const char* name) const
53 if (fnmatch(fPattern, (fIsFileName ? name : path), 0) == 0)
123 // get leaf name
124 const char* name = strrchr(path, '/'); local
125 name = (name != NULL ? name + 1 : path);
128 if (_Filter(fExcludeFilters, path, name))
132 return fIncludeFilters == NULL || _Filter(fIncludeFilters, path, name);
161 const char* path, const char* name)
160 _Filter(const BasicEntryFilter* const& filterList, const char* path, const char* name) argument
[all...]
H A DHashString.h15 string_hash(const char *name) argument
18 if (name) {
19 for (; *name; name++) {
23 h = (h << 4) + *name;
H A DIconButton.h28 BIconButton(const char* name,
H A DMessageBuilder.h19 status_t PushObject(const char* name);
20 status_t PushObject(uint32 name);
29 status_t AddString(const char* name, const char* string);
30 status_t AddString(const char* name,
32 status_t AddInt8(const char* name, int8 value);
33 status_t AddUInt8(const char* name, uint8 value);
34 status_t AddInt16(const char* name, int16 value);
35 status_t AddUInt16(const char* name, uint16 value);
36 status_t AddInt32(const char* name, int32 value);
37 status_t AddUInt32(const char* name, uint3
[all...]
H A DRWLocker.h85 RWLocker(const char* name);
106 void _Init(const char* name);

Completed in 111 milliseconds

1234567891011>>