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

1 2 3 4 5 6 7 8 91011>>

  /external/bluetooth/glib/gio/fen/
fen-sub.c 26 #include "fen-sub.h"
31 fen_sub *sub; local
32 sub = g_new (fen_sub, 1);
33 sub->user_data = udata;
34 sub->is_mondir = is_mondir;
35 return sub;
39 fen_sub_delete (fen_sub *sub)
41 g_free (sub);
fen-helper.h 25 #include "fen-sub.h"
30 void fen_add (const gchar *filename, gpointer sub, gboolean is_mondir);
31 void fen_remove (const gchar *filename, gpointer sub, gboolean is_mondir);
  /external/bluetooth/glib/gio/inotify/
inotify-missing.h 27 #include "inotify-sub.h"
29 void _im_startup (void (*missing_cb)(inotify_sub *sub));
30 void _im_add (inotify_sub *sub);
31 void _im_rm (inotify_sub *sub);
inotify-path.h 27 #include "inotify-sub.h"
29 gboolean _ip_startup (void (*event_cb)(ik_event_t *event, inotify_sub *sub));
30 gboolean _ip_start_watching (inotify_sub *sub);
31 gboolean _ip_stop_watching (inotify_sub *sub);
inotify-helper.h 27 #include "inotify-sub.h"
30 gboolean _ih_sub_add (inotify_sub *sub);
31 gboolean _ih_sub_cancel (inotify_sub *sub);
inotify-sub.c 3 /* inotify-sub.c - GMonitor based on inotify.
30 #include "inotify-sub.h"
52 inotify_sub *sub = NULL; local
54 sub = g_new0 (inotify_sub, 1);
55 sub->dirname = dup_dirname (dirname);
56 sub->filename = g_strdup (filename);
57 sub->user_data = user_data;
59 IS_W ("new subscription for %s being setup\n", sub->dirname);
61 return sub;
65 _ih_sub_free (inotify_sub *sub)
    [all...]
inotify-missing.c 40 static void (*missing_cb)(inotify_sub *sub) = NULL;
46 _im_startup (void (*callback)(inotify_sub *sub))
59 _im_add (inotify_sub *sub)
61 if (g_list_find (missing_sub_list, sub))
63 IM_W ("asked to add %s to missing list but it's already on the list!\n", sub->dirname);
67 IM_W ("adding %s to missing list\n", sub->dirname);
68 missing_sub_list = g_list_prepend (missing_sub_list, sub);
80 _im_rm (inotify_sub *sub)
84 link = g_list_find (missing_sub_list, sub);
88 IM_W ("asked to remove %s from missing list but it isn't on the list!\n", sub->dirname)
112 inotify_sub *sub = l->data; local
163 inotify_sub *sub = l->data; local
    [all...]
ginotifydirectorymonitor.c 39 inotify_sub *sub; member in struct:_GInotifyDirectoryMonitor
55 inotify_sub *sub = inotify_monitor->sub; local
57 if (sub)
59 _ih_sub_cancel (sub);
60 _ih_sub_free (sub);
61 inotify_monitor->sub = NULL;
78 inotify_sub *sub = NULL; local
95 sub = _ih_sub_new (dirname, NULL, inotify_monitor);
98 g_assert (sub != NULL)
136 inotify_sub *sub = inotify_monitor->sub; local
    [all...]
ginotifyfilemonitor.c 41 inotify_sub *sub; member in struct:_GInotifyFileMonitor
57 inotify_sub *sub = inotify_monitor->sub; local
59 if (sub)
61 _ih_sub_cancel (sub);
62 _ih_sub_free (sub);
63 inotify_monitor->sub = NULL;
92 inotify_sub *sub = NULL; local
113 sub = _ih_sub_new (inotify_monitor->dirname, inotify_monitor->filename, inotify_monitor);
117 g_assert (sub != NULL)
154 inotify_sub *sub = inotify_monitor->sub; local
    [all...]
inotify-helper.c 47 static void ih_event_callback (ik_event_t *event, inotify_sub *sub);
48 static void ih_not_missing_callback (inotify_sub *sub);
109 _ih_sub_add (inotify_sub *sub)
113 if (!_ip_start_watching (sub))
114 _im_add (sub);
124 _ih_sub_cancel (inotify_sub *sub)
128 if (!sub->cancelled)
130 IH_W ("cancelling %s\n", sub->dirname);
131 sub->cancelled = TRUE;
132 _im_rm (sub);
    [all...]
  /cts/tools/dx-tests/src/dxc/junit/opcodes/multianewarray/jm/sub/
TestStubs.java 17 package dxc.junit.opcodes.multianewarray.jm.sub;
  /dalvik/vm/oo/
TypeCheck.h 54 * Determine whether "sub" is a sub-class of "clazz".
58 INLINE int dvmIsSubClass(const ClassObject* sub, const ClassObject* clazz) {
60 /*printf("###### sub='%s' clazz='%s'\n", sub->name, clazz->name);*/
61 if (sub == clazz)
63 sub = sub->super;
64 } while (sub != NULL);
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
ConcurrentModTest.java 44 List sub = al.subList(1, 3); local
45 assertEquals(2, sub.size());
46 // the sub.get(1) is 3.0
47 assertTrue(((Double) sub.get(1)).doubleValue() <= 3.0);
48 assertTrue(((Double) sub.get(1)).doubleValue() > 2.0);
54 sub.get(1);
74 List sub = al.subList(1, 3); local
75 assertEquals(2, sub.size());
76 // the sub.get(1) is 3.0
77 assertTrue(((Double) sub.get(1)).doubleValue() <= 3.0)
104 List sub = al.subList(1, 3); local
134 List sub = al.subList(1, 3); local
164 List sub = al.subList(1, 3); local
    [all...]
  /external/bluetooth/glib/gio/fam/
