Home
last modified time | relevance | path

Searched full:ios (Results 1 – 25 of 333) sorted by relevance

12345678910>>...14

/freebsd/contrib/ldns/
H A DREADME-Travis.md3 …atforms. Compilers include Clang and GCC; while platforms include Android, iOS, Linux, and OS X on…
7 iOS is tested for iPhoneOS, WatchOS, AppleTVOS, iPhoneSimulator, AppleTVSimulator and WatchSimulato…
103 elif [ "$IOS" = "yes" ]; then
104 ./contrib/ios/install_tools.sh
138 The fifth step builds OpenSSL. OpenSSL is built for iOS using the scripts `contrib/android/install_…
181 ## iOS builds
183iOS builds for the armv7a, armv7s and aarch64 architectures for iPhoneOS, AppleTVOS and WatchOS. i…
185 ### iOS job
192 name: Apple iPhone on iOS, armv7
195 - IOS=yes
[all …]
/freebsd/contrib/unbound/
H A DREADME-Travis.md3 …atforms. Compilers include Clang and GCC; while platforms include Android, iOS, Linux, and OS X on…
7 iOS is tested for iPhoneOS, WatchOS, AppleTVOS, iPhoneSimulator, AppleTVSimulator and WatchSimulato…
108 ./contrib/ios/install_tools.sh
183 ## iOS builds
185iOS builds for the armv7a, armv7s and aarch64 architectures for iPhoneOS, AppleTVOS and WatchOS. i…
187 ### iOS job
194 name: Apple iPhone on iOS, armv7
198 - AUTOTOOLS_HOST=armv7-apple-ios
199 - OPENSSL_HOST=ios-cross
207 …OpenSSL, Expat and Unbound. This step is handled in by the script `contrib/ios/install_tools.sh`. …
[all …]
/freebsd/contrib/unbound/contrib/ios/
H A D15-ios.conf1 #### iPhoneOS/iOS
9 "ios-common" => {
12 sys_id => "iOS",
15 "ios-xcrun" => {
16 inherit_from => [ "ios-common", asm("armv4_asm") ],
21 inherit_from => [ "ios-common", asm("aarch64_asm") ],
26 inherit_from => [ "ios-common" ],
30 inherit_from => [ "ios-common" ],
33 "ios-cross" => {
34 inherit_from => [ "ios-xcrun" ],
H A Dinstall_openssl.sh20 if ! cp ../contrib/ios/15-ios.conf Configurations/; then
21 echo "Failed to copy OpenSSL ios config"
28 if ! patch -u -p0 < ../contrib/ios/openssl.patch; then
H A Dsetenv_ios.sh4 # Sets the cross compile environment for Xcode/iOS
6 # Based upon OpenSSL's setenv-ios.sh by TH, JW, and SM.
29 # cryptest-ios.sh may run this script without sourcing.
31 echo "setenv-ios.sh is usually sourced, but not this time."
208 echo "ERROR: Failed to find iOS clang. Please edit this script."
214 echo "ERROR: Failed to find iOS clang++. Please edit this script."
220 echo "ERROR: Failed to find iOS ranlib. Please edit this script."
226 echo "ERROR: Failed to find iOS ar. Please edit this script."
232 echo "ERROR: Failed to find iOS as. Please edit this script."
238 echo "ERROR: Failed to find iOS ld. Please edit this script."
/freebsd/sys/cam/
H A Dcam_iosched.c356 cam_iosched_limiter_init(struct iop_stats *ios) in cam_iosched_limiter_init() argument
358 int lim = ios->limiter; in cam_iosched_limiter_init()
365 return limsw[lim].l_init(ios); in cam_iosched_limiter_init()
371 cam_iosched_limiter_tick(struct iop_stats *ios) in cam_iosched_limiter_tick() argument
373 int lim = ios->limiter; in cam_iosched_limiter_tick()
380 return limsw[lim].l_tick(ios); in cam_iosched_limiter_tick()
386 cam_iosched_limiter_iop(struct iop_stats *ios, struct bio *bp) in cam_iosched_limiter_iop() argument
388 int lim = ios->limiter; in cam_iosched_limiter_iop()
395 return limsw[lim].l_iop(ios, bp); in cam_iosched_limiter_iop()
401 cam_iosched_limiter_caniop(struct iop_stats *ios, struct bio *bp) in cam_iosched_limiter_caniop() argument
[all …]
/freebsd/crypto/openssl/Configurations/
H A D15-ios.conf1 #### iPhoneOS/iOS
9 "ios-common" => {
12 sys_id => "iOS",
15 "ios-xcrun" => {
16 inherit_from => [ "ios-common" ],
17 # It should be possible to go below iOS 6 and even add -arch armv6,
26 inherit_from => [ "ios-common" ],
34 inherit_from => [ "ios-common" ],
51 inherit_from => [ "ios-common" ],
54 "ios-cross" => {
[all …]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/trim/
H A Dtrim.kshlib29 # Get the number of trim IOs issued for the pool (ind or agg).
55 # Verify that trim IOs were send to devices in the pool.
63 typeset ios
65 ios=$(get_trim_io $pool $type $vdev)
66 if [[ $ios -ge $min_trim_ios ]]; then
67 log_note "Issued $ios $type trim IOs for pool $pool"
69 log_fail "Too few trim IOs issued $ios/$min_trim_ios"
95 typeset ios=$(get_trim_io $pool $type)
96 log_note "Waited for $txgs txgs, $ios $type TRIM IOs"
/freebsd/sys/dev/sdhci/
H A Dsdhci_xenon.c156 const struct mmc_ios *ios; in sdhci_xenon_set_uhs_timing() local
163 ios = &slot->host.ios; in sdhci_xenon_set_uhs_timing()
168 if (ios->clock > SD_SDR50_MAX) { in sdhci_xenon_set_uhs_timing()
169 if (ios->timing == bus_timing_mmc_hs400 || in sdhci_xenon_set_uhs_timing()
170 ios->timing == bus_timing_mmc_hs400es) in sdhci_xenon_set_uhs_timing()
172 else if (ios->timing == bus_timing_mmc_hs200) in sdhci_xenon_set_uhs_timing()
177 else if (ios->clock > SD_SDR25_MAX) in sdhci_xenon_set_uhs_timing()
179 else if (ios->clock > SD_SDR12_MAX) { in sdhci_xenon_set_uhs_timing()
180 if (ios->timing == bus_timing_uhs_ddr50 || in sdhci_xenon_set_uhs_timing()
181 ios->timing == bus_timing_mmc_ddr52) in sdhci_xenon_set_uhs_timing()
[all …]
H A Dsdhci.c1328 const struct mmc_ios *ios; local
1335 ios = &slot->host.ios;
1339 if (ios->clock > SD_SDR50_MAX) {
1340 if (ios->timing == bus_timing_mmc_hs400 ||
1341 ios->timing == bus_timing_mmc_hs400es)
1346 else if (ios->clock > SD_SDR25_MAX)
1348 else if (ios->clock > SD_SDR12_MAX) {
1349 if (ios->timing == bus_timing_uhs_ddr50 ||
1350 ios->timing == bus_timing_mmc_ddr52)
1354 } else if (ios->clock > SD_MMC_CARD_ID_FREQUENCY)
[all …]
H A Dsdhci_fsl_fdt.c342 (sc->slot.host.ios.timing == bus_timing_mmc_hs400 || in fsl_sdhc_fdt_set_clock()
602 struct mmc_ios *ios; in sdhci_fsl_fdt_update_ios() local
611 ios = &slot->host.ios; in sdhci_fsl_fdt_update_ios()
613 switch (ios->power_mode) { in sdhci_fsl_fdt_update_ios()
707 switch (slot->host.ios.vccq) { in sdhci_fsl_fdt_switch_vccq()
727 slot->host.ios.vccq); in sdhci_fsl_fdt_switch_vccq()
1074 slot->host.ios.clock = 0; in sdhci_fsl_fdt_write_ivar()
1081 slot->host.ios.clock = sc->baseclk_hz / (prescale * div); in sdhci_fsl_fdt_write_ivar()
1200 if (sc->slot.host.ios.timing == bus_timing_uhs_sdr50 && in sdhci_fsl_fdt_tune()
1317 if (slot->host.ios.timing == bus_timing_mmc_hs400) in sdhci_fsl_fdt_retune()
[all …]
/freebsd/sys/dev/mmc/host/
H A Ddwmmc.c874 struct mmc_ios *ios; in dwmmc_update_ios() local
879 ios = &sc->host.ios; in dwmmc_update_ios()
882 ios->clock, ios->bus_width, ios->timing); in dwmmc_update_ios()
884 switch (ios->power_mode) { in dwmmc_update_ios()
895 mmc_fdt_set_power(&sc->mmc_helper, ios->power_mode); in dwmmc_update_ios()
897 if (ios->bus_width == bus_width_8) in dwmmc_update_ios()
899 else if (ios in dwmmc_update_ios()
1449 struct mmc_ios *ios; dwmmc_set_tran_settings() local
[all...]
H A Ddwmmc_rockchip.c58 static int dwmmc_rockchip_update_ios(struct dwmmc_softc *sc, struct mmc_ios *ios);
98 dwmmc_rockchip_update_ios(struct dwmmc_softc *sc, struct mmc_ios *ios) in dwmmc_rockchip_update_ios() argument
103 if (ios->clock && ios->clock != sc->bus_hz) { in dwmmc_rockchip_update_ios()
104 sc->bus_hz = clock = ios->clock; in dwmmc_rockchip_update_ios()
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/fault/
H A Dzpool_status_-s.ksh28 # Verify zpool status -s (slow IOs) works
32 # 2. Inject slow IOs into the pool
33 # 3. Verify we can see the slow IOs with "zpool status -s".
58 # Mark any IOs greater than 10ms as slow IOs
64 # Create 20ms IOs
76 log_pass "Correctly saw $SLOW_IOS slow IOs and $DELAY_EVENTS delay events"
/freebsd/usr.sbin/ppp/
H A Dtty.c101 struct termios ios; /* To be able to reset from raw mode */ member
435 struct termios ios; in tty_Raw() local
449 tcgetattr(p->fd, &ios); in tty_Raw()
450 cfmakeraw(&ios); in tty_Raw()
452 ios.c_cflag |= CLOCAL | CCTS_OFLOW | CRTS_IFLOW; in tty_Raw()
454 ios.c_cflag |= CLOCAL; in tty_Raw()
457 ios.c_cflag |= HUPCL; in tty_Raw()
459 if (tcsetattr(p->fd, TCSANOW, &ios) == -1) in tty_Raw()
502 if (!physical_IsSync(p) && tcsetattr(p->fd, TCSAFLUSH, &dev->ios) == -1) in tty_Cooked()
534 struct termios ios; in tty_Speed() local
[all …]
/freebsd/sys/contrib/libsodium/dist-build/
H A Dios.sh7 # Make for iOS and iOS simulator
12 export PREFIX="$(pwd)/libsodium-ios"
66 # Build for iOS
71 ## 32-bit iOS
84 ## 32-bit armv7s iOS
97 ## 64-bit iOS
/freebsd/contrib/llvm-project/libcxx/src/
H A Dstrstream.cpp174 bool pos_in = (__which & ios::in) != 0; in overflow()
175 bool pos_out = (__which & ios::out) != 0; in overflow()
177 case ios::beg: in overflow()
178 case ios::end: in overflow()
182 case ios::cur: in overflow()
196 case ios::beg: in overflow()
199 case ios::cur:
202 case ios::end: in pbackfail()
225 bool pos_in = (__which & ios::in) != 0; in underflow()
226 bool pos_out = (__which & ios in underflow()
[all...]
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DTargetCXXABI.def53 /// The iOS ABI is a partial implementation of the ARM ABI.
55 /// in the compilers that iOS was launched with.
57 /// Essentially, the iOS ABI includes the ARM changes to:
62 ITANIUM_CXXABI(iOS, "ios")
64 /// The iOS 64-bit and macOS 64-bit ARM ABI follows ARM's published 64-bit
72 /// WatchOS is a modernisation of the iOS ABI, which roughly means it's
H A DDarwinSDKInfo.h51 llvm::Triple::IOS, llvm::Triple::MacABI); in macOStoMacCatalystPair()
57 return OSEnvPair(llvm::Triple::IOS, llvm::Triple::MacABI, in macCatalystToMacOSPair()
62 /// iOS -> watchOS version mapping.
64 return OSEnvPair(llvm::Triple::IOS, llvm::Triple::UnknownEnvironment, in iOStoWatchOSPair()
69 /// iOS -> tvOS version mapping.
71 return OSEnvPair(llvm::Triple::IOS, llvm::Triple::UnknownEnvironment, in iOStoTvOSPair()
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_status/
H A Dzpool_status_008_pos.ksh30 # 2. Force DEGRADE, FAULT, or inject slow IOs for vdevs
71 # Check no ONLINE slow vdevs are show. Then mark IOs greater than
72 # 750ms slow, delay IOs 1000ms to vdev6, check slow IOs.
83 # Check vdev6 slow IOs are only shown when requested with -s.
/freebsd/sys/dev/ocs_fc/
H A Docs_xport.h177 ocs_list_t io_pending_list; /**< list of IOs waiting for HW resources
181 ocs_atomic_t io_total_alloc; /**< count of totals IOS allocated */
182 ocs_atomic_t io_total_free; /**< count of totals IOS free'd */
183 ocs_atomic_t io_total_pending; /**< count of totals IOS that were pended */
184 ocs_atomic_t io_active_count; /**< count of active IOS */
185 ocs_atomic_t io_pending_count; /**< count of pending IOS */
/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dios.cppm
/freebsd/contrib/llvm-project/llvm/lib/TextAPI/
H A DPlatform.cpp40 case Triple::IOS: in mapToPlatformType()
98 return "ios" + Version; in getOSAndEnvironmentName()
106 return "ios" + Version + "-macabi"; in getOSAndEnvironmentName()
108 return "ios" + Version + "-simulator"; in getOSAndEnvironmentName()
/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DObjCRuntime.cpp36 case ObjCRuntime::iOS: out << "ios"; break; in operator <<()
68 } else if (runtimeName == "ios") { in tryParse()
69 kind = ObjCRuntime::iOS; in tryParse()
/freebsd/contrib/llvm-project/libcxx/include/__configuration/
H A Davailability.h21 // library on macOS, iOS and other Apple platforms. In order for users to be
156 …__attribute__((availability(ios, strict, introduced = 17.4))) …
171 …__attribute__((availability(ios, strict, introduced = 17.0))) …
186 …__attribute__((availability(ios, strict, introduced = 16.5))) …
205 …__attribute__((availability(ios, strict, introduced = 16.0))) …
220 …__attribute__((availability(ios, strict, introduced = 15.3))) …
235 …__attribute__((availability(ios, strict, introduced = 14.0))) …
254 …__attribute__((availability(ios, strict, introduced = 13.0))) …
259 …_Pragma("clang attribute push(__attribute__((availability(ios,strict,introduced=13.0))), apply_to=…

12345678910>>...14