/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/ |
networkconfig.cpp | 462 const char *txt, *pos; local 472 txt = edit->text().toLocal8Bit().constData(); 473 if (strcmp(txt, WPA_GUI_KEY_DATA) == 0) 475 len = strlen(txt); 478 pos = txt; 492 setNetworkParam(network_id, buf, txt, !hex);
|
/external/scapy/scapy/layers/ |
inet.py | [all...] |
/external/tensorflow/tensorflow/python/debug/cli/ |
curses_ui.py | 774 txt = self._command_textbox.gather() 775 return txt.strip() [all...] |
/external/wpa_supplicant_8/wpa_supplicant/ |
eapol_test.c | 92 int level, const char *txt, size_t len) 96 MAC2STR(addr), txt); 98 wpa_printf(MSG_DEBUG, "%s", txt); 459 const char *field_name, *txt = NULL; local 468 &txt); 475 buflen = 100 + os_strlen(txt) + ssid->ssid_len; 481 field_name, ssid->id, txt); 771 /* draft-aboba-radius-rfc2869bis-20.txt, Chap. 2.6.3: [all...] |
ctrl_iface_udp.c | 349 const char *txt, size_t len) 364 priv->sock, &priv->ctrl_dst, level, txt, len); 373 level, txt, len);
|
/external/libmtp/src/ |
ptp.c | 4177 const char *txt; member in struct:__anon29017 4265 const char *txt; member in struct:__anon29018 4318 const char *txt; member in struct:__anon29019 4332 const char *txt; member in struct:__anon29020 4411 const char *txt; member in struct:__anon29021 4922 const char *txt; member in struct:__anon29022 4945 const char *txt; member in struct:__anon29023 4959 const char *txt; member in struct:__anon29024 4982 const char *txt; member in struct:__anon29025 [all...] |
/external/dnsmasq/src/ |
option.c | 139 {"txt-record", 1, 0, 'Y'}, 293 {'Y', ARG_DUP, "name,txt....", gettext_noop("Specify TXT DNS record."), NULL}, 586 static void add_txt(char* name, char* txt) { 587 size_t len = strlen(txt); 591 r->next = daemon->txt; 592 daemon->txt = r; 594 r->txt = opt_malloc(len + 1); 596 *(r->txt) = len; 597 memcpy((r->txt) + 1, txt, len) [all...] |
/art/ |
Android.mk | 598 $(TARGET_OUT)/etc/public.libraries.txt \ 607 # remove debug libraries from public.libraries.txt because golem builds 609 sed -i '/libartd.so/d' $(TARGET_OUT)/etc/public.libraries.txt 610 sed -i '/libdexfiled.so/d' $(TARGET_OUT)/etc/public.libraries.txt 611 sed -i '/libprofiled.so/d' $(TARGET_OUT)/etc/public.libraries.txt 612 sed -i '/libartbased.so/d' $(TARGET_OUT)/etc/public.libraries.txt 734 # m art-boot-image ART_BOOT_IMAGE_EXTRA_ARGS=--dump-init-failures=fails.txt
|
/external/wpa_supplicant_8/src/tls/ |
tlsv1_cred.c | 889 char txt[80]; local 900 asn1_oid_to_str(&oid, txt, sizeof(txt)); 901 wpa_printf(MSG_DEBUG, "PKCS #12: contentType %s", txt); 919 txt); [all...] |
/external/fonttools/Tests/misc/ |
plistlib_test.py | 435 def _strip(txt): 437 "".join(l.strip() for l in tounicode(txt, "utf-8").splitlines()) 438 if txt is not None
|
/external/icu/icu4c/source/tools/gensprep/ |
filterRFC3454.pl | 9 # This tool filters the RFC-3454 txt file for StringPrep tables and creates a table 27 $copyright = "###################\n# This file was generated from RFC 3454 (http://www.ietf.org/rfc/rfc3454.txt)\n# Copyright (C) The Internet Society (2002). All Rights Reserved. \n###################\n\n"; 269 $comment ="# Additional prohibitions from iSCSI profile (rfc3722.txt)\n\n"; 286 $comment ="# Additional prohibitions from XMPP Nodeprep profile (rfc3920.txt)\n\n"; 305 $comment ="# Map table for SASL profile (rfc4013.txt)\n\n"; 362 $comment ="# Map table for LDAP profile (rfc4518.txt)\n\n"; 669 e.g.: filterRFC3454.pl --sourcedir=. --destdir=./output --src-filename=rfc3454.txt --dest-filename=NamePrepProfile.txt --A1 --B1 --B2 --C12 --C22 --C3 --C4 --C5 --C6 --C7 --C8 --C9 --normalize --check-bidi 672 The RFC text can be downloaded from ftp://ftp.rfc-editor.org/in-notes/rfc3454.txt
|
/external/python/cpython2/Lib/idlelib/ |
configHandler.py | 751 txt = str(obj) 753 crc = crc32(txt.encode(encoding='utf-8'), crc) 754 print(txt)
|
/external/syzkaller/dashboard/app/ |
main.go | 29 http.Handle("/x/log.txt", handlerWrapper(handleTextX(textCrashLog))) 33 http.Handle("/x/error.txt", handlerWrapper(handleTextX(textError))) 319 return "log.txt" 321 return "report.txt" 329 return "error.txt" 331 return "text.txt"
|
/external/tensorflow/tensorflow/contrib/makefile/ |
Makefile | 151 $(shell cat $(MAKEFILE_DIR)/proto_text_cc_files.txt) 153 $(shell cat $(MAKEFILE_DIR)/proto_text_pb_cc_files.txt) \ 155 PROTO_TEXT_PB_H_LIST := $(shell cat $(MAKEFILE_DIR)/proto_text_pb_h_files.txt) 724 TF_CC_SRCS += $(shell cat $(MAKEFILE_DIR)/tf_op_files.txt) 725 PBT_CC_SRCS := $(shell cat $(MAKEFILE_DIR)/tf_pb_text_files.txt) 726 PROTO_SRCS := $(shell cat $(MAKEFILE_DIR)/tf_proto_files.txt) 871 tensorflow/tools/proto_text/placeholder.txt \
|
/external/wpa_supplicant_8/tests/ |
test-eapol.c | 348 const char *txt) 352 MAC2STR(addr), txt); 354 wpa_printf(MSG_DEBUG, "AUTH: %s", txt);
|
/build/soong/cc/ |
ndk_library.go | 74 // symbol_file: "libfoo.map.txt", 302 if !strings.HasSuffix(String(c.properties.Symbol_file), ".map.txt") { 303 ctx.PropertyErrorf("symbol_file", "must end with .map.txt")
|
/external/libcups/cups/ |
http-support.c | 9 * law. Distribution and use rights are outlined in the file "LICENSE.txt" 139 AvahiStringList *txt, [all...] |
/external/libxml2/doc/ |
Makefile.am | 334 rm -f *~ *.bak *.hierarchy *.signals *-unused.txt 337 rm -rf libxml-decl-list.txt libxml-decl.txt
|
/external/v8/src/ast/ |
prettyprinter.cc | 671 IndentedScope(AstPrinter* printer, const char* txt) 673 ast_printer_->PrintIndented(txt); 678 IndentedScope(AstPrinter* printer, const char* txt, int pos) 680 ast_printer_->PrintIndented(txt); 707 void AstPrinter::PrintIndented(const char* txt) { 711 Print("%s", txt); [all...] |
/cts/tests/tests/os/ |
Android.mk | 79 cts_platform_version_path := cts/tests/tests/os/assets/platform_versions.txt
|
/development/samples/ContactManager/src/com/example/android/contactmanager/ |
ContactAdder.java | 220 CharSequence txt = getString(R.string.contactCreationFailure); local 222 Toast toast = Toast.makeText(ctx, txt, duration);
|
/device/google/cuttlefish/shared/sepolicy/ |
file_contexts | 24 /ts_snap\.txt u:object_r:tombstone_snapshot_file:s0
|
/device/linaro/bootloader/edk2/EmbeddedPkg/Universal/MmcDxe/ |
Mmc.h | 31 #define MMC_TRACE(txt) DEBUG((EFI_D_BLKIO, "MMC: " txt "\n"))
|
/external/antlr/tool/src/main/java/org/antlr/tool/ |
GrammarAST.java | 143 public GrammarAST(int t, String txt) { 144 initialize(t,txt);
|
/external/clang/tools/scan-build/libexec/ |
ccc-analyzer | 6 # License. See LICENSE.TXT for details. 172 open (OUT, ">", "$PPFile.info.txt") or die "Cannot open $PPFile.info.txt\n"; 177 `uname -a >> $PPFile.info.txt 2>&1`; 178 `"$Compiler" -v >> $PPFile.info.txt 2>&1`; 179 rename($ofile, "$PPFile.stderr.txt"); 328 my $afile = "$dir/attribute_ignored_$1.txt";
|