Home
last modified time | relevance | path

Searched refs:channel_type (Results 1 – 13 of 13) sorted by relevance

/external/webrtc/talk/app/webrtc/
Dsctputils.cc82 uint8_t channel_type; in ParseDataChannelOpenMessage() local
83 if (!buffer.ReadUInt8(&channel_type)) { in ParseDataChannelOpenMessage()
118 switch (channel_type) { in ParseDataChannelOpenMessage()
127 switch (channel_type) { in ParseDataChannelOpenMessage()
160 uint8_t channel_type = 0; in WriteDataChannelOpenMessage() local
165 channel_type = DCOMCT_ORDERED_PARTIAL_RTXS; in WriteDataChannelOpenMessage()
168 channel_type = DCOMCT_ORDERED_PARTIAL_TIME; in WriteDataChannelOpenMessage()
171 channel_type = DCOMCT_ORDERED_RELIABLE; in WriteDataChannelOpenMessage()
175 channel_type = DCOMCT_UNORDERED_PARTIAL_RTXS; in WriteDataChannelOpenMessage()
178 channel_type = DCOMCT_UNORDERED_PARTIAL_TIME; in WriteDataChannelOpenMessage()
[all …]
Dsctputils_unittest.cc38 uint8_t channel_type; in VerifyOpenMessageFormat() local
48 ASSERT_TRUE(buffer.ReadUInt8(&channel_type)); in VerifyOpenMessageFormat()
52 channel_type); in VerifyOpenMessageFormat()
56 channel_type); in VerifyOpenMessageFormat()
/external/iw/
Dinterface.c270 static char *channel_type_name(enum nl80211_channel_type channel_type) in channel_type_name() argument
272 switch (channel_type) { in channel_type_name()
364 enum nl80211_channel_type channel_type; in print_iface_handler() local
366 channel_type = nla_get_u32(tb_msg[NL80211_ATTR_WIPHY_CHANNEL_TYPE]); in print_iface_handler()
367 printf(" %s", channel_type_name(channel_type)); in print_iface_handler()
/external/libnl/python/examples/
Diface.py46 channel_type = nl.nla_get_u32(attr[nl80211.NL80211_ATTR_WIPHY_CHANNEL_TYPE])
47 sys.stdout.write(" %s" % nl80211.nl80211_channel_type2str(channel_type));
/external/virglrenderer/src/gallium/auxiliary/util/
Du_format_parse.py221 def channel_type(self): member in Format
230 return self.is_pure_color() and self.channel_type() == SIGNED
233 return self.is_pure_color() and self.channel_type() == UNSIGNED
/external/mesa3d/src/gallium/auxiliary/util/
Du_format_parse.py220 def channel_type(self): member in Format
229 return self.is_pure_color() and self.channel_type() == SIGNED
232 return self.is_pure_color() and self.channel_type() == UNSIGNED
/external/mesa3d/src/amd/vulkan/
Dvk_format_parse.py228 def channel_type(self): member in Format
237 return self.is_pure_color() and self.channel_type() == SIGNED
240 return self.is_pure_color() and self.channel_type() == UNSIGNED
/external/mesa3d/src/mesa/main/
Dformat_parser.py388 def channel_type(self): member in Format
484 return _get_datatype(self.channel_type(), self.channel_size())
/external/webrtc/talk/session/media/
Dchannelmanager.cc371 DataChannelType channel_type) { in CreateDataChannel() argument
374 content_name, rtcp, channel_type)); in CreateDataChannel()
/external/ImageMagick/coders/
Dpsd.c1551 channel_type; in CheckPSDChannels() local
1558 channel_type=RedChannel; in CheckPSDChannels()
1560 channel_type|=(GreenChannel | BlueChannel); in CheckPSDChannels()
1562 channel_type|=BlackChannel; in CheckPSDChannels()
1571 channel_type|=AlphaChannel; in CheckPSDChannels()
1577 channel_type&=~RedChannel; in CheckPSDChannels()
1579 channel_type&=~GreenChannel; in CheckPSDChannels()
1581 channel_type&=~BlueChannel; in CheckPSDChannels()
1583 channel_type&=~BlackChannel; in CheckPSDChannels()
1585 if (channel_type == 0) in CheckPSDChannels()
[all …]
/external/ImageMagick/MagickCore/
Dchannel.c709 const ChannelType channel_type,ExceptionInfo *exception) in SeparateImage() argument
793 (GetChannelBit(channel_type,channel) == 0)) in SeparateImage()
/external/tensorflow/tensorflow/compiler/xla/
Dxla.proto374 ChannelHandle.ChannelType channel_type = 1; field
/external/tensorflow/tensorflow/compiler/xla/service/
Dservice.cc187 channel_tracker_.NewChannel(arg->channel_type())); in CreateChannelHandle()