Lines Matching refs:longValue

400         jlong longValue = (longValues ? longValues[0] : 0);  in getObjectPropertyValue()  local
406 formatDateTime(longValue, date, sizeof(date)); in getObjectPropertyValue()
413 snprintf(date, sizeof(date), "%04" PRId64 "0101T000000", longValue); in getObjectPropertyValue()
420 packet.putInt8(longValue); in getObjectPropertyValue()
423 packet.putUInt8(longValue); in getObjectPropertyValue()
426 packet.putInt16(longValue); in getObjectPropertyValue()
429 packet.putUInt16(longValue); in getObjectPropertyValue()
432 packet.putInt32(longValue); in getObjectPropertyValue()
435 packet.putUInt32(longValue); in getObjectPropertyValue()
438 packet.putInt64(longValue); in getObjectPropertyValue()
441 packet.putUInt64(longValue); in getObjectPropertyValue()
444 packet.putInt128(longValue); in getObjectPropertyValue()
447 packet.putInt128(longValue); in getObjectPropertyValue()
487 static bool readLongValue(int type, MtpDataPacket& packet, jlong& longValue) { in readLongValue() argument
492 longValue = temp; in readLongValue()
498 longValue = temp; in readLongValue()
504 longValue = temp; in readLongValue()
510 longValue = temp; in readLongValue()
516 longValue = temp; in readLongValue()
522 longValue = temp; in readLongValue()
528 longValue = temp; in readLongValue()
534 longValue = temp; in readLongValue()
553 jlong longValue = 0; in setObjectPropertyValue() local
562 if (!readLongValue(type, packet, longValue)) goto fail; in setObjectPropertyValue()
566 (jint)handle, (jint)property, longValue, stringValue); in setObjectPropertyValue()
597 jlong longValue = longValues[0]; in getDevicePropertyValue() local
602 packet.putInt8(longValue); in getDevicePropertyValue()
605 packet.putUInt8(longValue); in getDevicePropertyValue()
608 packet.putInt16(longValue); in getDevicePropertyValue()
611 packet.putUInt16(longValue); in getDevicePropertyValue()
614 packet.putInt32(longValue); in getDevicePropertyValue()
617 packet.putUInt32(longValue); in getDevicePropertyValue()
620 packet.putInt64(longValue); in getDevicePropertyValue()
623 packet.putUInt64(longValue); in getDevicePropertyValue()
626 packet.putInt128(longValue); in getDevicePropertyValue()
629 packet.putInt128(longValue); in getDevicePropertyValue()
656 jlong longValue = 0; in setDevicePropertyValue() local
665 if (!readLongValue(type, packet, longValue)) goto fail; in setDevicePropertyValue()
669 (jint)property, longValue, stringValue); in setDevicePropertyValue()