Searched defs:id (Results 201 - 225 of 4123) sorted by relevance

1234567891011>>

/external/qemu/distrib/sdl-1.2.15/src/thread/win32/
H A DSDL_sysmutex.c33 HANDLE id; member in struct:SDL_mutex
45 mutex->id = CreateMutex(NULL, FALSE, NULL);
46 if ( ! mutex->id ) {
61 if ( mutex->id ) {
62 CloseHandle(mutex->id);
63 mutex->id = 0;
76 if ( WaitForSingleObject(mutex->id, INFINITE) == WAIT_FAILED ) {
90 if ( ReleaseMutex(mutex->id) == FALSE ) {
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DSerializedFragmentState.java9 public final int id; field in class:SerializedFragmentState
15 id = fragment.getId();
H A DShadowAnimationUtils.java17 public static Animation loadAnimation(Context context, int id) { argument
19 Robolectric.shadowOf(anim).setLoadedFromResourceId(id);
H A DShadowContentUris.java13 public static Uri withAppendedId(Uri contentUri, long id) { argument
14 return Uri.withAppendedPath(contentUri, String.valueOf(id));
/external/smack/src/org/jivesoftware/smackx/pubsub/
H A DNodeEvent.java26 protected NodeEvent(String id) argument
28 nodeId = id;
/external/smack/src/org/xbill/DNS/
H A DResolveThread.java15 private Object id; field in class:ResolveThread
21 ResolveThread(Resolver res, Message query, Object id, argument
26 this.id = id;
38 listener.receiveMessage(id, response);
41 listener.handleException(id, e);
H A DResolverListener.java18 * @param id The identifier returned by Resolver.sendAsync()
21 void receiveMessage(Object id, Message m); argument
25 * @param id The identifier returned by Resolver.sendAsync()
28 void handleException(Object id, Exception e); argument
/external/srec/srec/Nametag/src/
H A DNametag.c26 ESR_ReturnCode SR_NametagGetID(const SR_Nametag* self, LCHAR** id) argument
33 return self->getID(self, id);
46 ESR_ReturnCode SR_NametagSetID(SR_Nametag* self, const LCHAR* id) argument
53 return self->setID(self, id);
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Ddh_groups.h13 int id; member in struct:dh_group
23 const struct dh_group * dh_groups_get(int id);
/external/wpa_supplicant_8/hostapd/src/eap_common/
H A Dchap.c15 int chap_md5(u8 id, const u8 *secret, size_t secret_len, const u8 *challenge, argument
21 addr[0] = &id;
/external/wpa_supplicant_8/hs20/server/www/
H A Dadd-free.php10 if (isset($_POST["id"]))
11 $id = preg_replace("/[^a-fA-F0-9]/", "", $_POST["id"]); variable
13 die("Missing session id");
14 if (strlen($id) < 32)
15 die("Invalid session id");
17 $row = $db->query("SELECT rowid,* FROM sessions WHERE id='$id'")->fetch();
44 "VALUES ('$user', '$realm', '$id', " .
H A Dadd-mo.php10 if (isset($_POST["id"]))
11 $id = preg_replace("/[^a-fA-F0-9]/", "", $_POST["id"]); variable
13 die("Missing session id");
17 if (strlen($id) < 32 || !isset($user) || !isset($pw)) {
23 echo "<a href=\"signup.php?session_id=$id\">Try again</a>\n";
28 $row = $db->query("SELECT rowid,* FROM sessions WHERE id='$id'")->fetch();
37 echo "<a href=\"signup.php?session_id=$id\">Try again</a>\n";
50 "VALUES ('$user', '$realm', '$id', "
[all...]
/external/wpa_supplicant_8/src/crypto/
H A Ddh_groups.h13 int id; member in struct:dh_group
23 const struct dh_group * dh_groups_get(int id);
/external/wpa_supplicant_8/src/eap_common/
H A Dchap.c15 int chap_md5(u8 id, const u8 *secret, size_t secret_len, const u8 *challenge, argument
21 addr[0] = &id;
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Ddh_groups.h13 int id; member in struct:dh_group
23 const struct dh_group * dh_groups_get(int id);
/external/wpa_supplicant_8/wpa_supplicant/src/eap_common/
H A Dchap.c15 int chap_md5(u8 id, const u8 *secret, size_t secret_len, const u8 *challenge, argument
21 addr[0] = &id;
/external/apache-harmony/beans/src/test/support/java/org/apache/harmony/beans/tests/support/beancontext/mock/
H A DMockPropertyChangeListenerS.java33 public String id; field in class:MockPropertyChangeListenerS
35 public MockPropertyChangeListenerS(String id) { argument
36 this.id = id;
/external/apache-http/src/org/apache/http/protocol/
H A DBasicHttpContext.java65 public Object getAttribute(final String id) { argument
66 if (id == null) {
71 obj = this.map.get(id);
74 obj = this.parentContext.getAttribute(id);
79 public void setAttribute(final String id, final Object obj) { argument
80 if (id == null) {
86 this.map.put(id, obj);
89 public Object removeAttribute(final String id) { argument
90 if (id == null) {
94 return this.map.remove(id);
[all...]
H A DDefaultedHttpContext.java63 public Object getAttribute(final String id) { argument
64 Object obj = this.local.getAttribute(id);
66 return this.defaults.getAttribute(id);
72 public Object removeAttribute(final String id) { argument
73 return this.local.removeAttribute(id);
76 public void setAttribute(final String id, final Object obj) { argument
77 this.local.setAttribute(id, obj);
H A DHttpContext.java57 Object getAttribute(String id); argument
59 void setAttribute(String id, Object obj); argument
61 Object removeAttribute(String id); argument
H A DSyncBasicHttpContext.java54 public synchronized Object getAttribute(final String id) { argument
55 return super.getAttribute(id);
58 public synchronized void setAttribute(final String id, final Object obj) { argument
59 super.setAttribute(id, obj);
62 public synchronized Object removeAttribute(final String id) { argument
63 return super.removeAttribute(id);
/external/bison/src/
H A DInadequacyList.h77 InadequacyListNodeCount id; member in struct:InadequacyList
110 * such that <tt>n != result</tt>, then <tt>n->id < result->id</tt>.
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
H A DSignerIdentifier.java30 private ASN1Encodable id; field in class:SignerIdentifier
33 IssuerAndSerialNumber id)
35 this.id = id;
39 ASN1OctetString id)
41 this.id = new DERTaggedObject(false, 0, id);
45 ASN1Primitive id)
47 this.id = id;
32 SignerIdentifier( IssuerAndSerialNumber id) argument
38 SignerIdentifier( ASN1OctetString id) argument
44 SignerIdentifier( ASN1Primitive id) argument
[all...]
/external/chromium_org/android_webview/java/src/org/chromium/android_webview/
H A DJsResultHandler.java13 JsResultHandler(AwContentsClientBridge bridge, int id) { argument
15 mId = id;
/external/chromium_org/apps/
H A Dsaved_files_service.h38 SavedFileEntry(const std::string& id,
43 // The opaque id of this file entry.
44 std::string id; member in struct:apps::SavedFileEntry
71 const std::string& id,
75 // If the file with |id| is not in the queue of files to be retained
78 // already present, moves it to the back of the queue. The |id| must have been
80 void EnqueueFileEntry(const std::string& extension_id, const std::string& id);
82 // Returns whether the file entry with the given |id| has been registered.
83 bool IsRegistered(const std::string& extension_id, const std::string& id);
85 // Gets a borrowed pointer to the file entry with the specified |id|
[all...]

Completed in 1981 milliseconds

1234567891011>>