HomeSort by relevance Sort by last modified time
    Searched defs:etag (Results 1 - 11 of 11) sorted by null

  /external/tagsoup/src/org/ccil/cowan/tagsoup/
ScanHandler.java 70 public void etag(char[] buff, int offset, int length) throws SAXException; method in interface:ScanHandler
PYXScanner.java 70 h.etag(buff, 1, size - 1);
PYXWriter.java 69 public void etag(char[] buff, int offset, int length) throws SAXException { method in class:PYXWriter
HTMLScanner.java 493 h.etag(theOutputBuffer, 0, theSize);
Parser.java 642 public void etag(char[] buff, int offset, int length) throws SAXException { method in class:Parser
680 // System.err.println("got etag [" + name + "]");
    [all...]
  /external/bluetooth/glib/gio/
gfileoutputstream.c 285 * and closed, as the etag can change while writing.
294 char *etag; local
302 g_warning ("stream is not closed yet, can't get etag");
306 etag = NULL;
310 etag = class->get_etag (stream);
312 return etag;
glocalfileoutputstream.c 71 char *etag; member in struct:_GLocalFileOutputStreamPrivate
112 g_free (file->priv->etag);
214 file->priv->etag = _g_local_file_info_create_etag (&final_stat);
307 file->priv->etag = _g_local_file_info_create_etag (&final_stat);
348 return g_strdup (file->priv->etag);
659 const char *etag,
750 if (etag != NULL)
753 if (strcmp (etag, current_etag) != 0)
984 const char *etag,
1013 fd = handle_overwrite_open (filename, etag, create_backup, &temp_file
    [all...]
glocalfileinfo.c 971 char *etag = _g_local_file_info_create_etag (statbuf); local
972 g_file_info_set_attribute_string (info, G_FILE_ATTRIBUTE_ETAG_VALUE, etag);
973 g_free (etag);
    [all...]
gfile.c 115 * <para id="gfile-etag"><indexterm><primary>entity tag</primary></indexterm>
121 * for HTTP Etag headers, which are a very similar concept.
185 const char *etag,
4422 char *etag; member in struct:__anon1949
5230 char *etag; member in struct:__anon1954
5675 char *etag; member in struct:__anon1955
    [all...]
  /libcore/luni/src/main/java/libcore/net/http/
ResponseHeaders.java 101 private String etag; field in class:ResponseHeaders
147 } else if ("ETag".equalsIgnoreCase(fieldName)) {
148 etag = value;
248 return etag;
441 if (etag != null) {
442 request.setIfNoneMatch(etag);
  /frameworks/base/core/java/android/webkit/
CacheManager.java 105 String etag; field in class:CacheManager.CacheResult
142 return etag;
428 if (result.lastModified == null && result.etag == null) {
433 if (result.etag != null) {
434 headers.put(HEADER_KEY_IFNONEMATCH, result.etag);
845 // lastModified and etag may be set back to http header. So they can't
852 String etag = headers.getEtag(); local
853 if (etag != null && etag.length() > 0) {
854 ret.etag = etag
    [all...]

Completed in 259 milliseconds