Searched refs:name (Results 176 - 200 of 3725) sorted by last modified time

1234567891011>>

/haiku/src/add-ons/media/plugins/ffmpeg/
H A DDemuxerTable.cpp27 if (strstr(format->name, demuxerFormat->short_name) != NULL)
/haiku/src/add-ons/kernel/network/stack/
H A Ddevice_interfaces.cpp165 find_device_interface(const char* name) argument
171 if (!strcmp(interface->device->name, name))
189 char name[128]; local
190 snprintf(name, sizeof(name), "%s receive queue", device->name);
192 if (init_fifo(&interface->receive_queue, name, 16 * 1024 * 1024) < B_OK)
203 snprintf(name, sizeof(name), "
445 get_device_interface(const char* name, bool create) argument
535 char name[B_OS_NAME_LENGTH]; local
[all...]
/haiku/src/add-ons/kernel/network/ppp/ppp/
H A Dppp.cpp52 ppp_init(const char *name, net_device **_device) argument
57 if (strncmp(name, "ppp", 3)) {
58 dprintf("[%s] not ppp device\n", name);
62 dprintf("[%s] is ppp device\n", name);
69 ppp_interface_id idInterface = gPPPInterfaceModule->CreateInterfaceWithName(name, 0);
89 strcpy(device->name, name);
/haiku/src/add-ons/kernel/network/devices/loopback/
H A Dloopback.cpp36 loopback_init(const char *name, net_device **_device) argument
40 if (strncmp(name, "loop", 4))
59 strcpy(device->name, name);
/haiku/src/add-ons/kernel/network/devices/ethernet/
H A Dethernet.cpp79 device->name, (unsigned int)device->media,
87 device->name, (unsigned int)device->media,
134 ethernet_init(const char *name, net_device **_device) argument
140 if (strncmp(name, "/dev/net/", 9)
141 || !strcmp(name, "/dev/net/userland_server")
142 || strstr(name, "..") != NULL)
145 if (access(name, F_OK) != 0)
160 strcpy(device->name, name);
191 device->fd = open(device->name, O_RDW
[all...]
/haiku/src/add-ons/kernel/network/devices/dialup/
H A Ddialup.cpp196 dialup_init(const char* name, net_device** _device) argument
199 if (strncmp(name, "/dev/ports/", 11))
214 strcpy(device->name, name);
262 device->fd = open(device->name, O_RDWR);
/haiku/src/add-ons/kernel/file_systems/fat/
H A Dfile.cpp513 dosfs_create(fs_volume *_vol, fs_vnode *_dir, const char *name, int omode, argument
524 ASSERT(name != NULL);
525 if (name == NULL) {
526 dprintf("dosfs_create called with null name\n");
531 dir->vnid, name, perms, omode));
555 result = findfile_case_duplicates(vol, dir, name, vnid, &file, &dups_exist);
558 dprintf("exclusive dosfs_create called on existing file %s\n", name);
596 if ((result = create_dir_entry(vol, dir, &dummy, name, &(dummy.sindex), &(dummy.eindex))) != B_OK) {
597 dprintf("dosfs_create: error creating directory entry for %s (%s)\n", name, strerror(result));
635 notify_entry_created(vol->id, dir->vnid, name, *vni
645 dosfs_mkdir(fs_volume *_vol, fs_vnode *_dir, const char *name, int perms) argument
1087 do_unlink(fs_volume *_vol, fs_vnode *_dir, const char *name, bool is_file) argument
1187 dosfs_unlink(fs_volume *vol, fs_vnode *dir, const char *name) argument
1196 dosfs_rmdir(fs_volume *vol, fs_vnode *dir, const char *name) argument
[all...]
/haiku/src/add-ons/kernel/drivers/disk/virtual/virtio_block/
H A Dvirtio_block.cpp481 // TODO: use whole device name here
610 char name[64]; local
611 snprintf(name, sizeof(name), "disk/virtual/virtio_block/%" B_PRId32 "/raw",
614 status = sDeviceManager->publish_device(info->node, name,
/haiku/src/preferences/network/
H A DInterfaceListItem.cpp31 InterfaceListItem::InterfaceListItem(const char* name, argument
46 fInterface.SetTo(name);
/haiku/src/kits/tracker/
H A DSettingsViews.cpp25 Except as contained in this notice, the name of Be Incorporated shall not be
65 send_bool_notices(uint32 what, const char* name, bool value) argument
72 message.AddBool(name, value);
84 SettingsView::SettingsView(const char* name) argument
86 BGroupView(name)
/haiku/src/add-ons/kernel/drivers/misc/
H A Dpoke.cpp88 find_device(const char* name) argument
98 poke_open(const char* name, uint32 flags, void** cookie) argument
300 char name[B_OS_NAME_LENGTH]; local
301 if (user_strlcpy(name, ioctl.name, B_OS_NAME_LENGTH) < B_OK)
304 ioctl.area = vm_map_physical_memory(team_get_current_team_id(), name,
/haiku/headers/private/drivers/
H A Dpoke.h62 const char* name; member in struct:__anon5
/haiku/headers/os/interface/
H A DListView.h26 BListView(BRect frame, const char* name,
32 BListView(const char* name,
/haiku/src/add-ons/kernel/bus_managers/acpi/
H A DModule.cpp111 attrs[attrCount].name = ACPI_DEVICE_HID_ITEM;
117 attrs[attrCount].name = ACPI_DEVICE_CID_ITEM;
123 attrs[attrCount].name = ACPI_DEVICE_UID_ITEM;
130 attrs[attrCount].name = B_DEVICE_TYPE;
134 attrs[attrCount].name = B_DEVICE_SUB_TYPE;
138 attrs[attrCount].name = B_DEVICE_INTERFACE;
146 attrs[attrCount].name = ACPI_DEVICE_ADDR_ITEM;
H A DACPIPrivate.h17 // name of ACPI root module
20 // name of ACPI device modules
23 // name of the ACPI namespace device
26 // name of the ACPI call device
41 char name[32]; // name (for fast log) member in struct:acpi_device_cookie
/haiku/src/add-ons/kernel/bus_managers/acpi/acpica/include/
H A Dacpixf.h75 * 3.5. Neither the name Intel nor any other trademark owned or controlled by
178 #define ACPI_GLOBAL(type,name) \
179 extern type name; \
180 type name
182 #define ACPI_INIT_GLOBAL(type,name,value) \
183 type name=value
187 #define ACPI_GLOBAL(type,name) \
188 extern type name
192 #define ACPI_INIT_GLOBAL(type,name,value) \
193 extern type name
[all...]
H A Dacparser.h75 * 3.5. Neither the name Intel nor any other trademark owned or controlled by
453 UINT32 name);
H A Dacinterp.h75 * 3.5. Neither the name Intel nor any other trademark owned or controlled by
162 #define ACPI_EXD_TABLE_SIZE(name) (sizeof(name) / sizeof (ACPI_EXDUMP_INFO))
/haiku/src/add-ons/kernel/bus_managers/acpi/acpica/components/parser/
H A Dpsutils.c75 * 3.5. Neither the name Intel nor any other trademark owned or controlled by
170 * DESCRIPTION: Create a Scope and associated namepath op with the root name
365 * Get op's name (4-byte name segment) or 0 if unnamed
372 /* The "generic" object has no name associated with it */
379 /* Only the "Extended" parse objects have a name */
386 * Set op's name
391 UINT32 name)
394 /* The "generic" object has no name associated with it */
401 Op->Named.Name = name;
389 AcpiPsSetName( ACPI_PARSE_OBJECT *Op, UINT32 name) argument
[all...]
/haiku/src/servers/app/
H A DWorkspacesView.h18 const char* name, int32 token, uint32 resize,
H A DWorkspacesView.cpp27 const char* name, int32 token, uint32 resizeMode, uint32 flags)
29 View(frame, scrollingOffset, name, token, resizeMode, flags),
26 WorkspacesView(BRect frame, BPoint scrollingOffset, const char* name, int32 token, uint32 resizeMode, uint32 flags) argument
H A DWindow.h87 Window(const BRect& frame, const char *name,
210 void SetTitle(const char* name, BRegion& dirty);
H A DWindow.cpp73 Window::Window(const BRect& frame, const char *name, argument
77 fTitle(name),
1061 Window::SetTitle(const char* name, BRegion& dirty) argument
1066 fTitle = name;
1071 decorator->SetTitle(index, name, &dirty);
H A DView.h48 const char* name, int32 token,
H A DView.cpp84 View::View(IntRect frame, IntPoint scrollingOffset, const char* name, argument
87 fName(name),

Completed in 106 milliseconds

1234567891011>>