Home | History | Annotate | Download | only in jni

Lines Matching defs:longValue

416         jlong longValue = (longValues ? longValues[0] : 0);
420 packet.putInt8(longValue);
423 packet.putUInt8(longValue);
426 packet.putInt16(longValue);
429 packet.putUInt16(longValue);
432 packet.putInt32(longValue);
435 packet.putUInt32(longValue);
438 packet.putInt64(longValue);
441 packet.putUInt64(longValue);
444 packet.putInt128(longValue);
447 packet.putUInt128(longValue);
483 static bool readLongValue(int type, MtpDataPacket& packet, jlong& longValue) {
488 longValue = temp;
494 longValue = temp;
500 longValue = temp;
506 longValue = temp;
512 longValue = temp;
518 longValue = temp;
524 longValue = temp;
530 longValue = temp;
549 jlong longValue = 0;
558 if (!readLongValue(type, packet, longValue)) goto fail;
562 (jint)handle, (jint)property, longValue, stringValue);
587 jlong longValue = longValues[0];
592 packet.putInt8(longValue);
595 packet.putUInt8(longValue);
598 packet.putInt16(longValue);
601 packet.putUInt16(longValue);
604 packet.putInt32(longValue);
607 packet.putUInt32(longValue);
610 packet.putInt64(longValue);
613 packet.putUInt64(longValue);
616 packet.putInt128(longValue);
619 packet.putInt128(longValue);
645 jlong longValue = 0;
654 if (!readLongValue(type, packet, longValue)) goto fail;
658 (jint)property, longValue, stringValue);