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

  /external/webkit/Source/JavaScriptCore/dfg/
DFGRegisterBank.h 68 template<typename RegID, size_t NUM_REGS, typename SpillHint, SpillHint SpillHintMin, SpillHint SpillHintMax>
87 RegID allocate(VirtualRegister &spillMe)
138 void retain(RegID reg, VirtualRegister name, SpillHint spillOrder)
153 void release(RegID reg)
167 void lock(RegID reg)
173 void unlock(RegID reg)
179 bool isLocked(RegID reg)
187 VirtualRegister name(RegID reg)
209 RegID allocateInternal(uint32_t i, VirtualRegister &spillMe)
223 return (RegID)i
    [all...]
  /dalvik/vm/compiler/codegen/mips/
CodegenCommon.cpp 77 static void annotateDalvikRegAccess(MipsLIR *lir, int regId, bool isLoad)
86 lir->aliasInfo = regId;
99 int regId = reg & 0x1f;
107 assert((regId & 1) == 0); /* double registers must be even */
112 assert(regId < 16); /* only 16 fp regs */
115 assert(regId < 3); /* only 3 extra regs */
122 shift += regId;
  /frameworks/base/docs/html/google/gcm/
gs.jd 210 String regid;
220 regid = getRegistrationId(context);
222 if (regid.length() == 0) {
268 <p>If the registration ID doesn't exist, or the app was updated, or the registration ID has expired, {@code getRegistrationId()} returns an empty string to indicate that the app needs to get a new regID. {@code getRegistrationId()} calls the following methods to check the app version and whether the regID has expired:</p>
320 regid = gcm.register(SENDER_ID);
321 msg = "Device registered, registration id=" + regid;
330 // Save the regid - no need to register again.
331 setRegistrationId(context, regid);
352 * &#64;param regId registration i
    [all...]
ccs.jd 168 &quot;from&quot;:&quot;REGID&quot;,
178 &quot;from&quot;:&quot;REGID&quot;,
217 &quot;from&quot;:&quot;REGID&quot;
227 &quot;to&quot;:&quot;REGID&quot;,
helper.jd 132 <li><code>onRegistered(Context context, String regId)</code>: Called after a registration intent is received, passes the registration ID assigned by GCM to that device/application pair as parameter. Typically, you should send the <code>regid</code> to your server so it can use it to send messages to this device.</li>
133 <li><code>onUnregistered(Context context, String regId)</code>: Called after the device has been unregistered from GCM. Typically, you should send the <code>regid</code> to the server so it unregisters the device.</li>
148 final String regId = GCMRegistrar.getRegistrationId(this);
149 if (regId.equals("")) {
notifications.jd 53 <p>The way this works is that during registration, the 3rd-party server requests a {@code notification_key}. The {@code notification_key} maps a particular user to all of the user's associated registration IDs (a regID represents a particular Android application running on a particular device). Then instead of sending one message to one regID at a time, the 3rd-party server can send a message to to the {@code notification_key}, which then sends the message to all of the user's regIDs.</p>
  /frameworks/base/services/java/com/android/server/
NsdService.java 443 /* NNN regId serviceName regType */
450 /* NNN regId errorCode */
456 /* NNN regId */
459 /* NNN regId errorCode */
654 private boolean registerService(int regId, NsdServiceInfo service) {
655 if (DBG) Slog.d(TAG, "registerService: " + regId + " " + service);
658 mNativeConnector.execute("mdnssd", "register", regId, service.getServiceName(),
667 private boolean unregisterService(int regId) {
668 if (DBG) Slog.d(TAG, "unregisterService: " + regId);
670 mNativeConnector.execute("mdnssd", "stop-register", regId);
    [all...]
  /dalvik/vm/compiler/codegen/arm/
ArchUtility.cpp 35 int regId = i;
37 regId = r14lr;
39 regId = r15pc;
42 sprintf(buf + strlen(buf), ", r%d", regId);
45 sprintf(buf, "r%d", regId);
CodegenCommon.cpp 75 static void annotateDalvikRegAccess(ArmLIR *lir, int regId, bool isLoad)
83 lir->aliasInfo = regId;
96 int regId = reg & 0x1f;
105 shift += regId;
  /dalvik/vm/compiler/codegen/x86/libenc/
dec_base.cpp 243 unsigned regid = data_byte - byte; local
244 if (regid>7) {
269 opnd = EncoderBase::Operand( getRegName(OpndKind_GPReg, opnd_size, regid) );
353 unsigned regid = data_byte - byte; local
354 if (regid>7) {
  /frameworks/base/docs/html/training/cloudsync/
gcm.jd 123 Message message = new Message.Builder(regId)

Completed in 287 milliseconds