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

/system/core/include/cutils/
H A Dnative_handle.h26 int version; /* sizeof(native_handle_t) */ member in struct:native_handle
/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) {
H A Dcommandline.c73 void version(FILE * out) { function
74 fprintf(out, "Android Debug Bridge version %d.%d.%d\n",
80 version(stderr);
170 " adb version - show version num\n"
1492 if(!strcmp(argv[0], "version")) {
1493 version(stdout);
H A Dadb.c523 case A_CNXN: /* CONNECT(version, maxdata, "system-id-string") */
524 /* XXX verify version, etc */
1480 if (!strcmp(service, "version")) {
1481 char version[12]; local
1482 snprintf(version, sizeof version, "%04x", ADB_SERVER_VERSION);
1483 snprintf(buf, sizeof buf, "OKAY%04x%s", (unsigned)strlen(version), version);
/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/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/core/debuggerd/
H A Dgetevent.c21 int version; local
35 if(ioctl(fd, EVIOCGVERSION, &version)) {
/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/core/gpttool/
H A Dgpttool.c49 u32 version; member in struct:efi_header
309 hdr->version = EFI_VERSION;
/system/core/include/private/
H A Dandroid_filesystem_capability.h38 __u32 version; member in struct:__user_cap_header_struct
/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/extras/fatblock/
H A Dfat.h45 uint16_t version; member in struct:fat_boot_sector
/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);
H A Daudio.h109 * frame header to specify bit rate, stereo mode, version...
412 * The version and size fields must be initialized by the caller by using
416 uint16_t version; // version of the info structure member in struct:__anon88
417 uint16_t size; // total size of the structure including version and size
435 version: AUDIO_OFFLOAD_INFO_VERSION_CURRENT,
/system/media/camera/src/
H A Dcamera_metadata.c96 uint32_t version; member in struct:camera_metadata
210 metadata->version = CURRENT_METADATA_VERSION;
841 metadata->version, metadata->flags);
/system/core/include/pixelflinger/
H A Dpixelflinger.h188 GGLsizei version; // always set to sizeof(GGLSurface) member in struct:__anon55
/system/vold/
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/security/keystore/
H A Dkeystore.cpp370 * parts must be no more than VALUE_SIZE bytes. The first field is the version,
390 uint8_t version; member in struct:blob
421 mBlob.version = CURRENT_BLOB_VERSION;
454 return mBlob.version;
458 if (mBlob.version < 2) {
485 void setVersion(uint8_t version) { argument
486 mBlob.version = version;
567 // memory version has extra padding to tolerate rounding up to
1003 const uint8_t version local
1218 uint32_t version; member in struct:KeyStore::__anon328
1242 uint8_t version = oldVersion; local
[all...]

Completed in 227 milliseconds