Searched refs:in (Results 1 - 25 of 378) sorted by relevance

1234567891011>>

/frameworks/base/telephony/java/com/android/internal/telephony/
H A DISms.aidl5 ** you may not use this file except in compliance with the License.
10 ** Unless required by applicable law or agreed to in writing, software
56 in byte[] pdu);
67 boolean copyMessageToIccEf(int status, in byte[] pdu, in byte[] smsc);
87 * which cause smaller number of SMS to be sent in checking period.
90 * raw pdu of the status report is in the extended data ("pdu").
92 void sendData(in String destAddr, in String scAddr, in in
[all...]
/frameworks/base/core/java/android/speech/
H A DIRecognitionListener.aidl5 * 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 void onReadyForSpeech(in Bundle params);
41 * The sound level in the audio stream has changed.
45 void onRmsChanged(in float rmsdB);
52 void onBufferReceived(in byte[] buffer);
62 * @param error code is defined in {@link SpeechRecognizer}
64 void onError(in int error);
71 void onResults(in Bundle results);
78 void onPartialResults(in Bundl
[all...]
H A DIRecognitionService.aidl5 * 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 startListening(in Intent recognizerIntent, in IRecognitionListener listener);
52 void stopListening(in IRecognitionListener listener);
59 void cancel(in IRecognitionListener listener);
/frameworks/base/core/java/android/speech/tts/
H A DITts.aidl5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
30 int setSpeechRate(in String callingApp, in int speechRate);
32 int setPitch(in String callingApp, in int pitch);
34 int speak(in String callingApp, in String text, in int queueMode, in Strin
[all...]
/frameworks/base/core/java/android/bluetooth/
H A DIBluetoothA2dp.aidl5 * 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 boolean connectSink(in BluetoothDevice device);
28 boolean disconnectSink(in BluetoothDevice device);
29 boolean suspendSink(in BluetoothDevice device);
30 boolean resumeSink(in BluetoothDevice device);
33 int getSinkState(in BluetoothDevice device);
34 boolean setSinkPriority(in BluetoothDevice device, int priority);
35 int getSinkPriority(in BluetoothDevice device);
H A DIBluetooth.aidl5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
36 boolean setName(in String name);
48 boolean createBond(in String address);
49 boolean cancelBondProcess(in String address);
50 boolean removeBond(in String address);
52 int getBondState(in String address);
54 String getRemoteName(in String address);
55 int getRemoteClass(in String address);
56 ParcelUuid[] getRemoteUuids(in Strin
[all...]
H A DIBluetoothHeadset.aidl5 * 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 connectHeadset(in BluetoothDevice device);
31 boolean isConnected(in BluetoothDevice device);
34 boolean setPriority(in BluetoothDevice device, int priority);
35 int getPriority(in BluetoothDevice device);
/frameworks/base/core/java/android/accounts/
H A DIAccountAuthenticator.aidl5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
31 void addAccount(in IAccountAuthenticatorResponse response, String accountType,
32 String authTokenType, in String[] requiredFeatures, in Bundle options);
37 void confirmCredentials(in IAccountAuthenticatorResponse response, in Account account,
38 in Bundle options);
43 void getAuthToken(in IAccountAuthenticatorResponse response, in Accoun
[all...]
H A DIAccountManager.aidl5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
30 String getPassword(in Account account);
31 String getUserData(in Account account, String key);
34 void hasFeatures(in IAccountManagerResponse response, in Account account, in String[] features);
35 void getAccountsByFeatures(in IAccountManagerResponse response, String accountType, in String[] features);
36 boolean addAccount(in Accoun
[all...]
/frameworks/base/core/java/android/app/
H A DIInstrumentationWatcher.aidl6 ** you may not use this file except in compliance with the License.
11 ** Unless required by applicable law or agreed to in writing, software
26 void instrumentationStatus(in ComponentName name, int resultCode,
27 in Bundle results);
28 void instrumentationFinished(in ComponentName name, int resultCode,
29 in Bundle results);
H A DIBackupAgent.aidl5 * 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);
H A DIAlarmManager.aidl6 ** you may not use this file except in compliance with the License.
11 ** Unless required by applicable law or agreed to in writing, software
27 void set(int type, long triggerAtTime, in PendingIntent operation);
28 void setRepeating(int type, long triggerAtTime, long interval, in PendingIntent operation);
29 void setInexactRepeating(int type, long triggerAtTime, long interval, in PendingIntent operation);
32 void remove(in PendingIntent operation);
/frameworks/base/location/java/android/location/
H A DIGpsStatusListener.aidl5 * 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 void onSvStatusChanged(int svCount, in int[] prns, in float[] snrs,
30 in float[] elevations, in float[] azimuths,
/frameworks/base/media/libstagefright/codecs/aacdec/
H A Dshellsort.h5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
56 ; Declare variables used in this module but defined elsewhere
77 void shellsort(Int32 in[], Int32 n);
H A Dshellsort.cpp5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
87 ; Declare functions defined elsewhere and referenced in this module
92 ; Declare variables used in this module but defined elsewhere
100 void shellsort(Int32 in[], Int32 n) argument
119 v = in[i-1];
121 while (in[j-inc-1] > v)
123 in[j-1] = in[j-inc-1];
130 in[
[all...]
/frameworks/base/core/java/android/app/admin/
H A DIDevicePolicyManager.aidl6 ** 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);
29 int getPasswordQuality(in ComponentName who);
31 void setPasswordMinimumLength(in ComponentName who, int length);
32 int getPasswordMinimumLength(in ComponentName who);
37 void setMaximumFailedPasswordsForWipe(in ComponentName admin, int num);
38 int getMaximumFailedPasswordsForWipe(in ComponentName admin);
42 void setMaximumTimeToLock(in ComponentName who, long timeMs);
43 long getMaximumTimeToLock(in ComponentNam
[all...]
/frameworks/base/opengl/libs/tools/
H A Dgenfiles6 # you may not use this file except in compliance with the License.
11 # Unless required by applicable law or agreed to in writing, software
17 ./glapigen ../../include/GLES/gl.h > ../GLES_CM/gl_api.in
18 ./glapigen ../../include/GLES/glext.h > ../GLES_CM/glext_api.in
19 ./glapigen ../../include/GLES2/gl2.h > ../GLES2/gl2_api.in
20 ./glapigen ../../include/GLES2/gl2ext.h > ../GLES2/gl2ext_api.in
22 ./glentrygen ../../include/GLES/gl.h > /tmp/gl_entries.in
23 ./glentrygen ../../include/GLES/glext.h > /tmp/glext_entries.in
24 ./glentrygen ../../include/GLES2/gl2.h > /tmp/gl2_entries.in
25 ./glentrygen ../../include/GLES2/gl2ext.h > /tmp/gl2ext_entries.in
[all...]
/frameworks/base/libs/rs/java/ImageProcessing/res/raw/
H A Dthreshold.rs37 struct color_s *in = (struct color_s *) InPixel;
45 float luminance = 0.2125f * in->r +
46 0.7154f * in->g +
47 0.0721f * in->b;
49 *out = *in;
51 *((int *)out) = *((int *)in) & 0xff000000;
54 in++;
/frameworks/base/core/java/android/content/
H A DIContentService.aidl5 * 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 void registerContentObserver(in Uri uri, boolean notifyForDescendentsn,
37 void notifyChange(in Uri uri, IContentObserver observer,
40 void requestSync(in Account account, String authority, in Bundle extras);
41 void cancelSync(in Account account, String authority);
48 boolean getSyncAutomatically(in Account account, String providerName);
56 void setSyncAutomatically(in Account account, String providerName, boolean sync);
61 * @return the frequency of the periodic sync in second
[all...]
/frameworks/base/core/java/com/android/internal/view/
H A DIInputMethodManager.aidl5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
34 void addClient(in IInputMethodClient client,
35 in IInputContext inputContext, int uid, int pid);
36 void removeClient(in IInputMethodClient client);
38 InputBindResult startInput(in IInputMethodClient client,
39 IInputContext inputContext, in EditorInfo attribute,
41 void finishInput(in IInputMethodClient client);
42 boolean showSoftInput(in IInputMethodClient client, int flags,
43 in ResultReceive
[all...]
/frameworks/base/tools/localize/
H A DConfiguration.cpp50 split_locale(const string& in, string* language, string* region) argument
52 const int len = in.length();
54 if (isalpha(in[0]) && isalpha(in[1])) {
55 *language = in;
63 if (isalpha(in[0]) && isalpha(in[1]) && (in[2] == '_' || in[2] == '-')
64 && isalpha(in[
[all...]
/frameworks/base/core/java/android/content/pm/
H A DIPackageDataObserver.aidl6 ** you may not use this file except in compliance with the License.
11 ** Unless required by applicable law or agreed to in writing, software
27 void onRemoveCompleted(in String packageName, boolean succeeded);
H A DIPackageDeleteObserver.aidl6 ** you may not use this file except in compliance with the License.
11 ** Unless required by applicable law or agreed to in writing, software
26 void packageDeleted(in boolean succeeded);
H A DIPackageInstallObserver.aidl6 ** you may not use this file except in compliance with the License.
11 ** Unless required by applicable law or agreed to in writing, software
25 void packageInstalled(in String packageName, int returnCode);
H A DIPackageMoveObserver.aidl6 ** you may not use this file except in compliance with the License.
11 ** Unless required by applicable law or agreed to in writing, software
25 void packageMoved(in String packageName, int returnCode);

Completed in 213 milliseconds

1234567891011>>