Home
last modified time | relevance | path

Searched +full:is +full:- +full:windows (Results 1 – 25 of 1215) sorted by relevance

12345678910>>...49

/external/icu/icu4c/source/data/mappings/
Dconvrtrs.txt5 # * Copyright (C) 1995-2014, International Business Machines
12 # https://icu4c-demos.unicode.org/icu-bin/convexp
16 # This file is not read directly by ICU. If you change it, you need to
19 # cnvalias.icu. The gencnval -v verbose option will help you when you edit
25 # This is an alias file used by the character set converter.
27 # is more information about this file.
33 # Here is the file format using BNF-like syntax:
40 # converterName ::= [0-9a-zA-Z:_'-']+
53 # All names can be tagged by including a space-separated list of tags in
54 # curly braces, as in ISO_8859-1:1987{IANA*} iso-8859-1 { MIME* } or
[all …]
/external/capstone/windowsce/
DCOMPILE.md2 - Windows CE 7, a.k.a, [Windows Embedded Compact 7](https://www.microsoft.com/windowsembedded/en-us…
3 - Windows CE 8, a.k.a, [Windows Embedded Compact 2013](https://www.microsoft.com/windowsembedded/en
10 - Build running on Microsoft Windows.
11 - The C Software Develepment Kit of the target Windows CE **device** installed.
12 - Only for Windows CE 7:
13- C compiler toolchain installed, targetting **Windows Embedded Compact 7** on **ARMv7**. We reco…
15 …e for Windows CE 7 (respectively, Windows CE 8), the build script `windowsce/make_windowsce7-armv7…
20 - `set WINCE_TOOLCHAIN_ROOT=` is the path of the root directory of the Windows CE toolchain. To bui…
22 - For Windows CE 7:
26 - For Windows CE 8:
[all …]
/external/libwebsockets/lib/plat/windows/
DCMakeLists.txt2 # libwebsockets - small server side websockets and web server implementation
4 # Copyright (C) 2010 - 2020 Andy Green <andy@warmcat.com>
6 # Permission is hereby granted, free of charge, to any person obtaining a copy
10 # sell copies of the Software, and to permit persons to whom the Software is
16 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
24 # The strategy is to only export to PARENT_SCOPE
26 # - changes to LIB_LIST
27 # - changes to SOURCES
28 # - includes via include_directories
35 plat/windows/windows-fds.c
[all …]
/external/cronet/base/win/
Dmap.h2 // Use of this source code is governed by a BSD-style license that can be
8 #include <windows.foundation.collections.h>
33 typename ABI::Windows::Foundation::Collections::IMap<K, V>::K_complex;
37 typename ABI::Windows::Foundation::Collections::IMap<K, V>::V_complex;
62 ABI::Windows::Foundation::Collections::
73 // ABI::Windows::Foundation::Collections::IKeyValuePair:
89 ABI::Windows::Foundation::Collections::IMapChangedEventArgs<K>> {
92 ABI::Windows::Foundation::Collections::CollectionChange change, in MapChangedEventArgs()
98 // ABI::Windows::Foundation::Collections::IMapChangedEventArgs:
100 ABI::Windows::Foundation::Collections::CollectionChange* value) override { in get_CollectionChange()
[all …]
Dwindows_version.h2 // Use of this source code is governed by a BSD-style license that can be
30 // The running version of Windows. This is declared outside OSInfo for
38 VISTA = 3, // Also includes Windows Server 2008.
39 WIN7 = 4, // Also includes Windows Server 2008 R2.
40 WIN8 = 5, // Also includes Windows Server 2012.
41 WIN8_1 = 6, // Also includes Windows Server 2012 R2.
45 // Also includes Windows Server 2016
50 // Also includes Windows Server 2019
64 // A rough bucketing of the available types of versions of Windows. This is used
67 // is for metrics histogram ids.
[all …]
/external/iptables/utils/
Dpf.os1 # $FreeBSD: head/etc/pf.os 258865 2013-12-03 04:32:02Z eadler $
4 # -------------------------
8 # (C) Copyright 2000-2003 by Michal Zalewski <lcamtuf@coredump.cx>
12 # purpose with or without fee is hereby granted, provided that the above
15 # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
24 # This fingerprint database is adapted from Michal Zalewski's p0f passive
35 # - Window size (WSS) - a highly OS dependent setting used for TCP/IP
38 # systems, it is a multiple of MSS or MTU (MSS+40). In some rare
39 # cases, the value is just arbitrary.
43 # means it is a multiple of MTU ((MSS+40)*nn). Unless you notice the
[all …]
/external/python/cpython2/Doc/using/
Dwindows.rst3 .. _using-on-windows:
6 Using Python on Windows
11 This document aims to give an overview of Windows-specific behaviour you should
12 know about when using Python on Microsoft Windows.
18 Unlike most Unix systems and services, Windows does not require Python natively
19 and thus does not pre-install a version of Python. However, the CPython team
20 has compiled Windows installers (MSI packages) with every `release
27 * DOS and Windows 3.x are deprecated since Python 2.0 and code specific to these
29 * Up to 2.5, Python was still compatible with Windows 95, 98 and ME (but already
32 expected to work on the Windows NT family.
[all …]
/external/bc/scripts/
Dpackage.sh3 # SPDX-License-Identifier: BSD-2-Clause
5 # Copyright (c) 2018-2023 Gavin D. Howard and contributors.
17 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
30 # This script requires some non-POSIX utilities, but that's okay because it's
33 # The non-POSIX utilities include:
52 # output after this point is what I usually copy into the release notes.
60 printf "$ stat -c '%%s %%n'\n" "$f"
61 stat -c '%s %n' "$f"
63 if [ -f "$f.sig" ]; then
64 rm -f "$f.sig"
[all …]
/external/crosvm/docs/book/src/contributing/
Dstyle_guide_platform_specific_code.md6 `#[cfg(target_os = "")]`. This is difficult to maintain as
8 - It reduces readability.
9 - Difficult to write/maintain unit tests.
10 - Difficult to maintain downstream, proprietary code
15 Consider a following example where we have platform independent code, `PrintInner`, which is used by
21 platforms, in `linux.rs` and `windows.rs`, implement traits defined in `print.rs`. Finally `sys.rs`
25 exported by platform specific code, `linux/print.rs` and `windows/print.rs`, and adds some more
27 `Printer.print()` is supposed to print a value of `u32` and print the target os name.
41 │ ├── windows
43 │ └── windows.rs
[all …]
/external/libusb/
DChangeLog4 2024-01-31: v1.0.27
11 * Fix sync transfer completion race and use-after-free
17 * Windows: Allow claiming multiple associated interfaces
18 * Windows: Ignore non-configured devices instead of waiting
19 * Windows: Improved root hub detection
21 2022-04-10: v1.0.26
23 * Fix regression with destroyed context if API is misused
26 * Fix Windows isochronous transfer regression since 1.0.24
27 * Fix macOS exit crash in some multi-context cases
29 * Fix Windows HID multi-interface product string retrieval
[all …]
/external/gptfdisk/
DREADME.Windows6 Most versions of Windows cannot boot from a GPT disk on BIOS-based
8 fdisk is a partition editor for GPT disks, and it will *AUTOMATICALLY
10 on a Windows system unless you fully understand what you're doing or are
12 GPT fdisk on a BIOS-mode boot disk, or perhaps even on a data disk, you may
13 find recovery to be very difficult! Pre-installed Windows 8 and later
15 self-installed Windows 8 systems sometimes use BIOS mode. This caveat does
23 the software. I originally wrote GPT fdisk on Linux, and some Linux- and
24 Unix-centric language remains in the documentation.
26 Windows Use Notes
27 -----------------
[all …]
/external/sdv/vsomeip/third_party/boost/process/include/boost/process/
Dwindows.hpp8 #include <boost/process/detail/windows/show_window.hpp>
10 /** \file boost/process/windows.hpp
12 * Header which provides the windows extensions.
18 namespace windows {
19 …<emphasis>unspecified</emphasis> <globalname alt="boost::process::windows::hide">hide</globalname>;
20 …<emphasis>unspecified</emphasis> <globalname alt="boost::process::windows::maximized">maximized</g…
21 …<emphasis>unspecified</emphasis> <globalname alt="boost::process::windows::minimized">minimized</g…
22 …<emphasis>unspecified</emphasis> <globalname alt="boost::process::windows::minimized_not_active">m…
23 …<emphasis>unspecified</emphasis> <globalname alt="boost::process::windows::not_active">not_active<…
24 …<emphasis>unspecified</emphasis> <globalname alt="boost::process::windows::show">show</globalname>;
[all …]
/external/okio/okio/src/commonMain/kotlin/okio/
DPath.kt8 * http://www.apache.org/licenses/LICENSE-2.0
11 * distributed under the License is distributed on an "AS IS" BASIS,
21 * A hierarchical address on a file system. A path is an identifier only; a [FileSystem] is required
24 * UNIX and Windows Paths
25 * ----------------------
27 * Paths follow different rules on UNIX vs. Windows operating systems. On UNIX operating systems
29 * Windows, the `\` backslash character separates path segments. The two platforms each have their
31 * can model a Linux path in a native Windows application.
34 * ---------------------------
37 * paths are prefixed with a slash, `/`. On Windows, absolute paths are one of two forms. The
[all …]
/external/sdv/vsomeip/third_party/boost/asio/doc/overview/
Dwindows.qbk2 / Copyright (c) 2003-2021 Christopher M. Kohlhoff (chris at kohlhoff dot com)
8 [section:windows Windows-Specific Functionality]
10 [link boost_asio.overview.windows.stream_handle Stream-Oriented HANDLEs]
12 [link boost_asio.overview.windows.random_access_handle Random-Access HANDLEs]
14 [link boost_asio.overview.windows.object_handle Object HANDLEs]
16 [section:stream_handle Stream-Oriented HANDLEs]
19 performed on Windows `HANDLE`s, such as named pipes.
25 windows::stream_handle pipe(my_io_context, handle);
40 [link boost_asio.reference.windows__stream_handle windows::stream_handle].
44 Windows stream `HANDLE`s are only available at compile time when targeting
[all …]
/external/rust/crates/termcolor/src/
Dlib.rs4 communicating with a Windows console. Much of this API was motivated by use
9 to an in memory buffer. While this is easy to do with ANSI escape sequences
10 (because they are in the buffer themselves), it is trickier to do with the
11 Windows console API, which requires synchronous communication.
24 `Buffer` is an in memory buffer that supports colored text. In a parallel
26 using a `BufferWriter`. The advantage of this design is that each thread can
28 resources such as the Windows console. Moreover, this design also prevents
33 analogous type for the Windows console is not provided since it cannot exist.
38 except it is augmented with methods for coloring by the `WriteColor` trait.
42 # fn test() -> Result<(), Box<::std::error::Error>> {
[all …]
/external/curl/projects/
DREADME.md1 <!--
4 SPDX-License-Identifier: curl
5 -->
11 from sources using legacy versions of Visual Studio 2010 - 2013.
14 "generate -help" for usage details.
17 cmake. Refer to INSTALL-CMAKE in the docs directory.
21 The following directory structure is used for the legacy project files:
31 This structure allows for side-by-side compilation of curl on the same machine
36 Note: Typically this side-by-side compilation is generally only required when
37 a library is being compiled against dynamic runtime libraries.
[all …]
/external/mdnsresponder/mDNSWindows/
DREADME.txt1 This directory contains support files for running mDNS on Microsoft Windows
2 and Windows CE/PocketPC. Building this code requires the Windows SDK 2003
4 CodeWarrior 8, the newer Windows headers from the Mac CodeWarrior 9 need to
9 Platform Support files that go below mDNS Core. These work on both Windows
10 and Windows CE/PocketPC.
14 High-level implementation of the DNS-SD API. This supports both "direct"
15 (compiled-in mDNSCore) and "client" (IPC to service) usage. Conditionals
20 Portable implementation of the DNS-SD API. This interacts with mDNSCore
21 to perform all the real work of the DNS-SD API. This code does not rely
22 on any platform-specifics so it should run on any platform with an mDNS
[all …]
/external/google-cloud-java/java-grafeas/src/main/proto/grafeas/v1/
Dupgrade.proto7 // http://www.apache.org/licenses/LICENSE-2.0
10 // distributed under the License is distributed on an "AS IS" BASIS,
29 // bash 4.1.2), there will be an Upgrade Note. For Windows, windows_update field
32 // Required for non-Windows OS. The package this Upgrade is for.
34 // Required for non-Windows OS. The version of the package in machine + human
39 // Required for Windows OS. Represents the metadata about the Windows update.
47 // Required - The specific operating system this metadata applies to. See
51 // upstream operating system upgrade feed. For Windows the classification is
53 // https://docs.microsoft.com/en-us/previous-versions/windows/desktop/ff357803(v=vs.85)
61 // Windows Update represents the metadata about the update for the Windows
[all …]
/external/googleapis/grafeas/v1/
Dupgrade.proto7 // http://www.apache.org/licenses/LICENSE-2.0
10 // distributed under the License is distributed on an "AS IS" BASIS,
29 // bash 4.1.2), there will be an Upgrade Note. For Windows, windows_update field
32 // Required for non-Windows OS. The package this Upgrade is for.
34 // Required for non-Windows OS. The version of the package in machine + human
39 // Required for Windows OS. Represents the metadata about the Windows update.
47 // Required - The specific operating system this metadata applies to. See
51 // upstream operating system upgrade feed. For Windows the classification is
53 // https://docs.microsoft.com/en-us/previous-versions/windows/desktop/ff357803(v=vs.85)
61 // Windows Update represents the metadata about the update for the Windows
[all …]
/external/curl/lib/
Dsetup-win32.h12 * This software is licensed as described in the file COPYING, which
17 * copies of the Software, and permit persons to whom the Software is
20 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
23 * SPDX-License-Identifier: curl
28 /* ---------------------------------------------------------------- */
29 /* Watt-32 TCP/IP SPECIFIC */
30 /* ---------------------------------------------------------------- */
41 /* ---------------------------------------------------------------- */
42 /* BSD-style lwIP TCP/IP stack SPECIFIC */
43 /* ---------------------------------------------------------------- */
[all …]
/external/libwebsockets/READMEs/
DREADME.build-windows.md1 # Some notes for the windows jungle
3 This was how I compiled libwebsockets starting from a blank windows install
4 in March - April 2020. Doing this on a linux distro is way simpler and quicker
13 ### Required: Windows product key
15 Assuming like me the first thing you do with a new laptop is install Linux over
16 the windows it came with, you can recover your 'windows tax' windows product key
22 To have shared clipboard, and for windows video driver to match your vm window
23 resolution, you must install spice guest tools inside the windows VM. It also
26 https://www.spice-space.org/download/windows/spice-guest-tools/spice-guest-tools-latest.exe
28 ### Blood-pressure reduction: Firefox
[all …]
/external/python/cpython3/Doc/library/
Dmsilib.rst1 :mod:`msilib` --- Read and write Microsoft Installer files
5 :platform: Windows
16 .. deprecated-removed:: 3.11 3.13
17 The :mod:`msilib` module is deprecated
20 --------------
24 exposes an API to create CAB files. Support for reading ``.cab`` files is
25 currently not implemented; read support for the ``.msi`` database is possible.
28 therefore, it is a fairly low-level API. One primary application of this
29 package is the creation of Python installer package itself (although that currently
32 The package contents can be roughly split into four parts: low-level CAB
[all …]
/external/cronet/third_party/icu/source/data/mappings/
Dconvrtrs.txt3 # * Copyright (C) 1995-2014, International Business Machines
10 # http://demo.icu-project.org/icu-bin/convexp
14 # This file is not read directly by ICU. If you change it, you need to
17 # cnvalias.icu. The gencnval -v verbose option will help you when you edit
23 # This is an alias file used by the character set converter.
25 # is more information about this file.
31 # Here is the file format using BNF-like syntax:
38 # converterName ::= [0-9a-zA-Z:_'-']+
51 # All names can be tagged by including a space-separated list of tags in
52 # curly braces, as in ISO_8859-1:1987{IANA*} iso-8859-1 { MIME* } or
[all …]
/external/rust/crates/rustix/src/backend/libc/
Dmod.rs4 //! Windows, this uses the Winsock API in `windows-sys`, which can be adapted
5 //! to have a very `libc`-like interface.
16 #[cfg(windows)]
18 pub use crate::maybe_polyfill::os::windows::io::{
26 /// [`AsRawFd`]: https://doc.rust-lang.org/stable/std/os/fd/trait.AsRawFd.html
30 …/// [`as_raw_fd`]: https://doc.rust-lang.org/stable/std/os/fd/trait.FromRawFd.html#tymethod.as_raw…
31 fn as_raw_fd(&self) -> RawFd; in as_raw_fd()
35 fn as_raw_fd(&self) -> RawFd { in as_raw_fd()
42 /// [`IntoRawFd`]: https://doc.rust-lang.org/stable/std/os/fd/trait.IntoRawFd.html
46 …/// [`into_raw_fd`]: https://doc.rust-lang.org/stable/std/os/fd/trait.FromRawFd.html#tymethod.into…
[all …]
/external/jimfs/jimfs/src/test/java/com/google/common/jimfs/
DWindowsPathTypeTest.java8 * http://www.apache.org/licenses/LICENSE-2.0
11 * distributed under the License is distributed on an "AS IS" BASIS,
19 import static com.google.common.jimfs.PathType.windows;
43 PathType windows = PathType.windows(); in testWindows() local
44 assertThat(windows.getSeparator()).isEqualTo("\\"); in testWindows()
45 assertThat(windows.getOtherSeparators()).isEqualTo("/"); in testWindows()
48 PathType.ParseResult path = windows.parsePath("C:\\\\foo\\bar"); in testWindows()
50 assertThat(windows.toString(path.root(), path.names())).isEqualTo("C:\\foo\\bar"); in testWindows()
52 PathType.ParseResult path2 = windows.parsePath("foo/bar/"); in testWindows()
54 assertThat(windows.toString(path2.root(), path2.names())).isEqualTo("foo\\bar"); in testWindows()
[all …]

12345678910>>...49