Home | History | Annotate | Download | only in jni

Lines Matching full:longvalue

401         jlong longValue = (longValues ? longValues[0] : 0);
407 formatDateTime(longValue
414 snprintf(date, sizeof(date), "%04" PRId64 "0101T000000", longValue);
421 packet.putInt8(longValue);
424 packet.putUInt8(longValue);
427 packet.putInt16(longValue);
430 packet.putUInt16(longValue);
433 packet.putInt32(longValue);
436 packet.putUInt32(longValue);
439 packet.putInt64(longValue);
442 packet.putUInt64(longValue);
445 packet.putInt128(longValue);
448 packet.putUInt128(longValue);
488 static bool readLongValue(int type, MtpDataPacket& packet, jlong& longValue) {
493 longValue = temp;
499 longValue = temp;
505 longValue = temp;
511 longValue = temp;
517 longValue = temp;
523 longValue = temp;
529 longValue = temp;
535 longValue = temp;
554 jlong longValue = 0;
563 if (!readLongValue(type, packet, longValue)) goto fail;
567 (jint)handle, (jint)property, longValue, stringValue);
598 jlong longValue = longValues[0];
603 packet.putInt8(longValue);
606 packet.putUInt8(longValue);
609 packet.putInt16(longValue);
612 packet.putUInt16(longValue);
615 packet.putInt32(longValue);
618 packet.putUInt32(longValue);
621 packet.putInt64(longValue);
624 packet.putUInt64(longValue);
627 packet.putInt128(longValue);
630 packet.putInt128(longValue);
657 jlong longValue = 0;
666 if (!readLongValue(type, packet, longValue)) goto fail;
670 (jint)property, longValue, stringValue);