/external/chromium_org/chrome/browser/resources/quota_internals/ |
event_handler.js | 190 treeViewObject.detail = {payload: {}, children: {}}; 207 detail: {payload: {}, children: {}} 229 detail: {payload: {}, children: {}} 252 detail: {payload: {}, children: {}} 302 copyAttributes_(data, storageObject.detail.payload); 339 copyAttributes_(data, hostObject.detail.payload); 388 copyAttributes_(data, originObject.detail.payload); 447 var entry = item.detail.payload[key]; 471 res.payload = treeitem.detail.payload; [all...] |
/external/chromium_org/sync/internal_api/public/base/ |
invalidation_test_util.cc | 87 return expected_.payload() == actual.payload() 114 *os << "{ payload: " << inv.ToString() << " }";
|
/external/chromium_org/sync/sessions/ |
data_type_tracker.h | 49 // Updates the size of the invalidations payload buffer. 68 // Returns the most recent invalidation payload. 71 // Fills in the legacy invalidaiton payload information fields.
|
/external/chromium_org/third_party/libjingle/source/talk/media/base/ |
constants.cc | 44 // RTP payload type is in the 0-127 range. Use 128 to indicate "all" payload 52 // draft-spittka-payload-rtp-opus-03.txt
|
/external/dropbear/ |
process-packet.c | 50 type = buf_getbyte(ses.payload); 122 buf_free(ses.payload); 123 ses.payload = NULL;
|
/external/iptables/libipq/ |
ipq_message_type.3 | 57 A packet message containing packet metadata and optional packet payload data. 88 unsigned char payload[0]; /* Optional packet data */ 98 value is greater than zero, the packet payload contents may be accessed
|
/external/kernel-headers/original/linux/ |
if_arcnet.h | 63 uint8_t payload[0]; /* space remaining in packet (504 bytes)*/ member in struct:arc_rfc1201 74 uint8_t payload[0]; /* 507 bytes */ member in struct:arc_rfc1051 87 uint8_t payload[0]; /* 493 bytes */ member in struct:arc_eth_encap
|
/external/libvpx/libvpx/examples/ |
simple_decoder.txt | 14 header followed by a variable length payload. The length of the payload 15 is specified in the first four bytes of the frame header. The payload is
|
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/ |
bandwidth_estimator.h | 42 * This function updates bottle neck rate received from other side in payload 76 * (integer 0...23) to put in the sending iSAC payload. 100 * returns minimum payload size (bytes)
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
if_arcnet.h | 63 uint8_t payload[0]; /* space remaining in packet (504 bytes)*/ member in struct:arc_rfc1201 74 uint8_t payload[0]; /* 507 bytes */ member in struct:arc_rfc1051 87 uint8_t payload[0]; /* 493 bytes */ member in struct:arc_eth_encap
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
if_arcnet.h | 63 uint8_t payload[0]; /* space remaining in packet (504 bytes)*/ member in struct:arc_rfc1201 74 uint8_t payload[0]; /* 507 bytes */ member in struct:arc_rfc1051 87 uint8_t payload[0]; /* 493 bytes */ member in struct:arc_eth_encap
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
if_arcnet.h | 63 uint8_t payload[0]; /* space remaining in packet (504 bytes)*/ member in struct:arc_rfc1201 74 uint8_t payload[0]; /* 507 bytes */ member in struct:arc_rfc1051 87 uint8_t payload[0]; /* 493 bytes */ member in struct:arc_eth_encap
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/test/ |
test_email_torture.py | 54 payload = msg.get_payload() 55 eq(type(payload), ListType) 56 eq(len(payload), 12)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/test/ |
test_email_torture.py | 54 payload = msg.get_payload() 55 eq(type(payload), ListType) 56 eq(len(payload), 12)
|
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/ |
RecognitionException.as | 127 var payload:Token = adaptor.getToken(node); 128 if ( payload!=null ) { 129 this.token = payload; 130 if ( payload.line<= 0 ) { 148 this.line = payload.line; 149 this.charPositionInLine = payload.charPositionInLine;
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/ |
DebugTreeAdaptor.cs | 61 public virtual object Create(IToken payload) { 62 if (payload.TokenIndex < 0) { 64 return Create(payload.Type, payload.Text); 66 object node = adaptor.Create(payload); 67 dbg.CreateNode(node, payload);
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/ |
DebugTreeAdaptor.cs | 64 public virtual object Create( IToken payload ) 66 if ( payload.TokenIndex < 0 ) 69 return Create( payload.Type, payload.Text ); 71 object node = adaptor.Create( payload ); 72 dbg.CreateNode( node, payload );
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/ |
RecognitionException.java | 127 Token payload = adaptor.getToken(node); local 128 if ( payload!=null ) { 129 this.token = payload; 130 if ( payload.getLine()<= 0 ) { 148 this.line = payload.getLine(); 149 this.charPositionInLine = payload.getCharPositionInLine();
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/ |
DebugTreeAdaptor.java | 56 public Object create(Token payload) { 57 if ( payload.getTokenIndex() < 0 ) { 59 return create(payload.getType(), payload.getText()); 61 Object node = adaptor.create(payload); 62 dbg.createNode(node, payload);
|
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/ |
RecognitionException.js | 126 payload = adaptor.getToken(this.node); 127 if ( payload ) { 128 this.token = payload; 129 if ( payload.getLine()<= 0 ) { 147 this.line = payload.getLine(); 148 this.charPositionInLine = payload.getCharPositionInLine();
|
/external/chromium_org/third_party/sqlite/src/src/ |
btreeInt.h | 37 ** key and data for any entry are combined to form the "payload". A 38 ** fixed amount of payload can be carried directly on the database 39 ** page. If the payload is larger than the preset amount then surplus 40 ** bytes are stored on overflow pages. The payload for an entry 63 ** 21 1 Max embedded payload fraction 64 ** 22 1 Min embedded payload fraction 65 ** 23 1 Min leaf payload fraction 89 ** The max embedded payload fraction is the amount of the total usable 93 ** on one page. Thus the default max embedded payload fraction is 64. 95 ** If the payload for a cell is larger than the max payload, then extr [all...] |
/external/wpa_supplicant_8/src/eap_common/ |
ikev2_common.h | 40 u8 payload_length[2]; /* this payload, including the payload header */ 95 /* Payload Header Flags */ 99 /* EAP-IKEv2 Payload Types (in Next Payload Type field) 200 * public key is used to validate the sender's AUTH payload */
|
/frameworks/base/docs/html/google/play/billing/ |
billing_best_practices.jd | 16 <li><a href="#payload">Set the Developer Payload String</a></li> 92 <h3 id="payload">Set the developer payload string when making purchase requests</h3> 93 <p>With the In-app Billing Version 3 API, you can include a 'developer payload' string token when sending your purchase request to Google Play. Typically, this is used to pass in a string token that uniquely identifies this purchase request. If you specify a string value, Google Play returns this string along with the purchase response. Subsequently, when you make queries about this purchase, Google Play returns this string together with the purchase details.</p> 95 <p>When you get back the response from Google Play, make sure to verify that the developer payload string matches the token that you sent previously with the purchase request. As a further security precaution, you should perform the verification on your own secure server.</p>
|
/bionic/libc/kernel/common/linux/netfilter_ipv4/ |
ip_queue.h | 39 unsigned char payload[0]; member in struct:ipq_packet_msg 51 unsigned char payload[0]; member in struct:ipq_verdict_msg
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/ |
NdefPushSenderActivity.java | 62 byte[] payload = "CTS Verifier NDEF Push Tag".getBytes(Charset.forName("US-ASCII")); 64 new NdefRecord(NdefRecord.TNF_MIME_MEDIA, mimeBytes, id, payload)
|