HomeSort by relevance Sort by last modified time
    Searched refs:se (Results 1 - 25 of 145) sorted by null

1 2 3 4 5 6

  /external/dbus/tools/
dbus-cleanup-sockets.c 120 SocketEntry *se; local
123 se = xmalloc (sizeof (SocketEntry));
126 se->name = xmalloc (len);
128 strcpy (se->name, dir);
129 strcat (se->name, "/");
130 strcat (se->name, fname);
132 se->fd = -1;
134 se->status = SOCKET_UNKNOWN;
136 se->n_retries = 0;
138 return se;
177 SocketEntry *se; local
273 SocketEntry *se; local
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/js1_2/statements/
switch2.js 129 var se = 0; variable
130 switch (se = 1) {
133 se, 1);
136 se = 0;
137 switch (se) {
139 se = 1;
142 se, 1);
145 se = 0;
152 se = 1;
155 se, 1)
    [all...]
  /system/extras/tests/bionic/libc/other/
test_timer_create.c 52 struct sigevent se; local
55 memset(&se, 0, sizeof (se));
56 se.sigev_notify = SIGEV_THREAD;
57 se.sigev_notify_function = handle;
58 se.sigev_value.sival_int = id;
60 if (timer_create (CLOCK_REALTIME, &se, &tid) < 0)
test_timer_create3.c 68 struct sigevent se; local
71 memset(&se, 0, sizeof (se));
72 se.sigev_notify = SIGEV_THREAD;
73 se.sigev_notify_function = handle;
74 se.sigev_value.sival_int = id;
76 if (timer_create (CLOCK_REALTIME, &se, &tid) < 0)
test_timer_create2.c 52 struct sigevent se; local
55 memset(&se, 0, sizeof (se));
56 se.sigev_notify = SIGEV_SIGNAL;
57 se.sigev_signo = SIGUSR1;
59 if (timer_create (CLOCK_REALTIME, &se, &tid) < 0)
  /external/chromium/base/third_party/dmg_fp/
dmg_fp.h 14 double strtod(const char* s00, char** se);
g_fmt.cc 35 char *b0, *s0, *se; local
45 s = s0 = dtoa(x, 0, 0, &decpt, &sign, &se);
52 if (decpt <= -4 || decpt > se - s + 5) {
  /external/qemu/
thunk.c 69 StructEntry *se; local
72 se = struct_entries + id;
81 se->field_types = types;
82 se->nb_fields = nb_fields;
83 se->name = name;
86 se->name, id, se->nb_fields);
93 se->field_offsets[i] = malloc(nb_fields * sizeof(int));
94 type_ptr = se->field_types;
99 se->field_offsets[i][j] = offset
118 StructEntry *se; local
213 const StructEntry *se; local
    [all...]
thunk.h 84 const StructEntry *se; local
111 se = struct_entries + type_ptr[1];
112 return se->size[is_host];
121 const StructEntry *se; local
147 se = struct_entries + type_ptr[1];
148 return se->align[is_host];
savevm.c 753 SaveStateEntry *se, **pse; local
756 se = qemu_malloc(sizeof(SaveStateEntry));
757 pstrcpy(se->idstr, sizeof(se->idstr), idstr);
758 se->instance_id = (instance_id == -1) ? 0 : instance_id;
759 se->version_id = version_id;
760 se->section_id = global_section_id++;
761 se->save_live_state = save_live_state;
762 se->save_state = save_state;
763 se->load_state = load_state
819 SaveStateEntry *se; local
853 SaveStateEntry *se; local
878 SaveStateEntry *se; local
954 SaveStateEntry *se; local
965 SaveStateEntry *se; member in struct:LoadStateEntry
973 SaveStateEntry *se; local
1032 SaveStateEntry *se; local
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/extensions/
SessionExpiresParser.java 37 SessionExpires se = new SessionExpires(); local
47 se.setExpires(delta);
55 super.parse(se);
56 return se;
  /external/webkit/JavaScriptCore/wtf/
dtoa.h 32 double strtod(const char* s00, char** se);
  /external/tagsoup/src/org/ccil/cowan/tagsoup/jaxp/
