Searched defs:type (Results 1 - 9 of 9) sorted by relevance

/bootable/recovery/edify/
H A Dexpr.h52 int type; member in struct:__anon5
/bootable/recovery/applypatch/
H A Dimgpatch.c67 int type = Read4(patch->data + pos); local
70 if (type == CHUNK_NORMAL) {
84 } else if (type == CHUNK_RAW) {
105 } else if (type == CHUNK_DEFLATE) {
227 printf("patch chunk %d is unknown type %d\n", i, type);
H A Dapplypatch.c128 enum PartitionType type; local
131 type = MTD;
133 type = EMMC;
177 switch (type) {
224 switch (type) {
269 switch (type) {
356 enum PartitionType type; local
358 type = MTD;
360 type = EMMC;
372 switch (type) {
[all...]
H A Dimgdiff.c67 * chunk type (4) [CHUNK_{NORMAL, GZIP, DEFLATE, RAW}]
68 * if chunk type == CHUNK_NORMAL:
72 * if chunk type == CHUNK_GZIP: (version 1 only)
86 * if chunk type == CHUNK_DEFLATE: (version 2 only)
97 * if chunk type == RAW: (version 2 only)
137 int type; // CHUNK_NORMAL, CHUNK_DEFLATE member in struct:__anon2
291 curr->type = CHUNK_NORMAL;
306 curr->type = CHUNK_DEFLATE;
347 curr->type = CHUNK_NORMAL;
418 curr->type
[all...]
/bootable/recovery/
H A Dasn1_decoder.cpp107 * Returns the constructed type and advances the pointer. E.g. A0 -> 0
110 int type = get_byte(ctx); local
111 if (type == -1 || (type & kMaskConstructed) != kTagConstructed) {
119 app_ctx->app_type = type & kMaskAppType;
H A Dscreen_ui.cpp420 void ScreenRecoveryUI::SetProgressType(ProgressType type) argument
423 if (progressBarType != type) {
424 progressBarType = type;
/bootable/recovery/minadbd/
H A Dadb.c229 char *type, *product, *end; local
232 type = banner;
233 product = strchr(type, ':');
252 if(!strcmp(type, "bootloader")){
259 if(!strcmp(type, "device")) {
266 if(!strcmp(type, "recovery")) {
273 if(!strcmp(type, "sideload")) {
H A Dadb.h125 /* socket-type-specific extradata */
179 transport_type type; member in struct:atransport
H A Dsysdeps.h169 extern int socket_loopback_client(int port, int type);
170 extern int socket_network_client(const char *host, int port, int type);
171 extern int socket_loopback_server(int port, int type);
172 extern int socket_inaddr_any_server(int port, int type);
440 static __inline__ int unix_socketpair( int d, int type, int protocol, int sv[2] ) argument
442 return socketpair( d, type, protocol, sv );

Completed in 146 milliseconds