HomeSort by relevance Sort by last modified time
    Searched refs:id (Results 101 - 125 of 3745) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/qemu/distrib/sdl-1.2.12/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...]
  /frameworks/base/test-runner/src/android/test/mock/
MockResources.java 51 public CharSequence getText(int id) throws NotFoundException {
56 public CharSequence getQuantityText(int id, int quantity) throws NotFoundException {
61 public String getString(int id) throws NotFoundException {
66 public String getString(int id, Object... formatArgs) throws NotFoundException {
71 public String getQuantityString(int id, int quantity, Object... formatArgs)
77 public String getQuantityString(int id, int quantity) throws NotFoundException {
82 public CharSequence getText(int id, CharSequence def) {
87 public CharSequence[] getTextArray(int id) throws NotFoundException {
92 public String[] getStringArray(int id) throws NotFoundException {
97 public int[] getIntArray(int id) throws NotFoundException
    [all...]
  /bootable/bootloader/legacy/arch_msm7k/
shared.c 32 static void get_version(char *s, unsigned id)
35 unsigned n = ver[id];
150 int clock_enable(unsigned id)
152 return msm_proc_comm(PCOM_CLKCTL_RPC_ENABLE, &id, 0);
155 int clock_disable(unsigned id)
157 return msm_proc_comm(PCOM_CLKCTL_RPC_DISABLE, &id, 0);
160 int clock_set_rate(unsigned id, unsigned rate)
162 return msm_proc_comm(PCOM_CLKCTL_RPC_SET_RATE, &id, &rate);
165 int clock_get_rate(unsigned id)
167 if (msm_proc_comm(PCOM_CLKCTL_RPC_RATE, &id, 0))
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/thread/os2/
SDL_syssem.c 36 HMTX id; member in struct:SDL_semaphore
52 ulrc = DosCreateMutexSem(NULL,&(sem->id),0,TRUE);
61 DosReleaseMutexSem(sem->id);
73 if ( sem->id ) {
75 DosCloseMutexSem(sem->id);
76 sem->id = 0;
93 ulrc = DosRequestMutexSem(sem->id, SEM_INDEFINITE_WAIT);
100 DosReleaseMutexSem(sem->id);
105 DosReleaseMutexSem(sem->id);
113 ulrc = DosRequestMutexSem(sem->id, SEM_INDEFINITE_WAIT)
    [all...]
  /bionic/libc/kernel/arch-arm/asm/arch/
cpu.h 23 #define IS_OMAP_CLASS(class, id) static inline int is_omap ##class (void) { return (GET_OMAP_CLASS == (id)) ? 1 : 0; }
27 #define IS_OMAP_SUBCLASS(subclass, id) static inline int is_omap ##subclass (void) { return (GET_OMAP_SUBCLASS == (id)) ? 1 : 0; }
39 #define IS_OMAP_TYPE(type, id) static inline int is_omap ##type (void) { return (GET_OMAP_TYPE == (id)) ? 1 : 0; }
  /development/ndk/platforms/android-3/arch-arm/include/asm/arch/
cpu.h 23 #define IS_OMAP_CLASS(class, id) static inline int is_omap ##class (void) { return (GET_OMAP_CLASS == (id)) ? 1 : 0; }
27 #define IS_OMAP_SUBCLASS(subclass, id) static inline int is_omap ##subclass (void) { return (GET_OMAP_SUBCLASS == (id)) ? 1 : 0; }
39 #define IS_OMAP_TYPE(type, id) static inline int is_omap ##type (void) { return (GET_OMAP_TYPE == (id)) ? 1 : 0; }
  /device/samsung/crespo/alsa-lib/src/pcm/
pcm_asym.c 86 const char *id; local
87 if (snd_config_get_id(n, &id) < 0)
89 if (snd_pcm_conf_generic_id(id))
91 if (strcmp(id, "playback") == 0) {
96 if (strcmp(id, "capture") == 0) {
101 SNDERR("Unknown field %s", id);
  /external/webkit/WebCore/css/
makevalues.pl 45 int id;
51 my $id = $name;
52 $id =~ s/(^[^-])|-(.)/uc($1||$2)/ge;
53 print GPERF $name . ", CSSValue" . $id . "\n";
71 my $id = $name;
72 $id =~ s/(^[^-])|-(.)/uc($1||$2)/ge;
73 print HEADER "const int CSSValue" . $id . " = " . $i . ";\n";
83 const char* getValueName(unsigned short id);
100 const char* getValueName(unsigned short id)
102 if (id >= numCSSValueKeywords || id <= 0
    [all...]
  /external/webkit/WebKit/mac/Misc/
WebNSNotificationCenterExtras.h 33 - (void)postNotificationOnMainThreadWithName:(NSString *)name object:(id)object;
34 - (void)postNotificationOnMainThreadWithName:(NSString *)name object:(id)object userInfo:(NSDictionary *)userInfo;
35 - (void)postNotificationOnMainThreadWithName:(NSString *)name object:(id)object userInfo:(NSDictionary *)userInfo waitUntilDone:(BOOL)wait;
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/stk/
Item.java 30 public int id; field in class:Item
36 public Item(int id, String text) {
37 this.id = id;
43 id = in.readInt();
53 dest.writeInt(id);
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/asm/arch/
cpu.h 23 #define IS_OMAP_CLASS(class, id) static inline int is_omap ##class (void) { return (GET_OMAP_CLASS == (id)) ? 1 : 0; }
27 #define IS_OMAP_SUBCLASS(subclass, id) static inline int is_omap ##subclass (void) { return (GET_OMAP_SUBCLASS == (id)) ? 1 : 0; }
39 #define IS_OMAP_TYPE(type, id) static inline int is_omap ##type (void) { return (GET_OMAP_TYPE == (id)) ? 1 : 0; }
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/asm/arch/
cpu.h 23 #define IS_OMAP_CLASS(class, id) static inline int is_omap ##class (void) { return (GET_OMAP_CLASS == (id)) ? 1 : 0; }
27 #define IS_OMAP_SUBCLASS(subclass, id) static inline int is_omap ##subclass (void) { return (GET_OMAP_SUBCLASS == (id)) ? 1 : 0; }
39 #define IS_OMAP_TYPE(type, id) static inline int is_omap ##type (void) { return (GET_OMAP_TYPE == (id)) ? 1 : 0; }
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/asm/arch/
cpu.h 23 #define IS_OMAP_CLASS(class, id) static inline int is_omap ##class (void) { return (GET_OMAP_CLASS == (id)) ? 1 : 0; }
27 #define IS_OMAP_SUBCLASS(subclass, id) static inline int is_omap ##subclass (void) { return (GET_OMAP_SUBCLASS == (id)) ? 1 : 0; }
39 #define IS_OMAP_TYPE(type, id) static inline int is_omap ##type (void) { return (GET_OMAP_TYPE == (id)) ? 1 : 0; }
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/asm/arch/
cpu.h 23 #define IS_OMAP_CLASS(class, id) static inline int is_omap ##class (void) { return (GET_OMAP_CLASS == (id)) ? 1 : 0; }
27 #define IS_OMAP_SUBCLASS(subclass, id) static inline int is_omap ##subclass (void) { return (GET_OMAP_SUBCLASS == (id)) ? 1 : 0; }
39 #define IS_OMAP_TYPE(type, id) static inline int is_omap ##type (void) { return (GET_OMAP_TYPE == (id)) ? 1 : 0; }
  /external/chromium/base/
scoped_nsobject.h 87 // Specialization to make scoped_nsobject<id> work.
89 class scoped_nsobject<id> {
91 typedef id element_type;
93 explicit scoped_nsobject(id object = nil)
101 void reset(id object = nil) {
111 bool operator==(id that) const {
115 bool operator!=(id that) const {
119 operator id() const {
123 id get() const {
128 id temp = that.object_
    [all...]
  /external/kernel-headers/original/linux/
ipmi_smi.h 143 id information from it. The first byte of data must point to the
144 byte from the get device id response after the completion code.
149 struct ipmi_device_id *id)
151 id->device_id = data[0];
152 id->device_revision = data[1];
153 id->firmware_revision_1 = data[2];
154 id->firmware_revision_2 = data[3];
155 id->ipmi_version = data[4];
156 id->additional_device_support = data[5];
157 id->manufacturer_id = data[6] | (data[7] << 8) | (data[8] << 16)
    [all...]
  /external/webkit/WebCore/bindings/objc/
ObjCNodeFilterCondition.h 42 static PassRefPtr<ObjCNodeFilterCondition> create(id <DOMNodeFilter> filter)
50 ObjCNodeFilterCondition(id <DOMNodeFilter> filter)
55 RetainPtr<id <DOMNodeFilter> > m_filter;
  /external/webkit/WebCore/bindings/v8/custom/
V8NamedNodesCollection.cpp 45 Node* V8NamedNodesCollection::itemWithName(const AtomicString& id) const
49 if (node->hasAttributes() && node->attributes()->id() == id)
  /external/webkit/WebKit/mac/Plugins/
WebPluginContainerPrivate.h 41 - (id)_webPluginContainerCheckIfAllowedToLoadRequest:(NSURLRequest *)Request inFrame:(NSString *)target resultObject:(id)obj selector:(SEL)selector;
43 - (void)_webPluginContainerCancelCheckIfAllowedToLoadRequest:(id)checkIdentifier;
  /external/webkit/WebKit/mac/WebCoreSupport/
WebCachedFramePlatformData.h 35 WebCachedFramePlatformData(id webDocumentView) : m_webDocumentView(webDocumentView) { }
39 id webDocumentView() { return m_webDocumentView.get(); }
41 RetainPtr<id> m_webDocumentView;
  /frameworks/base/core/java/android/app/
NotificationManager.java 42 * Each of the notify methods takes an int id parameter. This id identifies
43 * this notification from your app to the system, so that id should be unique
44 * within your app. If you call one of the notify methods with an id that is
48 * id you pass to the {@link #cancel} method to clear this notification.
84 * @param id An identifier for this notification unique within your
89 public void notify(int id, Notification notification)
91 notify(null, id, notification);
101 * @return the id of the notification that is associated with the string identifier that
104 public void notify(String tag, int id, Notification notification
    [all...]
  /frameworks/base/include/media/stagefright/foundation/
AHandler.h 33 ALooper::handler_id id() const { function in struct:android::AHandler
47 void setID(ALooper::handler_id id) {
48 mID = id;
  /frameworks/base/test-runner/src/android/test/
InstrumentationUtils.java 38 int id = -1; local
41 id = field.intValue();
47 return id;
  /bionic/libc/kernel/common/linux/
clk.h 19 struct clk *clk_get(struct device *dev, const char *id);
  /development/ndk/platforms/android-3/include/linux/
clk.h 19 struct clk *clk_get(struct device *dev, const char *id);

Completed in 1359 milliseconds

1 2 3 45 6 7 8 91011>>