Searched refs:media (Results 26 - 50 of 140) sorted by last modified time

123456

/haiku/src/kits/network/libnetapi/
H A DNetworkInterface.cpp329 BNetworkInterface::SetMedia(int32 media) argument
332 request.ifr_media = media;
/haiku/src/add-ons/kernel/network/stack/
H A Dlink.cpp457 // get media
469 request.ifr_media = interface->device->media;
/haiku/src/add-ons/kernel/drivers/network/ether/atheros813x/dev/alc/
H A Dif_alc.c536 alc_dsp_fixup(struct alc_softc *sc, int media) argument
555 if ((media == IFM_1000_T && len > EXT_CLDCTL6_CAB_LEN_SHORT1G &&
557 (media == IFM_100_TX && len > DBG_AGC_LONG100M_LIMT &&
577 if (media == IFM_1000_T) {
587 } else if (media == IFM_100_TX)
1137 alc_aspm(struct alc_softc *sc, int init, int media) argument
1143 alc_aspm_813x(sc, media);
1147 alc_aspm_813x(struct alc_softc *sc, int media) argument
1199 if (media == IFM_100_TX || media
[all...]
/haiku/headers/os/media/
H A DMediaRoster.h33 namespace BPrivate { namespace media { namespace in namespace:BPrivate
36 } } // BPrivate::media
52 // Check if the media services are running.
365 friend class BPrivate::media::DefaultDeleter;
366 friend class BPrivate::media::BMediaRosterEx;
H A DMediaAddOn.h88 namespace media { namespace in namespace:BPrivate
152 friend class BPrivate::media::DormantNodeManager;
/haiku/src/add-ons/kernel/drivers/network/ether/ipro1000/dev/e1000/
H A Dif_em.h469 struct ifmedia *media; member in struct:e1000_softc
H A Dif_em.c812 sc->media = iflib_get_media(ctx);
1611 * media/mediopt option with ifconfig.
1653 device_printf(sc->dev, "Unsupported media type\n");
1866 /* Reset if the media type changed. */
2871 * Setup networking device structure and register interface media.
2890 * Specify the media types supported by this adapter and register
2891 * callbacks to update media and link information
2899 ifmedia_add(sc->media, IFM_ETHER | fiber_type | IFM_FDX, 0, NULL);
2900 ifmedia_add(sc->media, IFM_ETHER | fiber_type, 0, NULL);
2902 ifmedia_add(sc->media, IFM_ETHE
[all...]
/haiku/src/servers/media_addon/
H A DMediaAddonServer.cpp63 //#define USER_ADDON_PATH "../add-ons/media"
229 // unregister all media add-ons
243 // the media server is not running, let's quit
250 // so we can talk to the media server and also receive
289 fMonitorHandler->AddAddOnDirectories("media");
517 BPrivate::media::notifications::FlavorsChanged(addonID, newFlavorCount,
790 "media add-on found\n", fileNode);
821 BPrivate::media::notifications::FlavorsChanged(id, 0, oldFlavorCount);
/haiku/src/kits/media/experimental/
H A DMediaClient.cpp18 namespace BPrivate { namespace media { namespace in namespace:BPrivate
/haiku/src/kits/game/
H A DGameProducer.h31 #include <media/BufferProducer.h>
32 #include <media/MediaEventLooper.h>
/haiku/src/add-ons/kernel/drivers/network/ether/usb_davicom/
H A DDavicomDevice.cpp981 linkState->media = IFM_ETHER | IFM_100_TX;
983 linkState->media |= IFM_ACTIVE;
991 linkState->media |= IFM_FULL_DUPLEX;
993 linkState->media |= IFM_HALF_DUPLEX;
996 linkState->media |= IFM_LOOP;
1000 (linkState->media & IFM_ACTIVE) ? "active" : "inactive",
1002 (linkState->media & IFM_FULL_DUPLEX) ? "full" : "half");
/haiku/src/add-ons/kernel/drivers/network/ether/usb_asix/
H A DAX88178Device.cpp416 linkState->media = IFM_ETHER | (fHasConnection ? IFM_ACTIVE : 0);
417 linkState->media |= (mediumStatus & MEDIUM_STATE_FD)
426 (linkState->media & IFM_ACTIVE) ? "active" : "inactive",
428 (linkState->media & IFM_FULL_DUPLEX) ? "full" : "half");
H A DAX88772Device.cpp609 linkState->media = IFM_ETHER | (fHasConnection ? IFM_ACTIVE : 0);
610 linkState->media |= (mediumStatus & MEDIUM_STATE_FD)
617 (linkState->media & IFM_ACTIVE) ? "active" : "inactive",
619 (linkState->media & IFM_FULL_DUPLEX) ? "full" : "half");
H A DAX88172Device.cpp278 linkState->media = IFM_ETHER | (fHasConnection ? IFM_ACTIVE : 0);
279 linkState->media |= mediumStatus & (ANLPAR_TX_FD | ANLPAR_10_FD)
286 (linkState->media & IFM_ACTIVE) ? "active" : "inactive",
288 (linkState->media & IFM_FULL_DUPLEX) ? "full" : "half");
/haiku/src/add-ons/kernel/drivers/network/ether/syskonnect/dev/mii/
H A De1000phy.c403 /* Update the media status. */
475 e1000phy_mii_phy_auto(struct mii_softc *sc, int media) argument
484 if ((media & IFM_FLOW) != 0 ||
/haiku/src/add-ons/kernel/drivers/network/ether/rtl81xx/dev/mii/
H A Drgephy.c264 /* Update the media status. */
269 * the DSP on the RealTek PHYs if the media changes.
415 rgephy_mii_phy_auto(struct mii_softc *sc, int media) argument
423 if ((media & IFM_FLOW) != 0 || (sc->mii_flags & MIIF_FORCEPAUSE) != 0)
/haiku/src/add-ons/kernel/drivers/network/ether/marvell_yukon/dev/mii/
H A De1000phy.c403 /* Update the media status. */
475 e1000phy_mii_phy_auto(struct mii_softc *sc, int media) argument
484 if ((media & IFM_FLOW) != 0 ||
/haiku/src/add-ons/kernel/drivers/network/ether/dec21xxx/dev/de/
H A Dif_devar.h168 * Various physical media types supported.
282 #define TULIP_MEDIAINFO_SIA_INIT(sc, mi, chipid, media) do { \
284 sc->tulip_mediums[TULIP_MEDIA_ ## media] = (mi); \
285 (mi)->mi_sia_connectivity = TULIP_ ## chipid ## _SIACONN_ ## media; \
286 (mi)->mi_sia_tx_rx = TULIP_ ## chipid ## _SIATXRX_ ## media; \
287 (mi)->mi_sia_general = TULIP_ ## chipid ## _SIAGEN_ ## media; \
290 #define TULIP_MEDIAINFO_ADD_CAPABILITY(sc, mi, media) do { \
291 if ((sc)->tulip_mediums[TULIP_MEDIA_ ## media] == NULL \
292 && ((mi)->mi_capabilities & PHYSTS_ ## media)) { \
293 (sc)->tulip_mediums[TULIP_MEDIA_ ## media]
[all...]
H A Dif_de.c254 * Before we are sure this is the right media we need
293 tulip_media_set(tulip_softc_t * const sc, tulip_media_t media) argument
295 const tulip_media_info_t *mi = sc->tulip_mediums[media];
302 * If we are switching media, make sure we don't think there's
376 if (TULIP_IS_MEDIA_FD(media))
378 if (TULIP_IS_MEDIA_100MB(media))
386 tulip_linkup(tulip_softc_t * const sc, tulip_media_t media) argument
396 if (TULIP_CAN_MEDIA_FD(media)
397 && sc->tulip_mediums[TULIP_FD_MEDIA_OF(media)] != NULL)
398 media
462 tulip_media_t media; local
942 tulip_21040_mediainfo_init(tulip_softc_t * const sc, tulip_media_t media) argument
1488 tulip_media_t media = sc->tulip_media; local
1572 tulip_21140_mediainit(tulip_softc_t * const sc, tulip_media_info_t * const mip, tulip_media_t const media, unsigned gpdata, unsigned cmdmode) argument
2414 tulip_media_t media; local
2487 tulip_media_t media; local
2576 tulip_media_t media; local
2678 tulip_media_t media; local
2949 tulip_media_t media; local
2984 tulip_media_t media; local
[all...]
/haiku/src/add-ons/kernel/drivers/network/ether/dec21xxx/dev/dc/
H A Dif_dc.c72 * three kinds of media attachments:
1388 dc_setcfg(struct dc_softc *sc, int media) argument
1392 if (IFM_SUBTYPE(media) == IFM_NONE)
1401 if (IFM_SUBTYPE(media) == IFM_100_TX) {
1434 if (IFM_SUBTYPE(media) == IFM_10_T) {
1466 if ((media & IFM_GMASK) == IFM_FDX)
1484 if (IFM_SUBTYPE(media) == IFM_HPNA_1) {
1492 if ((media & IFM_GMASK) == IFM_FDX) {
1594 dc_apply_fixup(struct dc_softc *sc, int media) argument
1604 if (m->dc_media == media)
[all...]
/haiku/src/add-ons/kernel/drivers/network/ether/broadcom570x/dev/mii/
H A Dbrgphy.c285 /* Add the supported media types */
388 /* Update the media status. */
393 * the DSP on the Broadcom PHYs if the media changes.
429 brgphy_setmedia(struct mii_softc *sc, int media) argument
433 switch (IFM_SUBTYPE(media)) {
449 if ((media & IFM_FDX) != 0) {
462 if (IFM_SUBTYPE(media) != IFM_1000_T &&
463 IFM_SUBTYPE(media) != IFM_1000_SX) {
468 if (IFM_SUBTYPE(media) == IFM_1000_T) {
470 if ((media
618 brgphy_mii_phy_auto(struct mii_softc *sc, int media) argument
[all...]
/haiku/src/add-ons/kernel/drivers/network/ether/attansic_l1/dev/mii/
H A Datphy.c203 /* Update the media status. */
339 atphy_setmedia(struct mii_softc *sc, int media) argument
344 if ((IFM_SUBTYPE(media) == IFM_AUTO || (media & IFM_FDX) != 0) &&
345 ((media & IFM_FLOW) != 0 ||
/haiku/src/add-ons/kernel/drivers/network/ether/3com/dev/xl/
H A Dif_xl.c278 static void xl_choose_media(struct xl_softc *sc, int *media);
479 * plus some non-MII media settings. In order to allow this, we have to
480 * add the extra media to the miibus's ifmedia struct, but we can't do
484 * extra media.
745 xl_setmode(struct xl_softc *sc, int media) argument
759 if (IFM_SUBTYPE(media) == IFM_10_T) {
771 if (IFM_SUBTYPE(media) == IFM_100_FX) {
782 if (IFM_SUBTYPE(media) == IFM_10_5) {
791 if (IFM_SUBTYPE(media) == IFM_10_FL) {
803 if (IFM_SUBTYPE(media)
1074 int media, pmcap; local
1512 xl_choose_media(struct xl_softc *sc, int *media) argument
[all...]
/haiku/src/add-ons/media/media-add-ons/usb_webcam/
H A DAddOn.cpp7 #include <media/MediaFormats.h>
/haiku/src/kits/media/
H A DMediaNode.cpp188 TRACE("BMediaRoster::Release() the media roster is NULL!");
306 return BPrivate::media::notifications::ReportError(Node(), what, info);
318 BPrivate::media::notifications::NodeStopped(Node(), whenPerformance);
578 // This is called by the media server to delete the object

Completed in 163 milliseconds

123456