/frameworks/base/core/java/android/app/admin/ |
IDevicePolicyManager.aidl | 6 ** you may not use this file except in compliance with the License. 11 ** Unless required by applicable law or agreed to in writing, software 28 void setPasswordQuality(in ComponentName who, int quality, int userHandle); 29 int getPasswordQuality(in ComponentName who, int userHandle); 31 void setPasswordMinimumLength(in ComponentName who, int length, int userHandle); 32 int getPasswordMinimumLength(in ComponentName who, int userHandle); 34 void setPasswordMinimumUpperCase(in ComponentName who, int length, int userHandle); 35 int getPasswordMinimumUpperCase(in ComponentName who, int userHandle); 37 void setPasswordMinimumLowerCase(in ComponentName who, int length, int userHandle); 38 int getPasswordMinimumLowerCase(in ComponentName who, int userHandle) [all...] |
/frameworks/base/core/java/com/android/internal/view/ |
IInputMethodManager.aidl | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 37 List<InputMethodSubtype> getEnabledInputMethodSubtypeList(in String imiId, 43 void addClient(in IInputMethodClient client, 44 in IInputContext inputContext, int uid, int pid); 45 void removeClient(in IInputMethodClient client); 47 InputBindResult startInput(in IInputMethodClient client, 48 IInputContext inputContext, in EditorInfo attribute, int controlFlags); 49 void finishInput(in IInputMethodClient client); 50 boolean showSoftInput(in IInputMethodClient client, int flags [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/ |
get_time.pass.cpp | 41 const char in[] = "0:0:0"; local 44 I i = f.get_time(I(in), I(in+sizeof(in)-1), ios, err, &t); 45 assert(i.base() == in+sizeof(in)-1); 52 const char in[] = "23:59:60"; local 55 I i = f.get_time(I(in), I(in+sizeof(in)-1), ios, err, &t) 63 const char in[] = "24:59:60"; local 74 const char in[] = "23:60:60"; local 85 const char in[] = "23:59:61"; local 96 const char in[] = "2:43:221"; local 107 const char in[] = "2.43:221"; local [all...] |
get_weekday.pass.cpp | 41 const char in[] = "Sun"; local 44 I i = f.get_weekday(I(in), I(in+sizeof(in)-1), ios, err, &t); 45 assert(i.base() == in+3); 50 const char in[] = "Suny"; local 53 I i = f.get_weekday(I(in), I(in+sizeof(in)-1), ios, err, &t); 54 assert(i.base() == in+3) 59 const char in[] = "Sund"; local 68 const char in[] = "sun"; local 77 const char in[] = "sunday"; local 86 const char in[] = "Mon"; local 95 const char in[] = "Mony"; local 104 const char in[] = "Mond"; local 113 const char in[] = "mon"; local 122 const char in[] = "monday"; local 131 const char in[] = "Tue"; local 140 const char in[] = "Tuesday"; local 149 const char in[] = "Wed"; local 158 const char in[] = "Wednesday"; local 167 const char in[] = "Thu"; local 176 const char in[] = "Thursday"; local 185 const char in[] = "Fri"; local 194 const char in[] = "Friday"; local 203 const char in[] = "Sat"; local 212 const char in[] = "Saturday"; local [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/paddings/ |
ISO10126d2Padding.java | 44 * add the pad bytes to the passed in block, returning the 48 byte[] in, 51 byte code = (byte)(in.length - inOff); 53 while (inOff < (in.length - 1)) 55 in[inOff] = (byte)random.nextInt(); 59 in[inOff] = code; 65 * return the number of pad bytes present in the block. 67 public int padCount(byte[] in) 70 int count = in[in.length - 1] & 0xff [all...] |
/external/dropbear/libtomcrypt/src/pk/asn1/der/bit/ |
der_decode_bit_string.c | 4 * algorithms in a highly modular and flexible manner. 23 @param in The DER encoded BIT STRING 26 @param outlen [in/out] The number of bits stored 29 int der_decode_bit_string(const unsigned char *in, unsigned long inlen, 34 LTC_ARGCHK(in != NULL); 44 if ((in[0]&0x1F) != 0x03) { 48 /* offset in the data */ 52 if (in[x] & 0x80) { 54 y = in[x++] & 0x7F; 64 dlen = (dlen << 8) | (unsigned long)in[x++] [all...] |
/frameworks/base/core/java/android/content/ |
IContentService.aidl | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 43 void registerContentObserver(in Uri uri, boolean notifyForDescendants, 53 void notifyChange(in Uri uri, IContentObserver observer, 57 void requestSync(in Account account, String authority, in Bundle extras); 58 void sync(in SyncRequest request); 59 void cancelSync(in Account account, String authority); 66 boolean getSyncAutomatically(in Account account, String providerName); 74 void setSyncAutomatically(in Account account, String providerName, boolean sync) [all...] |
/libcore/luni/src/main/java/org/apache/harmony/security/asn1/ |
ASN1Any.java | 6 * (the "License"); you may not use this file except in compliance with 11 * Unless required by applicable law or agreed to in writing, software 72 public Object decode(BerInputStream in) throws IOException { 74 in.readContent(); 76 if (in.isVerify) { 79 return getDecodedObject(in); 86 * @param in BER input stream 89 public Object getDecodedObject(BerInputStream in) throws IOException { 90 byte[] bytesEncoded = new byte[in.offset - in.tagOffset] [all...] |
ASN1Enumerated.java | 6 * (the "License"); you may not use this file except in compliance with 11 * Unless required by applicable law or agreed to in writing, software 63 public Object decode(BerInputStream in) throws IOException { 64 in.readEnumerated(); 66 if (in.isVerify) { 69 return getDecodedObject(in); 77 public Object getDecodedObject(BerInputStream in) throws IOException { 78 return Arrays.copyOfRange(in.buffer, in.contentOffset, in.contentOffset + in.length) [all...] |
ASN1Explicit.java | 6 * (the "License"); you may not use this file except in compliance with 11 * Unless required by applicable law or agreed to in writing, software 62 public Object decode(BerInputStream in) throws IOException { 63 if (constrId != in.tag) { 65 in.tagOffset + "]. Expected tag: " + Integer.toHexString(constrId) + ", " + 66 "but encountered tag " + Integer.toHexString(in.tag)); 68 in.next(); 70 in.content = type.decode(in); 72 if (in.isVerify) [all...] |
ASN1OctetString.java | 6 * (the "License"); you may not use this file except in compliance with 11 * Unless required by applicable law or agreed to in writing, software 61 @Override public Object decode(BerInputStream in) throws IOException { 62 in.readOctetString(); 64 if (in.isVerify) { 67 return getDecodedObject(in); 75 @Override public Object getDecodedObject(BerInputStream in) throws IOException { 76 return Arrays.copyOfRange(in.buffer, in.contentOffset, in.contentOffset + in.length) [all...] |
/packages/apps/UnifiedEmail/src/org/apache/commons/io/input/ |
ProxyInputStream.java | 6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
44 // the proxy is stored in a protected superclass variable named 'in'
53 return in.read();
63 return in.read(bts);
75 return in.read(bts, st, end);
85 return in.skip(ln);
94 return in.available();
102 in.close(); [all...] |
ProxyReader.java | 6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
44 // the proxy is stored in a protected superclass variable named 'in'
53 return in.read();
63 return in.read(chr);
75 return in.read(chr, st, end);
85 return in.skip(ln);
94 return in.ready();
102 in.close(); [all...] |
/sdk/testapps/basicProjectWithAidl/src/com/android/tests/basicprojectwithaidl/ |
Rect.java | 13 public Rect createFromParcel(Parcel in) { 14 return new Rect(in); 25 private Rect(Parcel in) { 26 readFromParcel(in); 36 public void readFromParcel(Parcel in) { 37 left = in.readInt(); 38 top = in.readInt(); 39 right = in.readInt(); 40 bottom = in.readInt();
|
/external/chromium_org/ppapi/api/private/ |
ppb_output_protection_private.idl | 3 * found in the LICENSE file. 51 * In this example, the plugin wants to enforce HDCP for HDMI link. 67 * @pram[in] instance A <code>PP_Instance</code> identifying one instance of 74 PP_Resource Create([in] PP_Instance instance); 80 * @param[in] resource A <code>PP_Resource</code> corresponding to a 88 PP_Bool IsOutputProtection([in] PP_Resource resource); 92 * Clients have to query status periodically in order to detect changes. 94 * @param[in] resource A <code>PP_Resource</code> corresponding to a 100 * @param[in] callback A <code>PP_CompletionCallback</code> to run on 107 [in] PP_Resource resource [all...] |
/external/chromium_org/ppapi/generators/test_cgen/ |
interface.idl | 4 * found in the LICENSE file. 31 int8_t mem1([in] int16_t x, [in] int32_t y); 32 int32_t mem2([in] ist a); 34 int32_t mem4([in] blob_t ptr); 40 int8_t testIface([in] ifaceFoo foo, [in] int32_t y); 41 ifaceFoo createIface([in] str_t name);
|
/external/chromium_org/ppapi/generators/test_version/ |
versions.idl | 3 * found in the LICENSE file. 24 [version=0.0] int32_t Bar([in] int32_t x); 28 [version=2.0] int32_t Bar([in] int32_t x, [in] int32_t y, [in] int32_t z); 58 typedef int32_t callback_t([in] int32_t x, [in, version=2.0] int32_t y); 65 int32_t Bar([in, version=1.0] callback_t cb);
|
/external/guava/guava/src/com/google/common/io/ |
MultiInputStream.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 33 private InputStream in; field in class:MultiInputStream 48 if (in != null) { 50 in.close(); 52 in = null; 63 in = it.next().getInput(); 68 if (in == null) { 71 return in.available(); 79 if (in == null) [all...] |
/frameworks/base/core/java/android/app/ |
IBackupAgent.aidl | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 23 * Interface presented by applications being asked to participate in the 51 void doBackup(in ParcelFileDescriptor oldState, 52 in ParcelFileDescriptor data, 53 in ParcelFileDescriptor newState, 79 void doRestore(in ParcelFileDescriptor data, int appVersionCode, 80 in ParcelFileDescriptor newState, int token, IBackupManager callbackBinder); 99 void doFullBackup(in ParcelFileDescriptor data, int token, IBackupManager callbackBinder); 116 void doRestoreFile(in ParcelFileDescriptor data, long size [all...] |
/frameworks/base/core/java/android/bluetooth/ |
IBluetoothA2dp.aidl | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 28 boolean connect(in BluetoothDevice device); 29 boolean disconnect(in BluetoothDevice device); 31 List<BluetoothDevice> getDevicesMatchingConnectionStates(in int[] states); 32 int getConnectionState(in BluetoothDevice device); 33 boolean setPriority(in BluetoothDevice device, int priority); 34 int getPriority(in BluetoothDevice device); 38 boolean isA2dpPlaying(in BluetoothDevice device);
|
IBluetoothMap.aidl | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 29 boolean connect(in BluetoothDevice device); 30 boolean disconnect(in BluetoothDevice device); 31 boolean isConnected(in BluetoothDevice device); 33 List<BluetoothDevice> getDevicesMatchingConnectionStates(in int[] states); 34 int getConnectionState(in BluetoothDevice device); 35 boolean setPriority(in BluetoothDevice device, int priority); 36 int getPriority(in BluetoothDevice device);
|
/frameworks/base/core/java/android/printservice/ |
IPrintServiceClient.aidl | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 33 PrintJobInfo getPrintJobInfo(in PrintJobId printJobId); 34 boolean setPrintJobState(in PrintJobId printJobId, int state, String error); 35 boolean setPrintJobTag(in PrintJobId printJobId, String tag); 36 oneway void writePrintJobData(in ParcelFileDescriptor fd, in PrintJobId printJobId); 38 void onPrintersAdded(in ParceledListSlice printers); 39 void onPrintersRemoved(in ParceledListSlice printerIds);
|
/frameworks/base/core/java/com/android/internal/backup/ |
IObbBackupService.aidl | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 27 * apps that do not have permission to access external storage in the usual way can still 36 void backupObbs(in String packageName, in ParcelFileDescriptor data, 37 int token, in IBackupManager callbackBinder); 42 void restoreObbFile(in String pkgName, in ParcelFileDescriptor data, 43 long fileSize, int type, in String path, long mode, long mtime, 44 int token, in IBackupManager callbackBinder) [all...] |
/frameworks/opt/net/voip/src/java/android/net/sip/ |
ISipService.aidl | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 28 void open(in SipProfile localProfile); 29 void open3(in SipProfile localProfile, 30 in PendingIntent incomingCallPendingIntent, 31 in ISipSessionListener listener); 32 void close(in String localProfileUri); 38 ISipSession createSession(in SipProfile localProfile, 39 in ISipSessionListener listener);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/locale.ctype.byname/ |
narrow_many.pass.cpp | 30 std::wstring in(L" A\x07.a1\xDA"); 31 std::vector<char> v(in.size()); 33 assert(f.narrow(&in[0], in.data() + in.size(), '*', v.data()) == in.data() + in.size()); 48 std::wstring in(L" A\x07.a1\xDA"); 49 std::vector<char> v(in.size()); 51 assert(f.narrow(&in[0], in.data() + in.size(), '*', v.data()) == in.data() + in.size()) [all...] |