Searched refs:cmd (Results 176 - 200 of 318) sorted by relevance

1234567891011>>

/haiku/src/servers/media_addon/
H A DMediaAddonServer.cpp311 server_rescan_defaults_command cmd; local
312 SendToServer(SERVER_RESCAN_DEFAULTS, &cmd, sizeof(cmd));
592 server_rescan_defaults_command cmd; local
593 SendToServer(SERVER_RESCAN_DEFAULTS, &cmd, sizeof(cmd));
/haiku/src/add-ons/kernel/drivers/audio/ac97/auvia/
H A Dauvia.c520 unsigned char cmd; local
541 cmd = (*pci->read_pci_config)(card->info.bus, card->info.device,
543 PRINT(("PCI command before: %x\n", cmd));
545 card->info.function, PCI_command, 2, cmd | PCI_command_io);
546 cmd = (*pci->read_pci_config)(card->info.bus, card->info.device,
548 PRINT(("PCI command after: %x\n", cmd));
/haiku/src/add-ons/kernel/drivers/audio/ac97/es1370/
H A Des1370.c438 unsigned char cmd; local
452 cmd = (*pci->read_pci_config)(card->info.bus, card->info.device, card->info.function, PCI_command, 2);
453 PRINT(("PCI command before: %x\n", cmd));
456 cmd | PCI_command_master | PCI_command_io);
457 cmd = (*pci->read_pci_config)(card->info.bus, card->info.device, card->info.function, PCI_command, 2);
458 PRINT(("PCI command after: %x\n", cmd));
/haiku/src/add-ons/kernel/bus_managers/firewire/
H A Dfwohcireg.h114 uint32_t cmd; member in struct:fwohcidb::__anon3::__anon4
211 fwohcireg_t cmd; member in struct:ohci_dma
222 fwohcireg_t cmd; member in struct:ohci_itdma
/haiku/src/add-ons/kernel/busses/scsi/usb/
H A Dproto_bulk.c72 static void bulk_only_transfer(usb_device_info *udi, uint8 *cmd,
305 \param cmd: SCSI command to be performed on USB device
319 bulk_only_transfer(usb_device_info *udi, uint8 *cmd, uint8 cmdlen, //sg_buffer *sgb, argument
336 memcpy(cbw.CDB, cmd, cbw.cdb_len);
H A Dtracing.c275 \param cmd: array of bytes to be traced. typically pointer SCSI command buffer
276 \param cmdlen: size of buffer in cmd parameter
282 usb_scsi_trace_command(bool b_hlight, const uint8 *cmd, size_t cmdlen) argument
292 usb_scsi_trace_bytes(prefix, cmd, len); /* append command bytes to log */
/haiku/src/add-ons/kernel/drivers/network/ether/dec21xxx/dev/dc/
H A Ddcphy.c189 dcphy_service(struct mii_softc *sc, struct mii_data *mii, int cmd) argument
198 switch (cmd) {
292 mii_phy_update(sc, cmd);
/haiku/src/libs/compat/freebsd_network/
H A Dfbsd_if_media.c197 ifmedia_ioctl(ifp, ifr, ifm, cmd)
201 u_long cmd;
210 switch (cmd) {
/haiku/src/add-ons/kernel/bus_managers/ps2/
H A Dps2_common.cpp240 ps2_command(uint8 cmd, const uint8 *out, int outCount, uint8 *in, int inCount) argument
249 TRACE("ps2: ps2_command cmd 0x%02x, out %d, in %d\n", cmd, outCount, inCount);
256 ps2_write_ctrl(cmd);
/haiku/src/bin/unzip/
H A Dapi.c26 int UzpGrep(char *archive, char *file, char *pattern, int cmd, int SkipBin,
434 cmd = 0 - case-insensitive search
452 int UZ_EXP UzpGrep(char *archive, char *file, char *pattern, int cmd, argument
494 if (cmd > 1) {
501 if ((cmd == 0) || (cmd == 2)) {
/haiku/src/add-ons/kernel/drivers/network/wlan/iprowifi2100/dev/ipw/
H A Dif_ipwvar.h146 struct ipw_cmd cmd; member in struct:ipw_softc
H A Dif_ipw.c983 struct ipw_cmd *cmd; local
987 cmd = mtod(sbuf->m, struct ipw_cmd *);
989 DPRINTFN(9, ("cmd ack'ed %s(%u, %u, %u, %u, %u)\n",
990 ipw_cmdname(le32toh(cmd->type)), le32toh(cmd->type),
991 le32toh(cmd->subtype), le32toh(cmd->seq), le32toh(cmd->len),
992 le32toh(cmd->status)));
1433 ipw_cmdname(int cmd) argument
1436 int cmd; member in struct:__anon1185
[all...]
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5416/
H A Dar5416_ani.c175 ar5416AniControl(struct ath_hal *ah, HAL_ANI_CMD cmd, int param) argument
189 OS_MARK(ah, AH_MARK_ANI_CONTROL, cmd);
192 if (cmd == HAL_ANI_PRESENT)
195 if (cmd == HAL_ANI_MODE) {
219 if (((1 << cmd) & AH5416(ah)->ah_ani_function) == 0) {
221 __func__, cmd);
222 HALDEBUG(ah, HAL_DEBUG_ANI, "%s: cmd %d; mask %x\n", __func__, cmd, AH5416(ah)->ah_ani_function);
226 switch (cmd) {
360 HALDEBUG(ah, HAL_DEBUG_ANI, "%s: invalid cmd
[all...]
/haiku/src/add-ons/kernel/drivers/network/ether/rtl81xx/dev/mii/
H A Drgephy.c153 rgephy_service(struct mii_softc *sc, struct mii_data *mii, int cmd) argument
158 switch (cmd) {
274 cmd == MII_MEDIACHG) {
277 mii_phy_update(sc, cmd);
/haiku/src/add-ons/kernel/file_systems/userlandfs/server/fuse/
H A Dfuse_fs.cpp197 int cmd, struct flock* lock)
201 return fs->ops.lock(path, fi, cmd, lock);
345 int fuse_fs_ioctl(struct fuse_fs *fs, const char *path, int cmd, void *arg, argument
351 return fs->ops.ioctl(path, cmd, arg, fi, flags, data);
196 fuse_fs_lock(struct fuse_fs* fs, const char* path, struct fuse_file_info* fi, int cmd, struct flock* lock) argument
/haiku/src/add-ons/kernel/drivers/audio/ac97/geode/
H A Dgeode_controller.cpp397 uint16 cmd; local
400 cmd = (gPci->read_pci_config)(controller->pci_info.bus,
402 if (!(cmd & PCI_command_master)) {
405 PCI_command, 2, cmd | PCI_command_master);
/haiku/3rdparty/kallisti5/
H A Dconfigure.py85 def cmdrun(cmd):
86 return subprocess.check_output(cmd).decode(sys.stdout.encoding)
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/
H A Dif_ath_ioctl.c237 ath_ioctl(struct ieee80211com *ic, u_long cmd, void *data) argument
242 switch (cmd) {
/haiku/src/add-ons/kernel/file_systems/ntfs/libntfs/
H A Dioctl.c392 int ntfs_ioctl(ntfs_inode *ni, unsigned long cmd, argument
398 switch (cmd) {
/haiku/src/add-ons/kernel/drivers/audio/ac97/auich/
H A Dauich.c622 unsigned char cmd; local
677 cmd = (*pci->read_pci_config)(card->info.bus, card->info.device,
679 PRINT(("PCI command before: %x\n", cmd));
680 cmd |= PCI_command_master;
683 card->info.function, PCI_command, 2, cmd | PCI_command_memory);
686 card->info.function, PCI_command, 2, cmd | PCI_command_io);
688 cmd = (*pci->read_pci_config)(card->info.bus, card->info.device,
690 PRINT(("PCI command after: %x\n", cmd));
/haiku/src/bin/network/ftpd/
H A Dftpd.c223 #define LOGCMD(cmd, file) logcmd((cmd), (file), NULL, -1)
224 #define LOGCMD2(cmd, file1, file2) logcmd((cmd), (file1), (file2), -1)
225 #define LOGBYTES(cmd, file, cnt) logcmd((cmd), (file), NULL, (cnt))
1676 retrieve(char *cmd, char *name) argument
1683 if (cmd == 0) {
1689 (void) snprintf(line, sizeof(line), cmd, name), name = line;
1697 if (cmd
[all...]
/haiku/src/libs/compat/openbsd_wlan/net80211/
H A Dieee80211_ioctl.c457 ieee80211_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data) argument
485 switch (cmd) {
488 error = ifmedia_ioctl(ifp, ifr, &ic->ic_media, cmd);
830 if (cmd == SIOCG80211ZSTATS)
989 error = (cmd == SIOCADDMULTI) ?
998 error = ether_ioctl(ifp, cmd, data);
1000 error = ether_ioctl(ifp, &ic->ic_ac, cmd, data);
/haiku/src/libs/icon/shape/
H A DVectorPath.cpp643 unsigned cmd = curve.vertex(&x1, &y1); local
644 while (!agg::is_stop(cmd)) {
645 cmd = curve.vertex(&x2, &y2);
863 unsigned cmd = curve.vertex(&x, &y); local
864 while (!agg::is_stop(cmd)) {
867 cmd = curve.vertex(&x, &y);
880 unsigned cmd = curve.vertex(&x, &y); local
881 while (!agg::is_stop(cmd)) {
884 cmd = curve.vertex(&x, &y);
/haiku/src/add-ons/kernel/drivers/network/ether/marvell_yukon/dev/mii/
H A De1000phy.c307 e1000phy_service(struct mii_softc *sc, struct mii_data *mii, int cmd) argument
313 switch (cmd) {
407 mii_phy_update(sc, cmd);
/haiku/src/add-ons/kernel/drivers/network/ether/syskonnect/dev/mii/
H A De1000phy.c307 e1000phy_service(struct mii_softc *sc, struct mii_data *mii, int cmd) argument
313 switch (cmd) {
407 mii_phy_update(sc, cmd);

Completed in 112 milliseconds

1234567891011>>