Home
last modified time | relevance | path

Searched refs:fIn (Results 1 – 8 of 8) sorted by relevance

/haiku/src/apps/mediaplayer/media_node_framework/video/
H A DVideoConsumer.cpp102 fIn.destination.port = ControlPort(); in NodeRegistered()
103 fIn.destination.id = 0; in NodeRegistered()
104 fIn.source = media_source::null; in NodeRegistered()
105 fIn.format.type = B_MEDIA_RAW_VIDEO; in NodeRegistered()
107 fIn.format.u.raw_video = media_raw_video_format::wildcard; in NodeRegistered()
108 fIn.format.u.raw_video.interlace = 1; in NodeRegistered()
109 fIn.format.u.raw_video.display.format = B_NO_COLOR_SPACE; in NodeRegistered()
110 fIn.format.u.raw_video.display.bytes_per_row = 0; in NodeRegistered()
111 fIn.format.u.raw_video.display.line_width = 0; in NodeRegistered()
112 fIn.format.u.raw_video.display.line_count = 0; in NodeRegistered()
[all …]
H A DVideoConsumer.h107 media_input fIn; variable
/haiku/src/apps/activitymonitor/
H A DCircularBuffer.h54 fIn = 0; in MakeEmpty()
60 return fIn == 0; in IsEmpty()
65 return fIn; in CountItems()
70 if (index >= (int32)fIn || index < 0 || fBuffer == NULL) in ItemAt()
79 if (fIn < fSize) in AddItem()
80 index = fFirst + fIn++; in AddItem()
95 uint32 fIn; variable
H A DDataSource.cpp1329 fIn(in), in NetworkUsageDataSource()
1339 fColor = fIn ? (rgb_color){200, 150, 0} : (rgb_color){200, 220, 0}; in NetworkUsageDataSource()
1347 fIn = other.fIn; in NetworkUsageDataSource()
1378 uint64 transferred = fIn ? info.NetworkReceived() : info.NetworkSent(); in NextValue()
1393 return fIn ? B_TRANSLATE("Receiving") : B_TRANSLATE("Sending"); in Label()
1400 return fIn ? B_TRANSLATE_COMMENT("RX", "Shorter version for Receiving.") : in ShortLabel()
1408 return fIn ? "Network receive" : "Network send"; in InternalName()
1415 return fIn ? B_TRANSLATE("Network receive") : B_TRANSLATE("Network send"); in Name()
H A DDataSource.h344 bool fIn;
/haiku/src/apps/codycam/
H A DVideoConsumer.cpp183 fIn.destination.port = ControlPort(); in NodeRegistered()
184 fIn.destination.id = 0; in NodeRegistered()
185 fIn.source = media_source::null; in NodeRegistered()
186 fIn.format.type = B_MEDIA_RAW_VIDEO; in NodeRegistered()
187 fIn.format.u.raw_video = vid_format; in NodeRegistered()
274 if (forWhom != fIn.destination) in ProducerDataStatus()
382 fIn.source = producer; in Connected()
383 fIn.format = withFormat; in Connected()
384 fIn.node = Node(); in Connected()
385 sprintf(fIn.name, "Video Consumer"); in Connected()
[all …]
H A DVideoConsumer.h133 media_input fIn; variable
/haiku/src/add-ons/print/transports/usb_port/
H A DUSBTransport.cpp48 const BUSBEndpoint *fIn; member in USBPrinter
211 : fInterface(intf), fOut(out), fIn(in), fName(name), fID(id) in USBPrinter()
234 return fIn->BulkTransfer(buf, size); in Read()