SAXFactoryImpl.java 68 } catch (SAXException se) {
70 throw new ParserConfigurationException(se.getMessage());
  /external/libnfc-nxp/Linux_x86/
phOsalNfc_Timer.c 173 struct sigevent se; local
175 se.sigev_notify = SIGEV_THREAD;
176 se.sigev_notify_function = phOsalNfc_Timer_Expired;
177 se.sigev_notify_attributes = NULL;
186 se.sigev_value.sival_int = (int)timerid;
189 if(timer_create(CLOCK_REALTIME, &se, &(timers[timerid].handle)) == -1)
  /libcore/luni/src/main/java/org/apache/xpath/
XPathException.java 197 TransformerException se = (TransformerException) exception; local
200 exception = se.getException();
232 TransformerException se = (TransformerException) exception; local
235 exception = se.getException();
298 TransformerException se = (TransformerException) exception; local
301 exception = se.getException();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SimpleElement.java 273 SimpleElement se = (SimpleElement) obj; local
276 if ((mBounds == null && se.mBounds != null) ||
277 (mBounds != null && !mBounds.equals(se.mBounds))) {
280 if ((mParentFqcn == null && se.mParentFqcn != null) ||
281 (mParentFqcn != null && !mParentFqcn.equals(se.mParentFqcn))) {
284 if ((mParentBounds == null && se.mParentBounds != null) ||
285 (mParentBounds != null && !mParentBounds.equals(se.mParentBounds))) {
289 return mFqcn.equals(se.mFqcn) &&
290 mAttributes.size() == se.mAttributes.size() &&
291 mElements.size() == se.mElements.size() &
    [all...]
  /libcore/luni/src/main/java/org/apache/xalan/templates/
ElemComment.java 88 catch(org.xml.sax.SAXException se)
90 throw new TransformerException(se);
ElemTextLiteral.java 220 catch(SAXException se)
222 throw new TransformerException(se);
  /libcore/luni/src/main/java/org/apache/xml/serializer/dom3/
DOM3SerializerImpl.java 112 } catch (org.xml.sax.SAXException se) {
113 throw new WrappedRuntimeException(se);
  /external/skia/src/views/
SkWidgetViews.cpp 30 const char* get_skin_enum_path(SkinEnum se)
32 SkASSERT((unsigned)se < kSkinEnumCount);
42 return gSkinPaths[se];
64 void init_skin_anim(SkinEnum se, SkAnimator* anim)
66 init_skin_anim(get_skin_enum_path(se), anim);
69 void init_skin_paint(SkinEnum se, SkPaint* paint)
76 init_skin_anim(se, &anim);
  /libcore/luni/src/test/java/tests/api/java/util/concurrent/
ScheduledExecutorTest.java 142 ScheduledThreadPoolExecutor se = null; local
144 se = new ScheduledThreadPoolExecutor(1);
145 se.execute(null);
149 joinPool(se);
156 ScheduledThreadPoolExecutor se = new ScheduledThreadPoolExecutor(1); local
159 Future f = se.schedule(callable, SHORT_DELAY_MS, MILLISECONDS);
162 joinPool(se);
169 ScheduledThreadPoolExecutor se = new ScheduledThreadPoolExecutor(1); local
171 se.shutdown();
172 se.schedule(new NoOpRunnable()
186 ScheduledThreadPoolExecutor se = new ScheduledThreadPoolExecutor(1); local
202 ScheduledThreadPoolExecutor se = new ScheduledThreadPoolExecutor(1); local
218 ScheduledThreadPoolExecutor se = new ScheduledThreadPoolExecutor(1); local
234 ScheduledThreadPoolExecutor se = new ScheduledThreadPoolExecutor(1); local
    [all...]
ScheduledExecutorSubclassTest.java 195 CustomExecutor se = new CustomExecutor(1); local
197 se.execute(null);
200 joinPool(se);
207 CustomExecutor se = new CustomExecutor(1); local
210 Future f = se.schedule(callable, SHORT_DELAY_MS, MILLISECONDS);
213 joinPool(se);
220 CustomExecutor se = new CustomExecutor(1); local
222 se.shutdown();
223 se.schedule(new NoOpRunnable(),
230 joinPool(se);
237 CustomExecutor se = new CustomExecutor(1); local
253 CustomExecutor se = new CustomExecutor(1); local
269 CustomExecutor se = new CustomExecutor(1); local
285 CustomExecutor se = new CustomExecutor(1); local
    [all...]
  /external/elfcopy/
elfcopy.h 41 struct Ebl_Strent *se; /* contribution to shstr section */ member in struct:shdr_info_t
  /external/elfutils/libebl/
libebl.h 224 /* Get offset in string table for string associated with SE. */
225 extern size_t ebl_strtaboffset (struct Ebl_Strent *se);
227 /* Return the string associated with SE. */
228 extern const char *ebl_string (struct Ebl_Strent *se);
249 /* Get offset in wide char string table for string associated with SE. */
250 extern size_t ebl_wstrtaboffset (struct Ebl_WStrent *se);
271 /* Get offset in wide char string table for string associated with SE. */
272 extern size_t ebl_gstrtaboffset (struct Ebl_GStrent *se);
  /external/emma/ant/ant15/com/vladium/emma/ant/
IANTVersion.java 53 catch (SecurityException se)

Completed in 404 milliseconds

1 2 3 4 5 6