Searched defs:version (Results 1 - 25 of 93) sorted by relevance

1234

/system/bt/btif/include/
H A Dbtif_debug_btsnoop.h28 uint8_t version; member in struct:btsnooz_preamble_t
/system/chre/pal/include/chre/pal/
H A Dsystem.h33 #include "chre/pal/version.h"
40 * Initial version of the CHRE PAL System API.
45 * The version of the CHRE GNSS PAL defined in this header file.
51 * The version of this API structure, which can be used at runtime to
54 uint32_t version; member in struct:chrePalSystemApi
/system/core/include/cutils/
H A Dnative_handle.h33 int version; /* sizeof(native_handle_t) */ member in struct:native_handle
/system/core/libcutils/include/cutils/
H A Dnative_handle.h33 int version; /* sizeof(native_handle_t) */ member in struct:native_handle
/system/core/libcutils/include_vndk/cutils/
H A Dnative_handle.h33 int version; /* sizeof(native_handle_t) */ member in struct:native_handle
/system/core/libnativebridge/tests/
H A DDummyNativeBridge2.cpp48 extern "C" bool native_bridge2_is_compatible_compatible_with(uint32_t version) { argument
50 return version <= 2;
67 .version = 2,
H A DDummyNativeBridge3.cpp49 extern "C" bool native_bridge3_isCompatibleWith(uint32_t version) { argument
51 return version <= 3;
108 .version = 3,
/system/extras/boot_control_copy/
H A Dbootinfo.h37 uint8_t version; member in struct:BrilloBootInfo
/system/gatekeeper/include/gatekeeper/
H A Dpassword_handle.h35 uint8_t version; member in struct:gatekeeper::password_handle_t
/system/update_engine/
H A Dimage_properties.h37 // The product version of this image.
38 std::string version; member in struct:chromeos_update_engine::ImageProperties
41 // the version, signing keys and build target.
H A Domaha_response.h39 std::string version; member in struct:chromeos_update_engine::OmahaResponse
/system/core/storaged/include/
H A Dstoraged_info.h33 string version; // version string member in class:storage_info_t
/system/libvintf/include/vintf/
H A DVersion.h64 version(v), majorRev(mj), minorRev(mi) {}
66 size_t version; member in struct:android::vintf::KernelVersion
71 return version == other.version
/system/core/include/nativebridge/
H A Dnative_bridge.h80 // Returns the version number of the native bridge. This information is available after a
86 // bridge supporting the version 2 interface. Will return null if the bridge does not support
87 // version 2, or if it doesn't have a signal handler it wants to be known.
170 uint32_t version; member in struct:android::NativeBridgeCallbacks
227 // Added callbacks in version 2.
229 // Check whether the bridge is compatible with the given version. A bridge may decide not to be
233 // bridge_version [IN] the version of libnativebridge.
235 // true if the native bridge supports the given version of libnativebridge.
252 // Added callbacks in version 3.
355 // Get native bridge version o
[all...]
/system/extras/sane_schedstat/
H A Dsane_schedstat.c19 Currently support version 15, modify parse() to support other
112 unsigned int version; local
115 if (sscanf(b, "version %u\n", &version) != 1) {
116 printf("Could not parse version\n");
119 switch (version) {
135 printf("Can not handle version %u\n", version);
/system/nvram/core/include/nvram/core/
H A Dpersistence.h33 // NVRAM service, such as version and a list of defined spaces.
50 // The current major header version. Bump this upon making
53 // version that is larger than the compile-time one.
56 // The header version, indicating the data format revision used when the
57 // header was last written. On load, if the version is more recent then what
62 uint32_t version = kVersion; member in struct:nvram::NvramHeader
/system/security/keystore/
H A Dkeystore.h142 typedef struct { uint32_t version; } keystore_metadata_t; member in struct:KeyStore::__anon2450
149 * Upgrade the key from the current version to whatever is newest.
/system/update_engine/payload_consumer/
H A Dinstall_plan.h57 std::string version; // version we are installing. member in struct:chromeos_update_engine::InstallPlan
/system/bt/bta/hf_client/
H A Dbta_hf_client_sdp.cc92 uint16_t version; local
120 version = HFP_VERSION_1_6;
122 result &= SDP_AddProfileDescriptorList(sdp_handle, profile_uuid, version);
221 client_cb->peer_version = HFP_VERSION_1_1; /* Default version */
241 /* get profile version (if failure, version parameter is not updated) */
/system/chre/chre_api/include/chre_api/chre/
H A Devent.h243 * Nanoapp version. The semantics of this field are defined by the nanoapp,
245 * CHRE version exposed in chreGetVersion(). That is, the most significant
246 * byte represents the major version, the next byte the minor version, and
247 * the lower two bytes the patch version.
249 uint32_t version; member in struct:chreNanoappInfo
294 * Note: This version of the API does not give an easy means to discover
405 * removed in a future API version and multiple instances of the same appId are
/system/chre/platform/shared/
H A Dhost_protocol_chre.cc88 uint64_t platformId, uint32_t version, uint16_t hostClientId) {
96 maxMessageLen, platformId, version);
83 encodeHubInfoResponse( FlatBufferBuilder& builder, const char *name, const char *vendor, const char *toolchain, uint32_t legacyPlatformVersion, uint32_t legacyToolchainVersion, float peakMips, float stoppedPower, float sleepPower, float peakPower, uint32_t maxMessageLen, uint64_t platformId, uint32_t version, uint16_t hostClientId) argument
/system/core/adb/
H A Dadb_client.cpp162 // first query the adb server's version
163 int fd = _adb_connect("host:version", error);
187 // If a server is already running, check its version matches.
188 int version = ADB_SERVER_VERSION - 1; local
190 // If we have a file descriptor, then parse version result.
201 if (sscanf(&version_string[0], "%04x", &version) != 1) {
202 *error = android::base::StringPrintf("cannot parse version string: %s",
208 // indicate a version of adb that does not support the
209 // version command, in which case we should fall-through to kill it.
215 if (version !
[all...]
H A Dframebuffer_service.cpp38 /* This version number defines the format of the fbinfo struct.
42 unsigned int version; member in struct:fbinfo
90 fbinfo.version = DDMS_RAWIMAGE_VERSION;
/system/core/fastboot/
H A Dtcp.cpp116 int version = 0; local
117 if (!android::base::ParseInt(buffer + 2, &version) || version < kProtocolVersion) {
118 *error = android::base::StringPrintf("Unknown TCP protocol version %s (host version %02d)",
H A Dudp_test.cpp53 // Returns an Init packet with a 2-byte |version| and |max_packet_size|.
54 static std::string InitPacket(uint16_t sequence, uint16_t version, uint16_t max_packet_size) { argument
56 PacketValue(version) + PacketValue(max_packet_size);
119 // Tests a mismatched version number; as long as the minimum of the two versions is supported
266 EXPECT_EQ("target reported invalid protocol version 0", error);

Completed in 795 milliseconds

1234