Searched refs:version (Results 1 - 25 of 38) sorted by relevance

12

/system/core/include/cutils/
H A Dnative_handle.h26 int version; /* sizeof(native_handle_t) */ member in struct:native_handle
/system/extras/tests/crypto/
H A Dget_dm_versions.c15 io->version[0] = 4;
16 io->version[1] = 0;
17 io->version[2] = 0;
47 /* Iterate over the returned versions, and print each subsystem's version */
50 printf("%s: %d.%d.%d\n", v->name, v->version[0], v->version[1], v->version[2]);
/system/core/libcutils/
H A Dnative_handle.c33 h->version = sizeof(native_handle_t);
42 if (h->version != sizeof(native_handle_t))
51 if (h->version != sizeof(native_handle_t))
/system/core/libmincrypt/tools/
H A DDumpPublicKey.java36 * @return version number of key. Supported versions are:
47 int version;
50 version = useSHA256 ? 3 : 1;
52 version = useSHA256 ? 4 : 2;
63 return version;
69 * version 1 key, the string will be a C initializer; this is
73 int version = check(key, useSHA256);
81 if (version > 1) {
83 result.append(Integer.toString(version));
/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/extras/tests/sdcard/
H A Dprofile_sdcard.sh19 adb shell cat /proc/version
/system/core/libcorkscrew/arch-x86/
H A Ddwarf.h69 uint8_t version; member in struct:__anon155
82 uint8_t version; member in struct:__anon156
/system/core/toolbox/
H A Dmkswap.c12 uint32_t version; member in struct:linux_swap_header
62 sw_hdr.version = 1;
H A Dsendevent.c20 #define EVIOCGVERSION _IOR('E', 0x01, int) /* get driver version */
53 int version; local
66 if (ioctl(fd, EVIOCGVERSION, &version)) {
67 fprintf(stderr, "could not get driver version for %s, %s\n", argv[optind], strerror(errno));
H A Dgetevent.c296 int version; local
312 if(ioctl(fd, EVIOCGVERSION, &version)) {
314 fprintf(stderr, "could not get driver version for %s, %s\n", device, strerror(errno));
357 " version %04x\n",
358 id.bustype, id.vendor, id.product, id.version);
365 printf(" version: %d.%d.%d\n",
366 version >> 16, (version >> 8) & 0xff, version & 0xff);
501 int version; local
[all...]
/system/core/include/private/
H A Dandroid_filesystem_capability.h38 __u32 version; member in struct:__user_cap_header_struct
/system/core/libnl_2/genl/
H A Dgenl.c50 int hdrlen, int flags, uint8_t cmd, uint8_t version)
78 gmh->version = version;
120 gmhhdr.version = CTRL_ATTR_FAMILY_ID;
49 genlmsg_put(struct nl_msg *msg, uint32_t pid, uint32_t seq, int family, int hdrlen, int flags, uint8_t cmd, uint8_t version) argument
/system/security/softkeymaster/
H A Dmodule.cpp58 dev->common.version = 1;
/system/core/adb/
H A Dframebuffer_service.c36 /* This version number defines the format of the fbinfo struct.
40 unsigned int version; member in struct:fbinfo
86 fbinfo.version = DDMS_RAWIMAGE_VERSION;
H A Dadb_client.c221 // first query the adb server's version
222 int fd = _adb_connect("host:version");
242 // if server was running, check its version to make sure it is not out of date
245 int version = ADB_SERVER_VERSION - 1; local
247 // if we have a file descriptor, then parse version result
257 if (sscanf(buf, "%04x", &version) != 1) goto error;
260 // which would indicate a version of adb that does not support the version command
265 if(version != ADB_SERVER_VERSION) {
/system/core/init/
H A Dkeychords.c52 keychord->version = KEYCHORD_VERSION;
/system/extras/fatblock/
H A Dfat.h45 uint16_t version; member in struct:fat_boot_sector
/system/core/fs_mgr/
H A Dfs_mgr_verity.c185 // check the protocol version
187 ERROR("Couldn't read verity metadata protocol version!\n");
191 ERROR("Got unknown verity metadata protocol version %d!\n", protocol_version);
241 io->version[0] = 4;
242 io->version[1] = 0;
243 io->version[2] = 0;
/system/core/include/system/
H A Dwindow.h73 int version; member in struct:android_native_base_t
87 common.version = sizeof(ANativeWindowBuffer);
350 common.version = sizeof(ANativeWindow);
/system/vold/
H A DDevmapper.cpp122 io->version[0] = 4;
123 io->version[1] = 0;
124 io->version[2] = 0;
H A Dcryptfs.c94 io->version[0] = 4;
95 io->version[1] = 0;
96 io->version[2] = 0;
310 /* A routine to update the passed in crypt_ftr to the lastest version.
418 SLOGE("Cannot understand major version %d real block device footer; expected %d\n",
424 SLOGW("Warning: crypto footer minor version %d, expected <= %d, continuing...\n",
500 SLOGE("Crypt_ftr version doesn't support persistent data");
581 SLOGE("Crypt_ftr version doesn't support persistent data");
734 static int get_dm_crypt_version(int fd, const char *name, int *version) argument
750 * When found, get and return the version
779 int version[3]; local
[all...]
/system/core/include/usbhost/
H A Dusbhost.h26 #include <linux/version.h>
/system/core/debuggerd/
H A Dgetevent.c21 int version; local
35 if(ioctl(fd, EVIOCGVERSION, &version)) {
/system/core/libnetutils/
H A Dpacket.c100 ip.version = IPVERSION;
184 } else if (packet.ip.version != IPVERSION || packet.ip.ihl != (sizeof(packet.ip) >> 2)) {
/system/core/libpixelflinger/
H A DAndroid.mk72 # Static library version

Completed in 2123 milliseconds

12