fam-helper.c 76 fam_sub* sub = NULL; local
89 sub = (fam_sub*)ev.userdata;
90 cancelled = sub->cancelled;
93 _fam_sub_free (sub);
100 if (sub->directory)
102 GFileMonitor* monitor = G_FILE_MONITOR (sub->user_data);
114 path = g_strdup_printf ("%s/%s", sub->pathname, ev.filename);
126 GFileMonitor* monitor = G_FILE_MONITOR (sub->user_data);
213 fam_sub *sub; local
229 sub = g_new0 (fam_sub, 1)
    [all...]
gfamdirectorymonitor.c 36 fam_sub *sub; member in struct:_GFamDirectoryMonitor
47 fam_sub *sub = fam_monitor->sub; local
49 if (sub) {
50 if (!_fam_sub_cancel (sub))
53 fam_monitor->sub = NULL;
70 fam_sub *sub = NULL; local
83 sub = _fam_sub_add (dirname, TRUE, fam_monitor);
86 g_assert (sub != NULL);
88 fam_monitor->sub = sub
129 fam_sub *sub = fam_monitor->sub; local
    [all...]
gfamfilemonitor.c 36 fam_sub *sub; member in struct:_GFamFileMonitor
47 fam_sub *sub = fam_monitor->sub; local
49 if (sub) {
50 if (!_fam_sub_cancel (sub))
52 fam_monitor->sub = NULL;
69 fam_sub *sub = NULL; local
83 sub = _fam_sub_add (filename, FALSE, fam_monitor);
86 g_assert (sub != NULL);
88 fam_monitor->sub = sub
128 fam_sub *sub = fam_monitor->sub; local
    [all...]
fam-helper.h 35 gboolean _fam_sub_cancel (fam_sub* sub);
36 void _fam_sub_free (fam_sub* sub);
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
Identity2Test.java 174 IdentitySubclass sub = new IdentitySubclass("test", scope); local
175 IdentityScope returnedScope = sub.getScope();
183 IdentitySubclass sub = new IdentitySubclass("test", local
185 sub.setPublicKey(pubKey);
186 PublicKey returnedPubKey = sub.getPublicKey();
195 IdentitySubclass sub = new IdentitySubclass(name, local
197 assertEquals("Wrong Name returned", name, sub.getName());
205 IdentitySubclass sub = new IdentitySubclass("test", local
207 sub.setInfo(info);
208 assertEquals("Wrong Info returned", info, sub.getInfo())
215 IdentitySubclass sub = new IdentitySubclass("test", local
232 IdentitySubclass sub = new IdentitySubclass("test", local
246 IdentitySubclass sub = new IdentitySubclass("test", local
263 IdentitySubclass sub = new IdentitySubclass("test", local
280 IdentitySubclass sub = new IdentitySubclass("test", null); local
297 IdentitySubclass sub = new IdentitySubclass("test", null); local
309 IdentitySubclass sub = new IdentitySubclass("test", null); local
319 IdentitySubclass sub = new IdentitySubclass("test", null); local
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
Identity2Test.java 205 IdentitySubclass sub = new IdentitySubclass("test", scope); local
206 IdentityScope returnedScope = sub.getScope();
214 IdentitySubclass sub = new IdentitySubclass("test", local
216 sub.setPublicKey(getPubKey());
217 PublicKey returnedPubKey = sub.getPublicKey();
226 IdentitySubclass sub = new IdentitySubclass(name, local
228 assertEquals("Wrong Name returned", name, sub.getName());
236 IdentitySubclass sub = new IdentitySubclass("test", local
238 sub.setInfo(info);
239 assertEquals("Wrong Info returned", info, sub.getInfo())
246 IdentitySubclass sub = new IdentitySubclass("test", local
265 IdentitySubclass sub = new IdentitySubclass("test", local
299 IdentitySubclass sub = new IdentitySubclass("test", local
320 IdentitySubclass sub = new IdentitySubclass("test", null); local
337 IdentitySubclass sub = new IdentitySubclass("test", null); local
348 IdentitySubclass sub = new IdentitySubclass("test", null); local
357 IdentitySubclass sub = new IdentitySubclass("test", null); local
367 IdentitySubclass sub = new IdentitySubclass("test", new IdentityScopeSubclass()); local
384 IdentitySubclass sub = new IdentitySubclass("test", local
    [all...]
IdentityScope2Test.java 183 IdentityScopeSubclass sub = new IdentityScopeSubclass("test", local
187 sub.addIdentity(id);
191 sub.addIdentity(id2);
202 IdentityScopeSubclass sub = new IdentityScopeSubclass("test", local
206 sub.addIdentity(id);
207 sub.removeIdentity(id);
209 sub.removeIdentity(id);
219 IdentityScopeSubclass sub = new IdentityScopeSubclass("test", local
223 sub.addIdentity(id);
224 Enumeration<Identity> en = sub.identities()
235 IdentityScopeSubclass sub = new IdentityScopeSubclass("test", local
265 IdentityScopeSubclass sub = new IdentityScopeSubclass("test", local
283 IdentityScopeSubclass sub = new IdentityScopeSubclass("test", local
296 IdentityScopeSubclass sub = new IdentityScopeSubclass("test", local
308 IdentityScopeSubclass sub = new IdentityScopeSubclass("test", local
    [all...]
  /frameworks/base/media/libstagefright/codecs/amrnb/common/include/
sub.h 31 Filename: /audio/gsm_amr/c/include/sub.h
36 Description: Created separate header file for sub function.
53 needed by the sub function.
106 Word16 sub(Word16 var1, Word16 var2, Flag *pOverflow);
  /external/clang/test/CodeGenCXX/
conditional-expr-lvalue.cpp 14 A sub() const;
18 (cond ? a : a.sub()).foo();
  /frameworks/base/core/tests/coretests/apks/
Android.mk 4 # build sub packages
  /frameworks/base/media/libstagefright/codecs/amrnb/enc/src/
enc_lag3.cpp 165 if (sub (T0, 85) <= 0)
169 index = add (sub (i, 58), T0_frac);
183 i = sub (T0, T0_min);
193 if ( sub( sub(tmp_lag, T0_min), 5) > 0)
195 if ( sub( sub(T0_max, tmp_lag), 4) > 0)
196 tmp_lag = sub (T0_max, 4);
200 i = sub (tmp_lag, 2);
203 if (sub (tmp_ind, uplag) >= 0)
    [all...]
  /cts/tests/tests/text/src/android/text/cts/
AlteredCharSequenceTest.java 39 char[] sub = { 'i', 's' }; local
41 mAlteredCharSequence = AlteredCharSequence.make(source, sub, 0, sub.length);
42 // chars in sub.
71 char[] sub = { 'i', 's' }; local
76 mAlteredCharSequence = AlteredCharSequence.make(SOURCE_STR, sub, 0, sub.length);
107 char[] sub = { 'i', 's' }; local
112 mAlteredCharSequence = AlteredCharSequence.make(source, sub, 0, sub.length)
124 char[] sub = { 'i', 's' }; local
147 char[] sub = { 'i', 's' }; local
168 char[] sub = { 'i', 's' }; local
    [all...]

Completed in 481 milliseconds

1 2 3 4 5 6 7 8 91011>>