Home
last modified time | relevance | path

Searched defs:s (Results 1 – 25 of 479) sorted by relevance

12345678910>>...20

/packages/modules/adb/
Dsockets.cpp80 void install_local_socket(asocket* s) { in install_local_socket()
93 void remove_socket(asocket* s) { in remove_socket()
121 static SocketFlushResult local_socket_flush_incoming(asocket* s) { in local_socket_flush_incoming()
152 static bool local_socket_flush_outgoing(asocket* s) { in local_socket_flush_outgoing()
221 static int local_socket_enqueue(asocket* s, apacket::payload_type data) { in local_socket_enqueue()
239 static void local_socket_ready(asocket* s) { in local_socket_ready()
297 static void local_socket_destroy(asocket* s) { in local_socket_destroy()
313 static void local_socket_close(asocket* s) { in local_socket_close()
352 asocket* s = reinterpret_cast<asocket*>(_s); in local_socket_event_func() local
390 asocket* s = new asocket(); in create_local_socket() local
[all …]
Dadb_io_test.cpp100 std::string s; in POSIX_TEST() local
117 std::string s; in POSIX_TEST() local
140 std::string s; in POSIX_TEST() local
153 std::string s; in POSIX_TEST() local
/packages/modules/Connectivity/tests/common/java/android/net/
DStaticIpConfigurationTest.java57 private void checkEmpty(StaticIpConfiguration s) { in checkEmpty()
65 StaticIpConfiguration s = new StaticIpConfiguration(); in makeTestObject() local
77 StaticIpConfiguration s = new StaticIpConfiguration(); in testConstructor() local
98 StaticIpConfiguration s = new StaticIpConfiguration(); in testHashCodeAndEquals() local
147 StaticIpConfiguration s = new StaticIpConfiguration(); in testToLinkProperties() local
200 private StaticIpConfiguration passThroughParcel(StaticIpConfiguration s) { in passThroughParcel()
216 StaticIpConfiguration s = makeTestObject(); in testParceling() local
226 final StaticIpConfiguration s = new StaticIpConfiguration.Builder() in testBuilder() local
246 final StaticIpConfiguration s = new StaticIpConfiguration((StaticIpConfiguration) null); in testAddDnsServers() local
262 final StaticIpConfiguration s = makeTestObject(); in testGetRoutes() local
/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/
DAbstractSessionStateMachine.java168 protected void log(String s) { in log()
173 protected void logd(String s) { in logd()
177 protected void logd(String s, Throwable e) { in logd()
182 protected void logv(String s) { in logv()
187 protected void logi(String s) { in logi()
191 protected void logi(String s, Throwable cause) { in logi()
196 protected void logw(String s) { in logw()
201 protected void loge(String s) { in loge()
206 protected void loge(String s, Throwable e) { in loge()
210 protected void logWtf(String s) { in logWtf()
[all …]
/packages/apps/Settings/tests/legacy_unit/src/com/android/settings/accounts/
DAuthenticator.java33 public Bundle editProperties(AccountAuthenticatorResponse r, String s) { in editProperties()
38 public Bundle addAccount(AccountAuthenticatorResponse r, String s, String s2, String[] strings, in addAccount()
53 public Bundle getAuthToken(AccountAuthenticatorResponse r, Account account, String s, in getAuthToken()
59 public String getAuthTokenLabel(String s) { in getAuthTokenLabel()
64 public Bundle updateCredentials(AccountAuthenticatorResponse r, Account account, String s, in updateCredentials()
/packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/
DAuthenticator.java37 public Bundle editProperties(AccountAuthenticatorResponse r, String s) { in editProperties()
44 public Bundle addAccount(AccountAuthenticatorResponse r, String s, String s2, String[] strings, in addAccount()
61 public Bundle getAuthToken(AccountAuthenticatorResponse r, Account account, String s, in getAuthToken()
69 public String getAuthTokenLabel(String s) { in getAuthTokenLabel()
76 public Bundle updateCredentials(AccountAuthenticatorResponse r, Account account, String s, in updateCredentials()
/packages/modules/CellBroadcastService/src/com/android/cellbroadcastservice/
DWakeLockStateMachine.java247 protected void log(String s) { in log()
248 Log.d(getName(), s); in log() local
256 protected void loge(String s) { in loge()
257 Log.e(getName(), s); in loge() local
266 protected void loge(String s, Throwable e) { in loge()
267 Log.e(getName(), s, e); in loge() local
/packages/modules/adb/daemon/
Dfile_sync_service.cpp143 static bool do_lstat_v1(int s, const char* path) { in do_lstat_v1()
155 static bool do_stat_v2(int s, uint32_t id, const char* path) { in do_stat_v2()
187 static bool do_list(int s, const char* path) { in do_list()
247 static bool do_list_v1(int s, const char* path) { in do_list_v1()
251 static bool do_list_v2(int s, const char* path) { in do_list_v2()
271 static bool handle_send_file_data(borrowed_fd s, unique_fd fd, uint32_t* timestamp, in handle_send_file_data()
347 static bool handle_send_file(borrowed_fd s, const char* path, uint32_t* timestamp, uid_t uid, in handle_send_file()
454 static bool handle_send_link(int s, const std::string& path, uint32_t* timestamp, bool dry_run, in handle_send_link()
507 static bool send_impl(int s, const std::string& path, mode_t mode, CompressionType compression, in send_impl()
554 static bool do_send_v1(int s, const std::string& spec, std::vector<char>& buffer) { in do_send_v1()
[all …]
/packages/apps/Dialer/java/com/android/voicemail/impl/mail/internet/
DMimeUtility.java53 public static String unfold(String s) { in unfold()
65 public static String decode(String s) { in decode()
72 public static String unfoldAndDecode(String s) { in unfoldAndDecode()
79 public static String foldAndEncode(String s) { in foldAndEncode()
93 public static String foldAndEncode2(String s, int usedCharacters) { in foldAndEncode2()
119 public static String fold(String s, int usedCharacters) { in fold()
155 private static int indexOfWsp(String s, int fromIndex) { in indexOfWsp()
/packages/modules/Connectivity/tests/cts/net/src/android/net/ipv6/cts/
DPingTest.java90 FileDescriptor s = Os.socket(AF_INET6, SOCK_DGRAM, IPPROTO_ICMPV6); in createPingSocket() local
98 private void sendPing(FileDescriptor s, in sendPing()
111 private void checkResponse(FileDescriptor s, InetAddress dest, in checkResponse()
162 FileDescriptor s = createPingSocket(); in testLoopbackPing() local
/packages/apps/Test/connectivity/sl4n/rapidjson/test/perftest/
Drapidjsontest.cpp68 InsituStringStream s(temp_); in TEST_F() local
78 InsituStringStream s(temp_); in TEST_F() local
87 StringStream s(json_); in TEST_F() local
96 StringStream s(json_); in TEST_F() local
105 StringStream s(json_); in TEST_F() local
115 InsituStringStream s(temp_); in TEST_F() local
124 StringStream s(json_); in TEST_F() local
261 NullStream s; in TEST_F() local
271 StringBuffer s(0, 1024 * 1024); in TEST_F() local
283 StringBuffer s(0, 2048 * 1024); in TEST_F() local
[all …]
/packages/apps/TvSettings/Settings/tests/robotests/src/com/android/tv/settings/connectivity/
DWifiConfigHelperTest.java58 String s = mConfig.SSID.substring(1, mConfig.SSID.length() - 1); in testSetConfigSsid() local
83 private boolean isDoubleQuoted(String s) { in isDoubleQuoted()
/packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
Dencodedstreamtest.cpp88 StringStream s(json_); in TestEncodedInputStream() local
106 StringStream s(json_); in TestEncodedInputStream() local
129 StringStream s(json_); in TestAutoUTFInputStream() local
147 StringStream s(json_); in TestAutoUTFInputStream() local
170 StringStream s(json_); in TestEncodedOutputStream() local
185 StringStream s(json_); in TestEncodedOutputStream() local
204 StringStream s(json_); in TestAutoUTFOutputStream() local
219 StringStream s(json_); in TestAutoUTFOutputStream() local
Dprettywritertest.cpp46 StringStream s(kJson); in TEST() local
56 StringStream s(kJson); in TEST() local
124 StringStream s(kJson); in TEST() local
146 StringStream s(kJson); in TEST() local
/packages/modules/GeoTZ/s2storage/src/readonly/java/com/android/timezone/location/storage/util/
DVisitor.java33 public VisitException(String s) { in VisitException()
37 public VisitException(String s, Throwable throwable) { in VisitException()
/packages/apps/Launcher3/src/com/android/launcher3/testing/
DTestInformationProvider.java34 public int update(Uri uri, ContentValues contentValues, String s, String[] strings) { in update()
39 public int delete(Uri uri, String s, String[] strings) { in delete()
54 public Cursor query(Uri uri, String[] strings, String s, String[] strings1, String s1) { in query()
/packages/apps/Settings/src/com/android/settings/bluetooth/
DBluetoothNameDialogFragment.java172 public void afterTextChanged(Editable s) { in afterTextChanged()
185 public void onConfigurationChanged(Configuration newConfig, CharSequence s) { in onConfigurationChanged()
193 public void beforeTextChanged(CharSequence s, int start, int count, int after) { in beforeTextChanged()
197 public void onTextChanged(CharSequence s, int start, int before, int count) { in onTextChanged()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/
DContactAggregatorHelper.java53 Set<Integer> s = accounts.get(acctId); in mergeComponentsWithDisjointAccounts() local
65 final Set<Integer> s = accounts.get(accountId); in mergeComponentsWithDisjointAccounts() local
79 final Set<Integer> s = accounts.get(accountId); in mergeComponentsWithDisjointAccounts() local
/packages/apps/Car/Settings/src/com/android/car/settings/common/
DValidatedEditTextPreferenceDialogFragment.java87 public void onTextChanged(CharSequence s, int start, int before, int count) { in onTextChanged()
91 public void beforeTextChanged(CharSequence s, int start, int before, int count) { in beforeTextChanged()
95 public void afterTextChanged(Editable s) { in afterTextChanged()
/packages/apps/Gallery2/jni_jpegstream/src/
Djpeg_hook.cpp112 SourceManager *s = reinterpret_cast<SourceManager*>(cinfo->src); in Mgr_init_source_fcn() local
171 SourceManager *s = reinterpret_cast<SourceManager*>(cinfo->src); in MakeSrc() local
186 SourceManager* s = reinterpret_cast<SourceManager*>(cinfo->src); in UpdateSrcEnv() local
192 SourceManager *s = reinterpret_cast<SourceManager*>(cinfo->src); in CleanSrc() local
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
DFilterStraightenRepresentation.java49 public FilterStraightenRepresentation(FilterStraightenRepresentation s) { in FilterStraightenRepresentation() method in FilterStraightenRepresentation
135 float s = (float) reader.nextDouble(); in deSerializeRepresentation() local
150 private boolean rangeCheck(double s) { in rangeCheck()
/packages/apps/Dialer/java/com/android/dialer/callcomposer/
DMessageComposerFragment.java101 public void beforeTextChanged(CharSequence s, int start, int count, int after) {} in beforeTextChanged()
104 public void onTextChanged(CharSequence s, int start, int before, int count) {} in onTextChanged()
107 public void afterTextChanged(Editable s) { in afterTextChanged()
/packages/modules/Wifi/service/java/com/android/server/wifi/hotspot2/
DUtils.java46 public static long parseMac(String s) { in parseMac()
133 public static String toUnicodeEscapedString(String s) { in toUnicodeEscapedString()
206 static boolean isDecimal(String s) { in isDecimal()
255 long s = time - tmp * 60L; in toHMS() local
279 public static String unquote(String s) { in unquote()
/packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
Ddb_utilities_linalg.cpp33 double s,temp; in db_CholeskyDecomp6x6() local
83 double s; in db_CholeskyDecompSeparateDiagonal() local
105 double s; in db_CholeskyBacksub() local
125 double s,temp; in db_CholeskyDecomp3x3SeparateDiagonal() local
/packages/apps/Dialer/java/com/android/voicemail/impl/mail/utils/
DUtility.java46 public static byte[] toAscii(String s) { in toAscii()
55 private static byte[] encode(Charset charset, String s) { in encode()

12345678910>>...20