/external/valgrind/memcheck/tests/ |
wcs.vgtest | 1 prog: wcs
|
Makefile.am | 306 wcs.vgtest wcs.stderr.exp wcs.stdout.exp \ 400 wcs \
|
/external/google-breakpad/src/common/windows/ |
string_utils.cc | 48 bool WindowsStringUtils::safe_mbstowcs(const string &mbs, wstring *wcs) { 49 assert(wcs); 86 *wcs = &wcs_v[0]; 91 bool WindowsStringUtils::safe_wcstombs(const wstring &wcs, string *mbs) { 99 if ((err = wcstombs_s(&mbs_length, NULL, 0, wcs.c_str(), _TRUNCATE)) != 0) { 104 if ((mbs_length = wcstombs(NULL, wcs.c_str(), wcs.length())) == (size_t)-1) { 116 if ((err = wcstombs_s(NULL, &mbs_v[0], mbs_length, wcs.c_str(), 121 if (wcstombs(&mbs_v[0], wcs.c_str(), wcs.length()) == (size_t)-1) [all...] |
string_utils-inl.h | 87 // without setting wcs. 88 static bool safe_mbstowcs(const string &mbs, wstring *wcs); 91 static bool safe_wcstombs(const wstring &wcs, string *mbs);
|
/prebuilts/ndk/r16/sources/android/support/src/ |
swprintf.cpp | 38 int swprintf(wchar_t* wcs, size_t maxlen, const wchar_t* format, ...) { 41 int result = vswprintf(wcs, maxlen, format, ap); 46 int vswprintf(wchar_t* wcs, size_t maxlen, const wchar_t* fmt, va_list ap) { 66 if (mbsrtowcs(wcs, &mbsp, maxlen, &mbstate) == MBS_FAILURE) { 72 int result = wcslen(wcs);
|
wcstox.cpp | 40 static T wcstox(T (*func)(const char*, char**, int), const wchar_t* wcs, 46 *wcs_end = const_cast<wchar_t*>(wcs); 49 const size_t max_mb_len = wcslen(wcs) * 4 + 1; 51 const wchar_t* s = wcs; 84 *wcs_end = const_cast<wchar_t*>(wcs) + converted_wlen;
|
/external/scapy/scapy/layers/tls/ |
record_tls13.py | 177 wcs = self.tls_session.wcs 178 write_seq_num = struct.pack("!Q", wcs.seq_num) 179 wcs.seq_num += 1 180 return wcs.cipher.auth_encrypt(s, b"", write_seq_num) 200 # we're working out-of-context (and we need to keep the default wcs). 203 self.tls_session.wcs = self.tls_session.pwcs
|
record_sslv2.py | 161 self.tls_session.wcs = self.tls_session.pwcs 185 secret = self.tls_session.wcs.cipher.key 189 write_seq_num = struct.pack("!I", self.tls_session.wcs.seq_num) 190 alg = self.tls_session.wcs.hash 196 block_size = self.tls_session.wcs.cipher.block_size 213 if self.pad == b"" and self.tls_session.wcs.cipher.type == 'block': 255 # we're working out-of-context (and we need to keep the default wcs). 259 self.tls_session.wcs = self.tls_session.pwcs 270 self.tls_session.wcs.seq_num += 1
|
record.py | 507 self.tls_session.wcs = self.tls_session.pwcs 536 alg = self.tls_session.wcs.compression 544 write_seq_num = struct.pack("!Q", self.tls_session.wcs.seq_num) 545 self.tls_session.wcs.seq_num += 1 550 return self.tls_session.wcs.cipher.auth_encrypt(s, add_data, 560 It would fail with an AEAD cipher, because wcs.hmac would be None. 563 write_seq_num = struct.pack("!Q", self.tls_session.wcs.seq_num) 564 self.tls_session.wcs.seq_num += 1 566 alg = self.tls_session.wcs.hmac 587 block_size = self.tls_session.wcs.cipher.block_siz [all...] |
session.py | 310 wcs=None, rcs=None): 328 if wcs is None: 329 # Instantiate wcs with dummy values. 330 self.wcs = writeConnState(connection_end=connection_end) 331 self.wcs.derive_keys() 333 self.wcs = wcs 343 # of various TLS packets. They get committed to self.wcs/self.rcs 462 if hasattr(self, "wcs") and self.wcs [all...] |
basefields.py | 151 return pkt.tls_session.wcs.mac_len
|
/tools/test/connectivity/acts/framework/acts/controllers/ |
arduino_wifi_dongle.py | 70 wcs = [] 77 wcs = get_instances(configs) 80 wcs = get_instances_with_configs(configs) 82 return wcs 84 def destroy(wcs): 85 for wc in wcs: 89 wcs = [] 91 wcs.append(ArduinoWifiDongle(s)) 92 return wcs 95 wcs = [ [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
uastrfnc.h | 25 size_t ualstrlenW(UNALIGNED const WCHAR *wcs);
|
/device/linaro/bootloader/edk2/StdLib/LibC/Locale/ |
wcsftime.c | 58 wcsftime(wchar_t *wcs, size_t maxsize,
95 n = mbstowcs(wcs, dstp, maxsize);
|
multibyte_Utf8.c | 236 If WCS char < 0x00000080 One Byte
237 Else if WCS char < 0x0000D800 Two Bytes
281 If WCS char < 0x00000080 One Byte
282 Else if WCS char < 0x00000800 Two Bytes
283 Else if WCS char < 0x00010000 Three Bytes
[all...] |
/external/icu/icu4c/source/test/perf/ustrperf/ |
stringperf.h | 252 wchar_t* wcs; local 257 wcs = u_strToWCS(ws, wcap, &wl, lines_[i].name, lines_[i].len, &err); 258 memcpy(wlines_[i].name, wcs, wl * sizeof(wchar_t)); 262 wcs = u_strToWCS(ws, wcap, &wl, lines_[i].name, lines_[i].len-1, &err); 263 memcpy(wlines_[i].name, wcs, wl*sizeof(wchar_t));
|
/external/scapy/test/ |
sslv2.uts | 114 s.wcs.cipher.key == b'\xf4\xae\x00\x03kB>\x06\xba[\xd7\xea,\x08\xc2\xae' 176 t2.tls_session.rcs.seq_num == 6 and t2.tls_session.wcs.seq_num == 4 188 assert(t1.tls_session.rcs.seq_num == 6 and t1.tls_session.wcs.seq_num == 4) 194 assert(t2.tls_session.rcs.seq_num == 6 and t2.tls_session.wcs.seq_num == 4) 218 assert(t.tls_session.wcs.seq_num == 2) 272 assert(isinstance(s.wcs.ciphersuite, SSL_CK_DES_192_EDE3_CBC_WITH_MD5)) 274 s.wcs.cipher.iv == b'\x01'*8
|
/device/linaro/bootloader/edk2/StdLib/LibC/Uefi/Devices/Console/ |
daConsole.c | 67 /** Convert string from MBCS to WCS and translate \n to \r\n.
73 @param[out] dest WCS buffer to receive the converted string.
74 @param[in] buf MBCS string to convert to WCS.
160 /* Write a NULL terminated WCS to the EFI console.
167 @param[in] Buffer The WCS string to be displayed
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/ |
wchar.h | 217 /* Find the first occurrence of WC in WCS. */ 227 /* Find the last occurrence of WC in WCS. */ 247 /* Return the length of the initial segmet of WCS which 251 /* Return the length of the initial segmet of WCS which 255 /* Find the first occurrence in WCS of any character in ACCEPT. */ 278 /* Divide WCS into tokens separated by characters in DELIM. */
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/ |
SupplicantStateTracker.java | 99 public SupplicantStateTracker(Context c, WifiConfigManager wcs, 104 mWifiConfigManager = wcs;
|
/packages/apps/UnifiedEmail/src/org/apache/commons/io/ |
FilenameUtils.java | 1151 String[] wcs = splitOnTokens(wildcardMatcher); local [all...] |
/external/icu/icu4c/source/test/cintltst/ |
custrtrn.c | 1392 wchar_t *wcs; local [all...] |
/external/libchrome/base/strings/ |
string16.h | 58 // are based on the wide character functions of similar names ("w" or "wcs"
|
/external/icu/icu4c/source/common/ |
ustr_wcs.cpp | 160 /* now convert the mbs to wcs */
|
/device/linaro/bootloader/edk2/StdLib/LibC/Uefi/Devices/UefiShell/ |
daShell.c | 173 // Convert name from MBCS to WCS and change '/' to '\\'
658 // Normalize path and convert to WCS.
|