HomeSort by relevance Sort by last modified time
    Searched defs:txt (Results 26 - 50 of 167) sorted by null

12 3 4 5 6 7

  /external/wpa_supplicant_8/src/utils/
xml_libxml2.c 402 char *txt; local
406 txt = xml_node_get_text(ctx, node);
407 if (txt == NULL)
410 ret = base64_decode((unsigned char *) txt, strlen(txt), &len);
413 xml_node_get_text_free(ctx, txt);
416 txt = os_malloc(len + 1);
417 if (txt == NULL) {
421 os_memcpy(txt, ret, len);
422 txt[len] = '\0'
    [all...]
  /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);
peers.cpp 468 char *txt = reply; local
469 while (*txt != '\0' && *txt != '\n')
470 txt++;
471 *txt++ = '\0';
498 char *txt = reply; local
499 while (*txt != '\0' && *txt != '\n')
500 txt++;
501 *txt++ = '\0'
    [all...]
  /packages/apps/Camera/src/com/android/camera/ui/
ZoomRenderer.java 120 String txt = mZoomSig+"."+mZoomFraction+"x"; local
121 mTextPaint.getTextBounds(txt, 0, txt.length(), mTextBounds);
122 canvas.drawText(txt, mCenterX - mTextBounds.centerX(), mCenterY - mTextBounds.centerY(),
  /external/emma/core/java12/com/vladium/emma/report/txt/
ReportGenerator.java 9 package com.vladium.emma.report.txt;
108 outFile = new File ("coverage.txt");
522 private static final String TYPE = "txt";
  /external/jmonkeyengine/engine/src/test/jme3test/audio/
TestMusicPlayer.java 217 String txt = String.format("%01d:%02d-%01d:%02d", minutesNow, secondsNow, local
219 lblTime.setText(txt);
  /external/wpa_supplicant_8/wpa_supplicant/
wpas_glue.c 748 const char **txt)
752 *txt = default_txt;
756 *txt = "Identity";
760 *txt = "Password";
764 *txt = "New Password";
768 *txt = "PIN";
775 *txt = "Private key passphrase";
782 *txt = "PSK or passphrase";
789 /* txt needs to be something */
790 if (*txt == NULL)
835 const char *field_name, *txt = NULL; local
    [all...]
eapol_test.c 88 int level, const char *txt, size_t len)
92 MAC2STR(addr), txt);
94 wpa_printf(MSG_DEBUG, "%s", txt);
441 const char *field_name, *txt = NULL; local
450 &txt);
457 buflen = 100 + os_strlen(txt) + ssid->ssid_len;
463 field_name, ssid->id, txt);
721 /* draft-aboba-radius-rfc2869bis-20.txt, Chap. 2.6.3:
    [all...]
wps_supplicant.c 1351 char uuid[40], txt[400]; local
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
BridgeXmlBlockParser.java 217 String txt = getText(); local
219 if (txt != null) {
221 holderForStartAndLength[1] = txt.length();
222 chars = new char[txt.length()];
223 txt.getChars(0, txt.length(), chars, 0);
  /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);
  /external/dnsmasq/src/
rfc1035.c 945 struct txt_record *txt; local
957 for (txt = daemon->txt; txt; txt = txt->next)
958 if (hostname_isequal(name, txt->name))
1202 for(t = daemon->txt; t ; t = t->next)
1209 log_query(F_CNAME | F_FORWARD | F_CONFIG | F_NXDOMAIN, name, NULL, "<TXT>");
1212 T_TXT, t->class, "t", t->len, t->txt))
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/generators/rss/
RSSFeedAddEntryTask.java 333 String[] txt = { NL + " ", NL + " ", NL + " ", NL + " ", NL + " " , NL + " " }; //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$ //$NON-NLS-6$ local
347 attachNode(document, entry, elem, txt[1]);
352 attachNode(document, entry, elem, txt[1]);
357 attachNode(document, entry, elem, txt[1]);
362 attachNode(document, entry, elem, txt[1]);
366 attachNode(document, entry, summary, txt[1]);
377 attachNode(document, summary, build, txt[2]);
383 attachNode(document, build, elem, txt[3]);
390 attachNode(document, build, elem, txt[3]);
397 attachNode(document, build, elem, txt[3])
    [all...]
  /external/jmdns/src/javax/jmdns/impl/
DNSRecord.java 315 * Creates a byte array representation of this record. This is needed for tie-break tests according to draft-cheshire-dnsext-multicastdns-04.txt chapter 9.2.
562 Text txt = (Text) other; local
563 if ((_text == null) && (txt._text != null)) {
566 if (txt._text.length != _text.length) {
570 if (txt._text[i] != _text[i]) {
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
tncs.c 699 char *txt; local
727 txt = NULL;
731 txt = "allow";
735 txt = "isolate";
739 txt = "none";
747 if (txt) {
756 TNC_TNCCS_RECOMMENDATION, txt);
  /external/wpa_supplicant_8/src/wps/
wps_upnp.c 632 char txt[10]; local
669 os_snprintf(txt, sizeof(txt), "%d", ap_status);
670 wpabuf_put_property(buf, "APStatus", txt);
    [all...]
wps_er.c 370 char txt[100]; local
394 uuid_bin2str(ap->sid, txt, sizeof(txt));
396 inet_ntoa(ap->addr), ap->location, txt);
    [all...]
  /frameworks/base/core/java/android/content/res/
XmlBlock.java 159 String txt = getText(); local
161 if (txt != null) {
163 holderForStartAndLength[1] = txt.length();
164 chars = new char[txt.length()];
165 txt.getChars(0, txt.length(), chars, 0);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-swing.jar 
  /external/libmtp/src/
libusb-glue.c 1129 char txt[256]; local
    [all...]
  /external/mdnsresponder/Clients/
dns-sd.c 262 else if (!strcasecmp(s, "TXT" )) return(kDNSServiceType_TXT);
418 const char *fullname, const char *hosttarget, uint16_t opaqueport, uint16_t txtLen, const unsigned char *txt, void *context)
427 const unsigned char *max = txt + txtLen;
455 printf("%-47s TXT ", n);
457 while (txt < max)
459 const unsigned char *const end = txt + 1 + txt[0];
460 txt++; // Skip over length byte
462 while (txt<end)
464 if (*txt == '\\' || *txt == '\"') printf("\\")
988 unsigned char txt[2048] = ""; local
    [all...]
  /external/wpa_supplicant_8/hs20/client/
oma_dm_client.c 241 char locuri[200], *txt; local
260 txt = xml_node_get_text(ctx->xml, child);
261 if (txt) {
262 add_item(ctx, replace, locuri, txt);
263 xml_node_get_text_free(ctx->xml, txt);
    [all...]
  /external/wpa_supplicant_8/src/ap/
wps_hostapd.c 175 char uuid[40], txt[400]; local
181 len = os_snprintf(txt, sizeof(txt), WPS_EVENT_PIN_NEEDED
188 if (!os_snprintf_error(sizeof(txt), len))
189 wpa_msg(hapd->msg_ctx, MSG_INFO, "%s", txt);
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
eap.c 105 static void eap_deinit_prev_method(struct eap_sm *sm, const char *txt)
114 "(%d, %s) at %s", sm->selectedMethod, sm->m->name, txt);
2180 const char *txt = NULL; local
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_new.c 465 const char *field, *txt = NULL, *net_ptr; local
473 field = wpa_supplicant_ctrl_req_to_string(rtype, default_txt, &txt);
492 !dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING, &txt))
    [all...]

Completed in 702 milliseconds

12 3 4 5 6 7