/external/curl/docs/cmdline-opts/ |
key-type.d | 7 is. DER, PEM, and ENG are supported. If not specified, PEM is assumed.
|
tlsauthtype.d | 6 Set TLS authentication type. Currently, the only supported option is "SRP",
|
tlsv1.3.d | 8 Note that TLS 1.3 is only supported by a subset of TLS backends. At the time
|
tls-max.d | 10 VERSION defines maximum supported TLS version. The minimum acceptable version
|
/external/syzkaller/vendor/golang.org/x/net/http2/ |
not_go19.go | 14 // not supported prior to go1.9
|
/external/tensorflow/tensorflow/core/util/ |
saved_tensor_slice_util.h | 76 static constexpr bool supported = true; \ 82 static_assert(SaveTypeTraits<TYPE>::supported, \ 83 "Specified type " #TYPE " not supported for Restore"); \ 89 static_assert(SaveTypeTraits<TYPE>::supported, \ 90 "Specified type " #TYPE " not supported for Save"); \ 139 static_assert(SaveTypeTraits<qint32>::supported, 140 "Specified type qint32 not supported for Restore"); 154 static constexpr bool supported = true; member in struct:tensorflow::checkpoint::SaveTypeTraits 183 static constexpr bool supported = true; member in struct:tensorflow::checkpoint::SaveTypeTraits 190 static_assert(SaveTypeTraits<string>::supported, [all...] |
/external/wpa_supplicant_8/wpa_supplicant/ |
eap_proxy_qmi_oc.mak | 10 # This is supported only in B Family devices.
|
/build/make/core/ |
executable.mk | 59 # check if preferred arch is supported 62 # first arch is supported 69 # check if preferred arch was not supported or asked to build both 80 # check if non-preferred arch is supported 83 # non-preferred arch is supported
|
local_systemsdk.mk | 38 # Ensure that the selected System SDK version is one of the supported versions. 56 System SDK version '$(_system_sdk_version)' is not supported. Supported versions are: $(_supported_systemsdk_versions))
|
/art/libartbase/base/ |
membarrier_test.cc | 35 int supported = art::membarrier(art::MembarrierCommand::kQuery); local 37 ASSERT_LE(0, supported); 39 ASSERT_TRUE(errno == ENOSYS && supported == -1); 45 GTEST_LOG_(INFO) << "MembarrierCommand::kGlobal not supported, skipping test."; 69 << " not supported, skipping test."; 74 << " not supported, skipping test.";
|
/cts/hostsidetests/media/bitstreams/src/android/media/cts/bitstreams/ |
SupportedBitstreamsProcessor.java | 54 * @return paths to bitstreams that are supported on device 93 boolean supported = status.equals("true"); 94 if (supported) { 103 decoderCapabilities.put(name, supported);
|
/external/u-boot/drivers/net/phy/ |
atheros.c | 25 phydev->supported = phydev->drv->features; 47 phydev->supported = phydev->drv->features; 85 phydev->supported = phydev->drv->features;
|
/external/webrtc/talk/media/devices/ |
yuvframescapturer.cc | 127 // Enumerate the supported formats. We have only one supported format. 130 std::vector<VideoFormat> supported; local 131 supported.push_back(format); 132 SetSupportedFormats(supported);
|
/external/webrtc/talk/media/webrtc/ |
webrtcmediaengine.cc | 114 bool (*supported)(const std::string&), 117 RTC_DCHECK(supported); 122 if (supported(extension.uri)) {
|
/cts/tests/tests/net/src/android/net/cts/ |
ConnectivityManagerTest.java | 126 // Minimum supported keepalive counts for wifi and cellular. 362 fail("startUsingNetworkFeature is no longer supported in the current API version"); 369 fail("stopUsingNetworkFeature is no longer supported in the current API version"); 376 fail("requestRouteToHost is no longer supported in the current API version"); 399 boolean supported = mCm.isNetworkSupported(type); 401 assertTrue(supported); 403 assertFalse(supported); [all...] |
/external/cldr/tools/java/org/unicode/cldr/draft/ |
XLocaleDistance.java | 361 public int getDistance(String desired, String supported, Output<DistanceTable> distanceTable, boolean starEquals) { 365 sub2 = subtables.get(ANY); // <*, supported> 368 DistanceNode value = sub2.get(supported); // <*/desired, supported> 372 sub2 = subtables.get(ANY); // <*, supported> 373 value = sub2.get(supported); 383 return starEquals && star & desired.equals(supported) ? 0 : value.distance; 395 DistanceNode addSubtable(String desired, String supported, int distance) { 400 DistanceNode oldNode = sub2.get(supported); 406 sub2.put(supported, newNode) 806 List<String> supported = bar.splitToList(supportedRaw); external variable declarations 822 List<String> supported = item2.get1(); external variable declarations [all...] |
/external/drm_hwcomposer/ |
drmhwctwo.cpp | 115 static inline void supported(char const *func) { function in namespace:android 116 ALOGV("Supported function: %s", func); 145 supported(__func__); 186 supported(__func__); 194 supported(__func__); 253 supported(__func__); 260 supported(__func__); 267 supported(__func__); 275 supported(__func__); 281 supported(__func__) [all...] |
/cts/tests/tests/graphics/src/android/graphics/cts/ |
VulkanSurfaceSupportTest.java | 57 AssetManager manager, Surface surface, boolean supported);
|
/device/linaro/bootloader/arm-trusted-firmware/bl32/tsp/ |
tsp.mk | 29 # If no platform-specific TSP Makefile exists, it means TSP is not supported 33 $(error TSP is not supported on platform ${PLAT})
|
/external/autotest/server/site_tests/network_WiFi_Reset/ |
network_WiFi_Reset.py | 46 # @supported: return True if this driver is supported (e.g., check for 55 DriverReset = collections.namedtuple('DriverReset', ['supported', 139 supported=self.mwifiex_reset_exists, 144 supported=self.ath10k_reset_exists, 149 supported=self.iwlwifi_reset_exists, 156 if driver.supported():
|
/external/syzkaller/prog/ |
resources.go | 138 supported := make(map[*Syscall]bool) 150 n := len(supported) 152 if supported[c] { 163 supported[c] = true 171 if n == len(supported) { 177 if supported[c] { 197 if len(enabled) != len(supported)+len(disabled) { 200 return supported, disabled
|
/cts/tests/tests/media/src/android/media/cts/ |
MediaPlayerFlakyNetworkTest.java | 103 Vector<String> supported = new Vector<String>(); local 106 supported.add(video); 109 return supported.toArray(new String[supported.size()]); 113 String[] supported = getSupportedVideos(); local 114 if (supported.length == 0) { 122 String video = getRandomTestVideo(random, supported); 127 doPlayMp4Stream(getRandomTestVideo(random, supported), 30000, 20000);
|
/external/elfutils/tests/ |
run-deleted.sh | 42 echo >&2 deleted: OS not supported
|
/external/llvm/test/MC/Mips/ |
cprestore-bad.s | 10 # CHECK: :[[@LINE-1]]:14: error: .cprestore is not supported in Mips16 mode
|
/external/squashfs-tools/squashfs-tools/ |
compressor.c | 113 if(compressor[i]->supported) 126 if(compressor[i]->supported) {
|