HomeSort by relevance Sort by last modified time
    Searched defs:token (Results 126 - 150 of 2101) sorted by null

1 2 3 4 56 7 8 91011>>

  /frameworks/base/cmds/incident_helper/src/parsers/
CpuInfoParser.cpp 31 uint64_t token = proto->start(fieldId); local
40 proto->end(token);
141 uint64_t token = proto.start(CpuInfoProto::TASKS); local
148 proto.end(token);
EventLogTagsParser.cpp 44 uint64_t token = proto.start(EventLogTagMapProto::EVENT_LOG_TAGS); local
70 proto.end(token);
PageTypeInfoParser.cpp 67 uint64_t token = proto.start(PageTypeInfoProto::MIGRATE_TYPES); local
94 proto.end(token);
96 uint64_t token = proto.start(PageTypeInfoProto::BLOCKS); local
112 proto.end(token);
ProcrankParser.cpp 69 uint64_t token = proto.start(ProcrankProto::PROCESSES); local
76 proto.end(token);
80 uint64_t token = proto.start(ProcrankProto::SUMMARY); local
83 uint64_t token = proto.start(ProcrankProto::Summary::TOTAL); local
87 proto.end(token);
90 uint64_t token = proto.start(ProcrankProto::Summary::ZRAM); local
92 proto.end(token);
95 uint64_t token = proto.start(ProcrankProto::Summary::RAM); local
97 proto.end(token);
99 proto.end(token);
    [all...]
PsParser.cpp 74 uint64_t token = proto.start(PsProto::PROCESSES); local
81 proto.end(token);
SystemPropertiesParser.cpp 210 uint64_t token = proto.start(SystemPropertiesProto::EXTRA_PROPERTIES); local
213 proto.end(token);
  /frameworks/base/core/java/android/content/pm/
KeySet.java 31 private IBinder token; field in class:KeySet
34 public KeySet(IBinder token) {
35 if (token == null) {
36 throw new NullPointerException("null value for KeySet IBinder token");
38 this.token = token;
43 return token;
51 return token == ks.token;
59 return token.hashCode()
90 IBinder token = in.readStrongBinder(); local
    [all...]
  /frameworks/base/core/java/android/security/keymaster/
OperationResult.java 30 public final IBinder token; field in class:OperationResult
50 int resultCode, IBinder token, long operationHandle, int inputConsumed, byte[] output,
53 this.token = token;
62 token = in.readStrongBinder();
77 out.writeStrongBinder(token);
  /frameworks/base/core/java/android/util/proto/
ProtoUtils.java 46 final long token = proto.start(fieldId); local
49 proto.end(token);
  /frameworks/base/core/java/android/view/inputmethod/
ExtractedTextRequest.java 31 public int token; field in class:ExtractedTextRequest
57 dest.writeInt(token);
70 res.token = source.readInt();
  /frameworks/base/core/java/com/android/internal/util/dump/
DumpUtils.java 50 long token = proto.start(idName, id); local
53 proto.end(token);
  /frameworks/base/core/tests/coretests/src/android/app/servertransaction/
ClientTransactionTests.java 43 IBinder token = mock(IBinder.class); local
46 token /* activityToken */);
53 verify(callback1, times(1)).preExecute(clientTransactionHandler, token);
54 verify(callback2, times(1)).preExecute(clientTransactionHandler, token);
55 verify(stateRequest, times(1)).preExecute(clientTransactionHandler, token);
  /frameworks/base/services/core/java/com/android/server/security/
KeyAttestationApplicationIdProviderService.java 53 final long token = Binder.clearCallingIdentity(); local
71 Binder.restoreCallingIdentity(token);
  /frameworks/base/services/core/java/com/android/server/wm/
AnimationAdapter.java 92 final long token = proto.start(fieldId); local
94 proto.end(token);
  /frameworks/compile/mclinker/lib/Script/
GroupCmd.cpp 87 InputToken* token = llvm::cast<InputToken>(*it); local
88 if (token->asNeeded())
93 switch (token->type()) {
100 (token->name().size() > 0 && token->name()[0] == '/')) {
102 path.append(token->name());
105 path.assign(token->name());
109 script.directories().find(token->name(), Input::Script);
130 path = script.directories().find(token->name(), Input::Archive);
134 path = script.directories().find(token->name(), Input::DynObj)
    [all...]
InputCmd.cpp 98 InputToken* token = llvm::cast<InputToken>(*it); local
99 if (token->asNeeded())
104 switch (token->type()) {
111 (token->name().size() > 0 && token->name()[0] == '/')) {
113 path.append(token->name());
116 path.assign(token->name());
120 script.directories().find(token->name(), Input::Script);
141 path = script.directories().find(token->name(), Input::Archive);
145 path = script.directories().find(token->name(), Input::DynObj)
    [all...]
  /frameworks/native/cmds/servicemanager/
bctest.c 57 unsigned token; variable
96 svcmgr_publish(bs, svcmgr, argv[1], &token);
  /hardware/interfaces/automotive/vehicle/2.0/default/common/include/vhal_v2_0/
VehiclePropertyStore.h 44 /* Function that used to calculate unique token for given VehiclePropValue */
56 int64_t token; member in struct:android::hardware::automotive::vehicle::V2_0::VehiclePropertyStore::RecordId
79 int64_t token = 0) const;
  /hardware/ril/libril/
RilSapSocket.h 48 int token; member in struct:RilSapSocket::SapSocketRequest
114 * @param Token associated with the request.
166 * @param Token associated with the request.
  /prebuilts/gdb/darwin-x86/include/python2.7/
parsetok.h 16 int token; member in struct:__anon66490
  /prebuilts/gdb/linux-x86/include/python2.7/
parsetok.h 16 int token; member in struct:__anon66612
  /prebuilts/go/darwin-x86/src/compress/flate/
token.go 68 type token uint32 type
70 // Convert a literal into a literal token.
71 func literalToken(literal uint32) token { return token(literalType + literal) }
73 // Convert a < xlength, xoffset > pair into a match token.
74 func matchToken(xlength uint32, xoffset uint32) token {
75 return token(matchType + xlength<<lengthShift + xoffset)
78 // Returns the literal of a literal token
79 func (t token) literal() uint32 { return uint32(t - literalType) }
81 // Returns the extra offset of a match token
    [all...]
  /prebuilts/go/darwin-x86/src/go/token/
position_test.go 5 package token package
  /prebuilts/go/linux-x86/src/compress/flate/
token.go 68 type token uint32 type
70 // Convert a literal into a literal token.
71 func literalToken(literal uint32) token { return token(literalType + literal) }
73 // Convert a < xlength, xoffset > pair into a match token.
74 func matchToken(xlength uint32, xoffset uint32) token {
75 return token(matchType + xlength<<lengthShift + xoffset)
78 // Returns the literal of a literal token
79 func (t token) literal() uint32 { return uint32(t - literalType) }
81 // Returns the extra offset of a match token
    [all...]
  /prebuilts/go/linux-x86/src/go/token/
position_test.go 5 package token package

Completed in 729 milliseconds

1 2 3 4 56 7 8 91011>>