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

1 2 3 4 5

  /external/e2fsprogs/intl/
os2compat.c 59 size_t sl = strlen (root); local
60 _nlos2_libdir = (char *) malloc (sl + strlen (LIBDIR) + 1);
61 memcpy (_nlos2_libdir, root, sl);
62 memcpy (_nlos2_libdir + sl, LIBDIR, strlen (LIBDIR) + 1);
73 size_t sl = strlen (root); local
74 _nlos2_localealiaspath = (char *) malloc (sl + strlen (LOCALE_ALIAS_PATH) + 1);
75 memcpy (_nlos2_localealiaspath, root, sl);
76 memcpy (_nlos2_localealiaspath + sl, LOCALE_ALIAS_PATH, strlen (LOCALE_ALIAS_PATH) + 1);
87 size_t sl = strlen (root); local
88 _nlos2_localedir = (char *) malloc (sl + strlen (LOCALEDIR) + 1)
    [all...]
  /system/netd/
NetlinkManager.h 40 void setBroadcaster(SocketListener *sl) { mBroadcaster = sl; }
  /system/vold/
NetlinkManager.h 40 void setBroadcaster(SocketListener *sl) { mBroadcaster = sl; }
  /external/kernel-headers/original/linux/
seqlock.h 57 static inline void write_seqlock(seqlock_t *sl)
59 spin_lock(&sl->lock);
60 ++sl->sequence;
64 static inline void write_sequnlock(seqlock_t *sl)
67 sl->sequence++;
68 spin_unlock(&sl->lock);
71 static inline int write_tryseqlock(seqlock_t *sl)
73 int ret = spin_trylock(&sl->lock);
76 ++sl->sequence;
83 static __always_inline unsigned read_seqbegin(const seqlock_t *sl)
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
StatusLine.java 71 StatusLine sl = (StatusLine) matchObj;
73 if (sl.matchExpression != null)
74 return sl.matchExpression.match(this.encode());
76 if (sl.sipVersion != null && !sl.sipVersion.equals(sipVersion))
78 if (sl.statusCode != 0) {
80 int hiscode = sl.statusCode;
81 String codeString = Integer.toString(sl.statusCode);
86 if (statusCode != sl.statusCode)
90 if (sl.reasonPhrase == null || reasonPhrase == sl.reasonPhrase
    [all...]
  /system/media/opensles/tests/examples/
slesTestEffectCapabilities.cpp 71 SLObjectItf sl; local
93 result = slCreateEngine( &sl, 1, EngineOption, 1, iidArray, required);
96 /* Realizing the SL Engine in synchronous mode. */
97 result = (*sl)->Realize(sl, SL_BOOLEAN_FALSE);
104 /* Get the SL Engine interface which is implicit */
105 result = (*sl)->GetInterface(sl, SL_IID_ENGINE, (void*)&EngineItf);
109 result = (*sl)->GetInterface(sl, SL_IID_ANDROIDEFFECTCAPABILITIES, (void*)&EffectLibItf)
157 SLObjectItf sl; local
    [all...]
slesTestPlayFdPath.cpp 50 void TestPlayPathFromFD( SLObjectItf sl, const char* path, SLAint64 offset, SLAint64 size)
74 /* Get the SL Engine Interface which is implicit */
75 result = (*sl)->GetInterface(sl, SL_IID_ENGINE, (void*)&EngineItf);
194 SLObjectItf sl; local
212 result = slCreateEngine( &sl, 1, EngineOption, 0, NULL, NULL);
215 /* Realizing the SL Engine in synchronous mode. */
216 result = (*sl)->Realize(sl, SL_BOOLEAN_FALSE);
221 TestPlayPathFromFD(sl, argv[1], (SLAint64)atoi(argv[2])
    [all...]
slesTestEqFdPath.cpp 50 void TestEQPathFromFD( SLObjectItf sl, const char* path
83 /* Get the SL Engine Interface which is implicit */
84 result = (*sl)->GetInterface(sl, SL_IID_ENGINE, (void*)&EngineItf);
277 SLObjectItf sl; local
302 result = slCreateEngine( &sl, 1, EngineOption, 0, NULL, NULL);
305 /* Realizing the SL Engine in synchronous mode. */
306 result = (*sl)->Realize(sl, SL_BOOLEAN_FALSE);
312 TestEQPathFromFD(sl, argv[1], (SLAint64)atoi(argv[2])
    [all...]
slesTestEqOutputPath.cpp 50 void TestEQPathFromFD( SLObjectItf sl, const char* path
85 /* Get the SL Engine Interface which is implicit */
86 result = (*sl)->GetInterface(sl, SL_IID_ENGINE, (void*)&EngineItf);
281 SLObjectItf sl; local
303 result = slCreateEngine( &sl, 1, EngineOption, 0, NULL, NULL);
306 /* Realizing the SL Engine in synchronous mode. */
307 result = (*sl)->Realize(sl, SL_BOOLEAN_FALSE);
313 TestEQPathFromFD(sl, argv[1], (SLAint64)atoi(argv[2])
    [all...]
slesTestBassBoostPath.cpp 50 void TestBassBoostPathFromFD( SLObjectItf sl, const char* path, int16_t boostStrength)
79 /* Get the SL Engine Interface which is implicit */
80 result = (*sl)->GetInterface(sl, SL_IID_ENGINE, (void*)&EngineItf);
249 SLObjectItf sl; local
269 result = slCreateEngine( &sl, 1, EngineOption, 0, NULL, NULL);
272 /* Realizing the SL Engine in synchronous mode. */
273 result = (*sl)->Realize(sl, SL_BOOLEAN_FALSE);
277 TestBassBoostPathFromFD(sl, argv[1], (int16_t)atoi(argv[2]))
    [all...]
slesTestRecBuffQueue.cpp 140 void TestRecToBuffQueue( SLObjectItf sl, const char* path, SLAint64 durationInSeconds)
170 /* Get the SL Engine Interface which is implicit */
171 result = (*sl)->GetInterface(sl, SL_IID_ENGINE, (void*)&EngineItf);
315 SLObjectItf sl; local
331 result = slCreateEngine( &sl, 1, EngineOption, 0, NULL, NULL);
334 /* Realizing the SL Engine in synchronous mode. */
335 result = (*sl)->Realize(sl, SL_BOOLEAN_FALSE);
338 TestRecToBuffQueue(sl, argv[1], (SLAint64)atoi(argv[2]))
    [all...]
slesTestSawtoothBufferQueue.cpp 63 fprintf(stdout, "%lu SL failure, exiting\n", res);
67 //fprintf(stdout, "%d SL success, proceeding...\n", res);
105 void TestPlaySawtoothBufferQueue( SLObjectItf sl )
137 /* Get the SL Engine Interface which is implicit */
138 res = (*sl)->GetInterface(sl, SL_IID_ENGINE, (void*)&EngineItf);
278 SLObjectItf sl; local
284 res = slCreateEngine( &sl, 1, EngineOption, 0, NULL, NULL);
286 /* Realizing the SL Engine in synchronous mode. */
287 res = (*sl)->Realize(sl, SL_BOOLEAN_FALSE); CheckErr(res)
    [all...]
slesTestSendToPresetReverb.cpp 50 void TestSendToPresetReverb( SLObjectItf sl, const char* path, int preset, SLmillibel directLevel,
82 /* Get the SL Engine Interface which is implicit */
83 result = (*sl)->GetInterface(sl, SL_IID_ENGINE, (void*)&EngineItf);
253 SLObjectItf sl; local
273 result = slCreateEngine( &sl, 1, EngineOption, 0, NULL, NULL);
276 /* Realizing the SL Engine in synchronous mode. */
277 result = (*sl)->Realize(sl, SL_BOOLEAN_FALSE);
281 TestSendToPresetReverb(sl, argv[1], atoi(argv[2]), (SLmillibel)atoi(argv[3])
    [all...]
slesTestVirtualizerPath.cpp 50 void TestVirtualizerPathFromFD( SLObjectItf sl, const char* path, int16_t virtStrength)
79 /* Get the SL Engine Interface which is implicit */
80 result = (*sl)->GetInterface(sl, SL_IID_ENGINE, (void*)&EngineItf);
250 SLObjectItf sl; local
270 result = slCreateEngine( &sl, 1, EngineOption, 0, NULL, NULL);
273 /* Realizing the SL Engine in synchronous mode. */
274 result = (*sl)->Realize(sl, SL_BOOLEAN_FALSE);
278 TestVirtualizerPathFromFD(sl, argv[1], (int16_t)atoi(argv[2]))
    [all...]
  /system/media/opensles/tests/mimeUri/
slesTest_playStates.cpp 48 void TestPlayUri( SLObjectItf sl, const char* path)
73 /* Get the SL Engine Interface which is implicit */
74 result = (*sl)->GetInterface(sl, SL_IID_ENGINE, (void*)&EngineItf);
207 SLObjectItf sl; local
226 result = slCreateEngine( &sl, 1, EngineOption, 0, NULL, NULL);
229 /* Realizing the SL Engine in synchronous mode. */
230 result = (*sl)->Realize(sl, SL_BOOLEAN_FALSE);
234 TestPlayUri(sl, argv[1])
    [all...]
slesTestPlayUri2.cpp 63 void TestPlayUri( SLObjectItf sl, const char* path, const char* path2)
88 /* Get the SL Engine Interface which is implicit */
89 result = (*sl)->GetInterface(sl, SL_IID_ENGINE, (void*)&EngineItf);
252 SLObjectItf sl; local
271 result = slCreateEngine( &sl, 1, EngineOption, 0, NULL, NULL);
274 /* Realizing the SL Engine in synchronous mode. */
275 result = (*sl)->Realize(sl, SL_BOOLEAN_FALSE);
279 TestPlayUri(sl, argv[1], argv[1])
    [all...]
slesTestLoopUri.cpp 69 void TestLoopUri( SLObjectItf sl, const char* path)
95 /* Get the SL Engine Interface which is implicit */
96 res = (*sl)->GetInterface(sl, SL_IID_ENGINE, (void*)&EngineItf);
236 SLObjectItf sl; local
253 res = slCreateEngine( &sl, 1, EngineOption, 0, NULL, NULL);
255 /* Realizing the SL Engine in synchronous mode. */
256 res = (*sl)->Realize(sl, SL_BOOLEAN_FALSE);
259 TestLoopUri(sl, argv[1])
    [all...]
slesTestPlayStreamType.cpp 49 void TestStreamTypeConfiguration( SLObjectItf sl, const char* path, const SLint32 type)
76 /* Get the SL Engine Interface which is implicit */
77 result = (*sl)->GetInterface(sl, SL_IID_ENGINE, (void*)&EngineItf);
235 SLObjectItf sl; local
253 result = slCreateEngine( &sl, 1, EngineOption, 0, NULL, NULL);
256 /* Realizing the SL Engine in synchronous mode. */
257 result = (*sl)->Realize(sl, SL_BOOLEAN_FALSE);
260 TestStreamTypeConfiguration(sl, argv[1], (SLint32)atoi(argv[2]))
    [all...]
slesTestPlayUri.cpp 95 void TestPlayUri( SLObjectItf sl, const char* path)
121 /* Get the SL Engine Interface which is implicit */
122 res = (*sl)->GetInterface(sl, SL_IID_ENGINE, (void*)&EngineItf);
258 SLObjectItf sl; local
275 res = slCreateEngine( &sl, 1, EngineOption, 0, NULL, NULL);
277 /* Realizing the SL Engine in synchronous mode. */
278 res = (*sl)->Realize(sl, SL_BOOLEAN_FALSE);
281 TestPlayUri(sl, argv[1])
    [all...]
  /external/openssl/crypto/ripemd/asm/
rmd-586.pl 46 @sl=( 11,14,15,12, 5, 8, 7, 9,11,13,14,15, 6, 7, 9, 8,
349 &RIP1($A,$B,$C,$D,$E,$wl[ 0],$sl[ 0],-1);
350 &RIP1($E,$A,$B,$C,$D,$wl[ 1],$sl[ 1],0);
351 &RIP1($D,$E,$A,$B,$C,$wl[ 2],$sl[ 2],0);
352 &RIP1($C,$D,$E,$A,$B,$wl[ 3],$sl[ 3],0);
353 &RIP1($B,$C,$D,$E,$A,$wl[ 4],$sl[ 4],0);
354 &RIP1($A,$B,$C,$D,$E,$wl[ 5],$sl[ 5],0);
355 &RIP1($E,$A,$B,$C,$D,$wl[ 6],$sl[ 6],0);
356 &RIP1($D,$E,$A,$B,$C,$wl[ 7],$sl[ 7],0);
357 &RIP1($C,$D,$E,$A,$B,$wl[ 8],$sl[ 8],0)
    [all...]
  /external/stlport/test/unit/
slist_test.cpp 127 slist<int> sl(array, array + 5);
130 slit = sl.erase(sl.begin());
134 slit = sl.erase(sl.begin(), slit);
137 sl.assign(array, array + 5);
139 slit = sl.erase_after(sl.begin());
142 slit = sl.begin(); ++slit; ++slit;
143 slit = sl.erase_after(sl.begin(), slit)
158 slist<int> sl; local
178 slist<int> sl; local
    [all...]
  /ndk/sources/android/stlport/test/unit/
slist_test.cpp 127 slist<int> sl(array, array + 5);
130 slit = sl.erase(sl.begin());
134 slit = sl.erase(sl.begin(), slit);
137 sl.assign(array, array + 5);
139 slit = sl.erase_after(sl.begin());
142 slit = sl.begin(); ++slit; ++slit;
143 slit = sl.erase_after(sl.begin(), slit)
158 slist<int> sl; local
178 slist<int> sl; local
    [all...]
  /system/media/opensles/tests/
mimeUri_test.cpp 66 fprintf(stderr, "%lu SL failure, exiting\n", res);
99 void TestPlayUri( SLObjectItf sl, const char* path)
125 /* Get the SL Engine Interface which is implicit */
126 res = (*sl)->GetInterface(sl, SL_IID_ENGINE, (void*)&EngineItf);
268 SLObjectItf sl; member in class:MimeUri
276 res = slCreateEngine(&sl, 1, EngineOption, 0, NULL, NULL);
279 /* Realizing the SL Engine in synchronous mode. */
280 res = (*sl)->Realize(sl, SL_BOOLEAN_FALSE)
    [all...]
  /system/media/opensles/tests/listening/
slesTest_playMuteSolo.cpp 112 void TestPlayUri( SLObjectItf sl, const char* path)
137 /* Get the SL Engine Interface which is implicit */
138 result = (*sl)->GetInterface(sl, SL_IID_ENGINE, (void*)&EngineItf);
289 SLObjectItf sl; local
308 result = slCreateEngine( &sl, 1, EngineOption, 0, NULL, NULL);
311 /* Realizing the SL Engine in synchronous mode. */
312 result = (*sl)->Realize(sl, SL_BOOLEAN_FALSE);
316 TestPlayUri(sl, argv[1])
    [all...]
  /system/core/nexus/
NetworkManager.h 69 void setBroadcaster(SocketListener *sl) { mBroadcaster = sl; }

Completed in 779 milliseconds

1 2 3 4 5