Searched defs:version (Results 1 - 16 of 16) 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.c33 /* This version number defines the format of the fbinfo struct.
37 unsigned int version; member in struct:fbinfo
83 fbinfo.version = DDMS_RAWIMAGE_VERSION;
H A Dadb_client.c211 // first query the adb server's version
212 int fd = _adb_connect("host:version");
229 // if server was running, check its version to make sure it is not out of date
232 int version = ADB_SERVER_VERSION - 1; local
234 // if we have a file descriptor, then parse version result
244 if (sscanf(buf, "%04x", &version) != 1) goto error;
247 // which would indicate a version of adb that does not support the version command
252 if(version != ADB_SERVER_VERSION) {
H A Dadb.c386 case A_CNXN: /* CONNECT(version, maxdata, "system-id-string") */
387 /* XXX verify version, etc */
1002 header.version = _LINUX_CAPABILITY_VERSION;
1261 if (!strcmp(service, "version")) {
1262 char version[12]; local
1263 snprintf(version, sizeof version, "%04x", ADB_SERVER_VERSION);
1264 snprintf(buf, sizeof buf, "OKAY%04x%s", (unsigned)strlen(version), version);
H A Dcommandline.c72 void version(FILE * out) { function
73 fprintf(out, "Android Debug Bridge version %d.%d.%d\n",
79 version(stderr);
154 " adb version - show version num\n"
1360 if(!strcmp(argv[0], "version")) {
1361 version(stdout);
/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/toolbox/
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/libnl_2/genl/
H A Dgenl.c47 int hdrlen, int flags, uint8_t cmd, uint8_t version)
75 gmh->version = version;
117 gmhhdr.version = CTRL_ATTR_FAMILY_ID;
46 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/extras/fatblock/
H A Dfat.h45 uint16_t version; member in struct:fat_boot_sector
/system/media/camera/src/
H A Dcamera_metadata.c79 uint32_t version; member in struct:camera_metadata
144 metadata->version = CURRENT_METADATA_VERSION;
213 // If copying a newer version of the structure, there may be additional
220 metadata->version = CURRENT_METADATA_VERSION;
480 metadata->version, metadata->flags);
/system/core/include/system/
H A Dwindow.h61 int version; member in struct:android_native_base_t
75 common.version = sizeof(ANativeWindowBuffer);
330 common.version = sizeof(ANativeWindow);
/system/core/include/pixelflinger/
H A Dpixelflinger.h188 GGLsizei version; // always set to sizeof(GGLSurface) member in struct:__anon314
/system/security/keystore/
H A Dkeystore.cpp258 * parts must be no more than VALUE_SIZE bytes. The first field is the version,
278 uint8_t version; member in struct:blob
307 mBlob.version = CurrentBlobVersion;
334 return mBlob.version;
337 void setVersion(uint8_t version) { argument
338 mBlob.version = version;
400 // memory version has extra padding to tolerate rounding up to
598 const uint8_t version = keyBlob->getVersion(); local
599 if (version < CurrentBlobVersio
780 uint8_t version = oldVersion; local
[all...]

Completed in 238 milliseconds