Searched refs:off (Results 51 - 64 of 64) sorted by path

123

/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DPhone.java815 * @param off the DTMF OFF length in milliseconds, or 0 for default
819 void sendBurstDtmf(String dtmfString, int on, int off, Message onComplete); argument
822 * Sets the radio power on/off state (off is sometimes
831 * @param power true means "on", false means "off".
H A DPhoneBase.java928 public void sendBurstDtmf(String dtmfString, int on, int off, Message onComplete) { argument
H A DPhoneProxy.java186 boolean oldPowerState = false; // old power state to off
863 public void sendBurstDtmf(String dtmfString, int on, int off, Message onComplete){ argument
864 mActivePhone.sendBurstDtmf(dtmfString, on, off, onComplete);
H A DRIL.java438 * Reads in a single RIL message off the wire. A RIL message consists
1174 sendBurstDtmf(String dtmfString, int on, int off, Message result) { argument
1180 rr.mp.writeString(Integer.toString(off));
1387 + (on ? " on" : " off"));
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCDMAPhone.java677 public void sendBurstDtmf(String dtmfString, int on, int off, Message onComplete) { argument
688 mCM.sendBurstDtmf(dtmfString, on, off, onComplete);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGsmServiceStateTracker.java297 // Signal strength polling stops when radio is off
466 // If we want it on and it's off, turn it on
471 // If it's on and available and we want it off gracefully
505 // 4) No service due to power off, aka airplane mode
534 // Power off state, such as airplane mode
535 if (DBG) log("updateSpnDisplay: radio is off w/ showPlmn="
591 // Radio has crashed or turned off
597 // Radio has crashed or turned off
1000 if (DBG) log("pollStateDone: using getTimeZone(off, dst, time, iso)");
1123 // TODO Don't poll signal strength if screen is off
1327 displayNameFor(int off) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipCommandInterface.java168 public void sendBurstDtmf(String dtmfString, int on, int off, argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
H A DSimulatedCommands.java932 public void sendBurstDtmf(String dtmfString, int on, int off, Message result) { argument
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
H A DUsimDataDownloadCommands.java345 public void sendBurstDtmf(String dtmfString, int on, int off, Message result) { argument
/frameworks/rs/cpp/
H A DAllocation.cpp227 void Allocation::copy1DRangeFromUnchecked(uint32_t off, size_t count, const void *data, argument
234 if((off + count) > mCurrentCount) {
235 ALOGE("Overflow, Available count %zu, got %zu at offset %zu.", mCurrentCount, count, off);
243 rsAllocation1DData(mRS->mContext, getIDSafe(), off, mSelectedLOD, count, data, dataLen);
246 void Allocation::copy1DRangeFrom(uint32_t off, size_t count, const int32_t *d, size_t dataLen) { argument
248 copy1DRangeFromUnchecked(off, count, d, dataLen);
251 void Allocation::copy1DRangeFrom(uint32_t off, size_t count, const int16_t *d, size_t dataLen) { argument
253 copy1DRangeFromUnchecked(off, count, d, dataLen);
256 void Allocation::copy1DRangeFrom(uint32_t off, size_t count, const int8_t *d, size_t dataLen) { argument
258 copy1DRangeFromUnchecked(off, coun
261 copy1DRangeFrom(uint32_t off, size_t count, const float *d, size_t dataLen) argument
266 copy1DRangeFrom(uint32_t off, size_t count, const Allocation *data, uint32_t dataOff) argument
[all...]
H A DAllocation.h89 void copy1DRangeFromUnchecked(uint32_t off, size_t count, const void *data, size_t dataLen);
90 void copy1DRangeFrom(uint32_t off, size_t count, const int32_t* d, size_t dataLen);
91 void copy1DRangeFrom(uint32_t off, size_t count, const int16_t* d, size_t dataLen);
92 void copy1DRangeFrom(uint32_t off, size_t count, const int8_t* d, size_t dataLen);
93 void copy1DRangeFrom(uint32_t off, size_t count, const float* d, size_t dataLen);
94 void copy1DRangeFrom(uint32_t off, size_t count, const Allocation *data, uint32_t dataOff);
/frameworks/support/renderscript/v8/java/src/android/support/v8/renderscript/
H A DAllocation.java512 private void data1DChecks(int off, int count, int len, int dataSize) { argument
514 if(off < 0) {
520 if((off + count) > mCurrentCount) {
522 ", got " + count + " at offset " + off + ".");
548 * @param off The offset of the first element to be copied.
552 public void copy1DRangeFromUnchecked(int off, int count, int[] d) { argument
554 data1DChecks(off, count, d.length * 4, dataSize);
555 mRS.nAllocationData1D(getIDSafe(), off, mSelectedLOD, count, d, dataSize);
562 * @param off The offset of the first element to be copied.
566 public void copy1DRangeFromUnchecked(int off, in argument
580 copy1DRangeFromUnchecked(int off, int count, byte[] d) argument
594 copy1DRangeFromUnchecked(int off, int count, float[] d) argument
609 copy1DRangeFrom(int off, int count, int[] d) argument
623 copy1DRangeFrom(int off, int count, short[] d) argument
637 copy1DRangeFrom(int off, int count, byte[] d) argument
651 copy1DRangeFrom(int off, int count, float[] d) argument
665 copy1DRangeFrom(int off, int count, Allocation data, int dataOff) argument
[all...]
H A DAllocationAdapter.java53 public void subData1D(int off, int count, int[] d) { argument
54 super.copy1DRangeFrom(off, count, d);
59 public void subData1D(int off, int count, short[] d) { argument
60 super.copy1DRangeFrom(off, count, d);
65 public void subData1D(int off, int count, byte[] d) { argument
66 super.copy1DRangeFrom(off, count, d);
71 public void subData1D(int off, int count, float[] d) { argument
72 super.copy1DRangeFrom(off, count, d);
H A DRenderScript.java237 native void rsnAllocationData1D(int con, int id, int off, int mip, int count, int[] d, int sizeBytes); argument
238 synchronized void nAllocationData1D(int id, int off, int mip, int count, int[] d, int sizeBytes) { argument
240 rsnAllocationData1D(mContext, id, off, mip, count, d, sizeBytes);
242 native void rsnAllocationData1D(int con, int id, int off, int mip, int count, short[] d, int sizeBytes); argument
243 synchronized void nAllocationData1D(int id, int off, int mip, int count, short[] d, int sizeBytes) { argument
245 rsnAllocationData1D(mContext, id, off, mip, count, d, sizeBytes);
247 native void rsnAllocationData1D(int con, int id, int off, int mip, int count, byte[] d, int sizeBytes); argument
248 synchronized void nAllocationData1D(int id, int off, int mip, int count, byte[] d, int sizeBytes) { argument
250 rsnAllocationData1D(mContext, id, off, mip, count, d, sizeBytes);
252 native void rsnAllocationData1D(int con, int id, int off, in argument
253 nAllocationData1D(int id, int off, int mip, int count, float[] d, int sizeBytes) argument
[all...]

Completed in 170 milliseconds

123