| /frameworks/base/core/java/android/net/ |
| ProxyInfo.java | 319 dest.writeByte((byte)1); 324 dest.writeByte((byte)0); 327 dest.writeByte((byte)1); 331 dest.writeByte((byte)0);
|
| /frameworks/base/core/tests/benchmarks/src/android/os/ |
| ParcelBenchmark.java | 39 mParcel.writeByte(val);
|
| /frameworks/base/telecomm/java/android/telecom/ |
| CameraCapabilities.java | 111 dest.writeByte((byte) (isZoomSupported() ? 1 : 0));
|
| ParcelableConnection.java | 216 destination.writeByte((byte) (mRingbackRequested ? 1 : 0)); 217 destination.writeByte((byte) (mIsVoipAudioMode ? 1 : 0));
|
| /libcore/luni/src/main/java/java/sql/ |
| SQLOutput.java | 71 public void writeByte(byte theByte) throws SQLException;
|
| /dalvik/dexgen/src/com/android/dexgen/dex/file/ |
| DebugInfoEncoder.java | 200 output.writeByte(DBG_SET_PROLOGUE_END); 616 output.writeByte(DBG_RESTART_LOCAL); 692 output.writeByte(DBG_START_LOCAL); 721 output.writeByte(DBG_START_LOCAL_EXTENDED); 750 output.writeByte(DBG_END_LOCAL); 809 output.writeByte(opcode); 853 output.writeByte(DBG_ADVANCE_LINE); 877 output.writeByte(DBG_ADVANCE_PC); 914 output.writeByte(DBG_END_SEQUENCE);
|
| /dalvik/dx/src/com/android/dx/dex/file/ |
| DebugInfoEncoder.java | 208 output.writeByte(DBG_SET_PROLOGUE_END); 624 output.writeByte(DBG_RESTART_LOCAL); 700 output.writeByte(DBG_START_LOCAL); 729 output.writeByte(DBG_START_LOCAL_EXTENDED); 758 output.writeByte(DBG_END_LOCAL); 817 output.writeByte(opcode); 861 output.writeByte(DBG_ADVANCE_LINE); 885 output.writeByte(DBG_ADVANCE_PC); 922 output.writeByte(DBG_END_SEQUENCE);
|
| ValueEncoder.java | 183 out.writeByte(type); 188 out.writeByte(type); 194 out.writeByte(type); 199 out.writeByte(type | (value << 5));
|
| /external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
| DebugInfoEncoder.java | 200 output.writeByte(DBG_SET_PROLOGUE_END); 616 output.writeByte(DBG_RESTART_LOCAL); 692 output.writeByte(DBG_START_LOCAL); 721 output.writeByte(DBG_START_LOCAL_EXTENDED); 750 output.writeByte(DBG_END_LOCAL); 809 output.writeByte(opcode); 853 output.writeByte(DBG_ADVANCE_LINE); 877 output.writeByte(DBG_ADVANCE_PC); 914 output.writeByte(DBG_END_SEQUENCE);
|
| /frameworks/base/core/java/android/hardware/soundtrigger/ |
| SoundTrigger.java | 158 dest.writeByte((byte) (supportsCaptureTransition ? 1 : 0)); 160 dest.writeByte((byte) (supportsConcurrentCapture ? 1 : 0)); 162 dest.writeByte((byte) (returnsTriggerInEvent ? 1 : 0)); 507 dest.writeByte((byte) (captureAvailable ? 1 : 0)); 511 dest.writeByte((byte) (triggerInData ? 1 : 0)); 513 dest.writeByte((byte)1); 518 dest.writeByte((byte)0); 645 dest.writeByte((byte) (captureRequested ? 1 : 0)); 646 dest.writeByte((byte) (allowMultipleTriggers ? 1 : 0)); [all...] |
| /dalvik/dexgen/src/com/android/dexgen/dex/code/ |
| ArrayData.java | 123 out.writeByte((byte) ((CstLiteral32) cst).getIntBits()); 154 out.writeByte(0x00);
|
| /dalvik/dx/src/com/android/dx/dex/code/ |
| ArrayData.java | 125 out.writeByte((byte) ((CstLiteral32) cst).getIntBits()); 156 out.writeByte(0x00);
|
| /external/dexmaker/src/dx/java/com/android/dx/dex/code/ |
| ArrayData.java | 123 out.writeByte((byte) ((CstLiteral32) cst).getIntBits()); 154 out.writeByte(0x00);
|
| /external/emma/core/java12/com/vladium/emma/data/ |
| ClassDescriptor.java | 199 out.writeByte (1); 204 out.writeByte (0);
|
| /external/proguard/src/proguard/classfile/instruction/ |
| Instruction.java | 847 protected static void writeByte(byte[] code, int offset, int value) 881 case 1: writeByte( code, offset, value); break;
|
| LookUpSwitchInstruction.java | 109 writeByte(code, offset++, 0);
|
| TableSwitchInstruction.java | 112 writeByte(code, offset++, 0);
|
| /frameworks/base/location/java/android/location/ |
| GpsNavigationMessage.java | 234 parcel.writeByte(mType); 235 parcel.writeByte(mPrn);
|
| /libcore/luni/src/main/java/java/util/logging/ |
| LogRecord.java | 464 out.writeByte(MAJOR); 465 out.writeByte(MINOR);
|
| /packages/apps/Nfc/src/com/android/nfc/ndefpush/ |
| NdefPushProtocol.java | 153 output.writeByte(VERSION); 156 output.writeByte(mActions[i]);
|
| /packages/apps/Nfc/src/com/android/nfc/snep/ |
| SnepMessage.java | 131 output.writeByte(mVersion); 132 output.writeByte(mField);
|
| /dalvik/dexgen/src/com/android/dexgen/util/ |
| ByteArrayAnnotatedOutput.java | 148 public void writeByte(int value) { 232 writeByte((value & 0x7f) | 0x80); 238 writeByte(value & 0x7f); 253 writeByte((value & 0x7f) | (hasMore ? 0x80 : 0));
|
| /external/emma/core/java12/com/vladium/jcd/cls/constant/ |
| CONSTANT_info.java | 130 out.writeByte (tag ());
|
| /external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/ |
| AbstractInterceptFieldCallback.java | 25 public byte writeByte(Object obj, String name, byte oldValue, byte newValue) { return newValue; }
|
| /packages/apps/UnifiedEmail/src/com/android/mail/ui/ |
| FolderOperation.java | 98 dest.writeByte((byte)(mAdd ? 1 : 0));
|