HomeSort by relevance Sort by last modified time
    Searched defs:id (Results 501 - 525 of 5510) sorted by null

<<21222324252627282930>>

  /external/ppp/pppd/plugins/radius/
clientid.c 2 * $Id: clientid.c,v 1.1 2004/11/14 07:26:26 paulus Exp $
17 UINT4 id; member in struct:map2id_s
27 * Purpose: Read in the ttyname to port id map file
38 char *c, *name, *id, *q; local
67 id = c;
75 p->id = atoi(id);
97 * Purpose: Map ttyname to port id
101 * Returns: port id, zero if no entry found
116 if (!strcmp(ttyname, p->name)) return p->id;
    [all...]
  /external/proguard/src/proguard/evaluation/value/
IdentifiedReferenceValue.java 26 * This LongValue represents a reference value that is identified by a unique ID.
33 private final int id; field in class:IdentifiedReferenceValue
37 * Creates a new long value with the given ID.
43 int id)
48 this.id = id;
64 // Remove the ID if both values don't share the same ID.
86 this.id == ((IdentifiedReferenceValue)object).id;
    [all...]
  /external/protobuf/gtest/test/
gtest_stress_test.cc 55 String IdToKey(int id, const char* suffix) {
57 key << "key_" << id << "_" << suffix;
61 String IdToString(int id) {
63 id_message << id; local
68 int id,
70 TestPropertyKeyIs matches_key(IdToKey(id, suffix).c_str());
73 << "expecting " << suffix << " value for id " << id; local
74 EXPECT_STREQ(IdToString(id).c_str(), property->value());
79 void ManyAsserts(int id) {
80 ::std::cout << "Thread #" << id << " running...\\n"; local
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/thread/beos/
SDL_syssem.c 32 sem_id id; member in struct:SDL_semaphore
42 sem->id = create_sem(initial_value, "SDL semaphore");
43 if ( sem->id < B_NO_ERROR ) {
58 if ( sem->id >= B_NO_ERROR ) {
59 delete_sem(sem->id);
77 val = acquire_sem(sem->id);
80 val = acquire_sem_etc(sem->id, 1, B_RELATIVE_TIMEOUT, timeout);
121 get_sem_count(sem->id, &count);
137 if ( release_sem(sem->id) != B_NO_ERROR ) {
  /external/qemu/distrib/sdl-1.2.15/src/thread/pthread/
SDL_sysmutex.c 34 pthread_mutex_t id; member in struct:SDL_mutex
57 if ( pthread_mutex_init(&mutex->id, &attr) != 0 ) {
71 pthread_mutex_destroy(&mutex->id);
96 We set the locking thread id after we obtain the lock
99 if ( pthread_mutex_lock(&mutex->id) == 0 ) {
108 if ( pthread_mutex_lock(&mutex->id) < 0 ) {
138 pthread_mutex_unlock(&mutex->id);
146 if ( pthread_mutex_unlock(&mutex->id) < 0 ) {
  /external/qemu/distrib/sdl-1.2.15/src/thread/riscos/
SDL_sysmutex.c 35 pthread_mutex_t id; member in struct:SDL_mutex
56 if ( pthread_mutex_init(&mutex->id, &attr) != 0 ) {
70 pthread_mutex_destroy(&mutex->id);
95 We set the locking thread id after we obtain the lock
98 if ( pthread_mutex_lock(&mutex->id) == 0 ) {
107 if ( pthread_mutex_lock(&mutex->id) < 0 ) {
137 pthread_mutex_unlock(&mutex->id);
145 if ( pthread_mutex_unlock(&mutex->id) < 0 ) {
  /external/qemu/distrib/sdl-1.2.15/src/thread/win32/
SDL_syssem.c 37 SYNCHHANDLE id; member in struct:SDL_semaphore
39 HANDLE id;
55 sem->id = CreateSemaphoreCE(NULL, initial_value, 32*1024, NULL);
57 sem->id = CreateSemaphore(NULL, initial_value, 32*1024, NULL);
60 if ( ! sem->id ) {
75 if ( sem->id ) {
77 CloseSynchHandle(sem->id);
79 CloseHandle(sem->id);
81 sem->id = 0;
103 switch (WaitForSemaphoreCE(sem->id, dwMilliseconds))
    [all...]
  /external/qemu/distrib/sdl-1.2.15/test/
testlock.c 39 Uint32 id = SDL_ThreadID(); local
41 printf("Process %u: Cleaning up...\n", id == mainthread ? 0 : id);
  /external/qemu/include/sysemu/
blockdev.h 23 char *id; member in struct:DriveInfo
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
FragmentTest.java 27 int id = fragment.getResources().getIdentifier("hello", "string", "com.xtremelabs.robolectric"); local
28 assertTrue(id > 0);
30 String hello = fragment.getResources().getString(id);
33 hello = fragment.getString(id);
  /external/smack/src/org/jivesoftware/smackx/packet/
PEPItem.java 35 String id; field in class:PEPItem
43 public PEPItem(String id) {
45 this.id = id;
73 * &lt;message id="MlIpV-4" to="gato1@gato.home" from="gato3@gato.home/Smack"&gt;
86 buf.append("<").append(getElementName()).append(" id=\"").append(id).append("\">");
  /external/smack/src/org/jivesoftware/smackx/pubsub/
Item.java 25 * <li>Will always have an id (either user or server generated) unless node configuration has both
31 * <li>The id is optional, since the server will generate one if necessary, but should be used if it is
33 * resending an item with the same id will overwrite the one that already exists if the items are persisted.
44 private String id; field in class:Item
47 * Create an empty <tt>Item</tt> with no id. This is a valid item for nodes which are configured
48 * so that {@link ConfigureForm#isDeliverPayloads()} is false. In most cases an id will be generated by the server.
59 * Create an <tt>Item</tt> with an id but no payload. This is a valid item for nodes which are configured
62 * @param itemId The id if the item. It must be unique within the node unless overwriting and existing item.
69 id = itemId;
73 * Create an <tt>Item</tt> with an id and a node id.
    [all...]
OptionsExtension.java 26 protected String id; field in class:OptionsExtension
42 id = subscriptionId;
52 return id;
65 if (id != null)
66 XmlUtils.appendAttribute(builder, "subid", id);
UnsubscribeExtension.java 27 protected String id; field in class:UnsubscribeExtension
43 id = subscriptionId;
53 return id;
66 if (id != null)
67 XmlUtils.appendAttribute(builder, "subid", id);
  /external/smack/src/org/jivesoftware/smackx/receipts/
DeliveryReceipt.java 33 private String id; /// original ID of the delivered message field in class:DeliveryReceipt
35 public DeliveryReceipt(String id)
37 this.id = id;
42 return id;
60 return "<received xmlns='" + NAMESPACE + "' id='" + id + "'/>";
73 return new DeliveryReceipt(attributeMap.get("id"));
  /external/smack/src/org/xbill/DNS/
ResolveThread.java 15 private Object id; field in class:ResolveThread
21 ResolveThread(Resolver res, Message query, Object id,
26 this.id = id;
38 listener.receiveMessage(id, response);
41 listener.handleException(id, e);
  /external/stlport/stlport/stl/
_collate.h 62 static _STLP_STATIC_DECLSPEC locale::id id; member in class:collate
98 static _STLP_STATIC_DECLSPEC locale::id id; member in class:collate
_num_get.h 123 static locale::id id; member in class:num_get
_numpunct.h 62 static _STLP_STATIC_DECLSPEC locale::id id; member in class:numpunct
91 static _STLP_STATIC_DECLSPEC locale::id id; member in class:numpunct
  /external/wpa_supplicant_8/src/drivers/
driver_openbsd.c 50 struct ieee80211_bssid id; local
52 os_strlcpy(id.i_name, drv->ifname, sizeof(id.i_name));
53 if (ioctl(drv->sock, SIOCG80211BSSID, &id) < 0)
56 os_memcpy(bssid, id.i_bssid, IEEE80211_ADDR_LEN);
  /external/wpa_supplicant_8/src/eap_peer/
eap_md5.c 35 u8 *rpos, id; local
87 id = eap_get_id(resp);
89 if (chap_md5(id, password, password_len, challenge, challenge_len,
  /external/wpa_supplicant_8/src/wps/
wps_attr_parse.c 21 u8 id, u8 len, const u8 *pos)
23 wpa_printf(MSG_EXCESSIVE, "WPS: WFA subelement id=%u len=%u",
24 id, len);
25 switch (id) {
72 "Extension subelement %u", id);
84 u8 id, elen; local
87 id = *pos++;
91 if (wps_set_vendor_ext_wfa_subelem(attr, id, elen, pos) < 0)
118 wpa_printf(MSG_MSGDUMP, "WPS: Unknown Vendor Extension (Vendor ID %u)",
268 "ID length %u", len)
    [all...]
  /frameworks/base/core/java/android/hardware/soundtrigger/
KeyphraseMetadata.java 29 public final int id; field in class:KeyphraseMetadata
34 public KeyphraseMetadata(int id, String keyphrase, ArraySet<Locale> supportedLocales,
36 this.id = id;
44 return "id=" + id + ", keyphrase=" + keyphrase + ", supported-locales=" + supportedLocales
  /frameworks/base/core/java/android/net/
LocalSocketAddress.java 45 /** The id matches with a #define in include/cutils/sockets.h */
46 private int id; field in class:LocalSocketAddress.Namespace
47 Namespace (int id) {
48 this.id = id;
55 return id;
  /frameworks/base/rs/java/android/renderscript/
ProgramFragment.java 39 ProgramFragment(long id, RenderScript rs) {
40 super(id, rs);
87 long id = mRS.nProgramFragmentCreate(mShader, texNames, tmp); local
88 ProgramFragment pf = new ProgramFragment(id, mRS);

Completed in 2058 milliseconds

<<21222324252627282930>>