/external/sonivox/arm-fm-22k/lib_src/ |
eas_smf.c | 296 /* parse the next event from all the streams */ 328 /* find next event in all streams */ 333 if (pSMFData->streams[i].ticks < temp) 335 temp = pSMFData->streams[i].ticks; 336 pSMFData->nextStream = &pSMFData->streams[i]; 426 /* close all the streams */ 429 if (pSMFData->streams[i].fileHandle != NULL) 431 if ((result = EAS_HWCloseFile(pEASData->hwInstData, pSMFData->streams[i].fileHandle)) != EAS_SUCCESS) 446 if (pSMFData->streams) 447 EAS_HWFree(pEASData->hwInstData, pSMFData->streams); [all...] |
eas_public.c | 286 if (pEASData->streams[0].handle != NULL) 288 { /* dpp: EAS_ReportEx(_EAS_SEVERITY_ERROR, "Attempt to open multiple streams in static model\n"); */ } 296 if (pEASData->streams[streamNum].handle == NULL) 300 { /* dpp: EAS_ReportEx(_EAS_SEVERITY_ERROR, "Exceeded maximum number of open streams\n"); */ } 478 /* if there are streams open, close them */ 482 if (pEASData->streams[i].pParserModule && pEASData->streams[i].handle) 484 if ((result = (*((S_FILE_PARSER_INTERFACE*)(pEASData->streams[i].pParserModule))->pfClose)(pEASData, pEASData->streams[i].handle)) != EAS_SUCCESS) 591 EAS_InitStream(&pEASData->streams[streamNum], pParserModule, streamHandle) [all...] |
eas_data.h | 113 S_EAS_STREAM streams[MAX_NUMBER_STREAMS]; member in struct:s_eas_data_tag
|
eas_miditypes.h | 101 S_SMF_STREAM *streams; /* pointer to individual streams in file */ member in struct:s_smf_data_tag 108 EAS_U16 numStreams; /* actual number of streams */
|
/external/sonivox/arm-hybrid-22k/lib_src/ |
eas_smf.c | 296 /* parse the next event from all the streams */ 328 /* find next event in all streams */ 333 if (pSMFData->streams[i].ticks < temp) 335 temp = pSMFData->streams[i].ticks; 336 pSMFData->nextStream = &pSMFData->streams[i]; 426 /* close all the streams */ 429 if (pSMFData->streams[i].fileHandle != NULL) 431 if ((result = EAS_HWCloseFile(pEASData->hwInstData, pSMFData->streams[i].fileHandle)) != EAS_SUCCESS) 446 if (pSMFData->streams) 447 EAS_HWFree(pEASData->hwInstData, pSMFData->streams); [all...] |
eas_public.c | 286 if (pEASData->streams[0].handle != NULL) 288 { /* dpp: EAS_ReportEx(_EAS_SEVERITY_ERROR, "Attempt to open multiple streams in static model\n"); */ } 296 if (pEASData->streams[streamNum].handle == NULL) 300 { /* dpp: EAS_ReportEx(_EAS_SEVERITY_ERROR, "Exceeded maximum number of open streams\n"); */ } 478 /* if there are streams open, close them */ 482 if (pEASData->streams[i].pParserModule && pEASData->streams[i].handle) 484 if ((result = (*((S_FILE_PARSER_INTERFACE*)(pEASData->streams[i].pParserModule))->pfClose)(pEASData, pEASData->streams[i].handle)) != EAS_SUCCESS) 591 EAS_InitStream(&pEASData->streams[streamNum], pParserModule, streamHandle) [all...] |
eas_data.h | 113 S_EAS_STREAM streams[MAX_NUMBER_STREAMS]; member in struct:s_eas_data_tag
|
eas_miditypes.h | 101 S_SMF_STREAM *streams; /* pointer to individual streams in file */ member in struct:s_smf_data_tag 108 EAS_U16 numStreams; /* actual number of streams */
|
/external/sonivox/arm-wt-22k/lib_src/ |
eas_smf.c | 296 /* parse the next event from all the streams */ 328 /* find next event in all streams */ 333 if (pSMFData->streams[i].ticks < temp) 335 temp = pSMFData->streams[i].ticks; 336 pSMFData->nextStream = &pSMFData->streams[i]; 426 /* close all the streams */ 429 if (pSMFData->streams[i].fileHandle != NULL) 431 if ((result = EAS_HWCloseFile(pEASData->hwInstData, pSMFData->streams[i].fileHandle)) != EAS_SUCCESS) 446 if (pSMFData->streams) 447 EAS_HWFree(pEASData->hwInstData, pSMFData->streams); [all...] |
eas_public.c | 286 if (pEASData->streams[0].handle != NULL) 288 { /* dpp: EAS_ReportEx(_EAS_SEVERITY_ERROR, "Attempt to open multiple streams in static model\n"); */ } 296 if (pEASData->streams[streamNum].handle == NULL) 300 { /* dpp: EAS_ReportEx(_EAS_SEVERITY_ERROR, "Exceeded maximum number of open streams\n"); */ } 479 /* if there are streams open, close them */ 483 if (pEASData->streams[i].pParserModule && pEASData->streams[i].handle) 485 if ((result = (*((S_FILE_PARSER_INTERFACE*)(pEASData->streams[i].pParserModule))->pfClose)(pEASData, pEASData->streams[i].handle)) != EAS_SUCCESS) 592 EAS_InitStream(&pEASData->streams[streamNum], pParserModule, streamHandle) [all...] |
eas_data.h | 115 S_EAS_STREAM streams[MAX_NUMBER_STREAMS]; member in struct:s_eas_data_tag
|
eas_miditypes.h | 101 S_SMF_STREAM *streams; /* pointer to individual streams in file */ member in struct:s_smf_data_tag 108 EAS_U16 numStreams; /* actual number of streams */
|
/cts/tests/tests/media/src/android/media/cts/ |
AudioManagerTest.java | 529 int[] streams = { AudioManager.STREAM_ALARM, local 539 for (int i = 0; i < streams.length; i++) { 540 int maxVolume = mAudioManager.getStreamMaxVolume(streams[i]); 542 mAudioManager.setStreamVolume(streams[i], 1, FLAG_SHOW_UI); 543 assertEquals(1, mAudioManager.getStreamVolume(streams[i])); 545 mAudioManager.setStreamVolume(streams[i], maxVolume, FLAG_SHOW_UI); 546 mAudioManager.adjustStreamVolume(streams[i], ADJUST_RAISE, FLAG_SHOW_UI); 547 assertEquals(maxVolume, mAudioManager.getStreamVolume(streams[i])); 549 mAudioManager.adjustSuggestedStreamVolume(ADJUST_LOWER, streams[i], FLAG_SHOW_UI); 550 assertEquals(maxVolume - 1, mAudioManager.getStreamVolume(streams[i])) [all...] |
/bionic/libc/netbsd/isc/ |
ev_streams.c | 79 if (ctx->streams != NULL) 80 ctx->streams->prev = new; 82 new->next = ctx->streams; 83 ctx->streams = new; 113 if (ctx->streams != NULL) 114 ctx->streams->prev = new; 116 new->next = ctx->streams; 117 ctx->streams = new; 155 * The streams list is doubly threaded. First, there's ctx->streams [all...] |
eventlib_p.h | 205 /* Streams. */ 206 evStream *streams; member in struct:__anon475
|
/dalvik/libcore/luni/src/test/java/tests/api/java/io/ |
SequenceInputStreamTest.java | 77 InputStream streams[] = new InputStream[2]; field in class:SequenceInputStreamTest.StreamEnumerator 82 streams[0] = new ByteArrayInputStream(s1.getBytes()); 83 streams[1] = new ByteArrayInputStream(s2.getBytes()); 87 return count < streams.length; 91 return streams[count++]; 147 // assertEquals("And not on the underlying streams either!", 0, simple1.available()); 148 // assertTrue("And not on the underlying streams either!", simple1.available() <= 0); 149 // assertTrue("And not on the underlying streams either!", simple2.available() <= 0);
|
/external/opencore/tools_v2/build/make/ |
sdkinfo_nr.mk | 102 basis_stream_type := $(shell $(ACCUREV) show -fx -s $(basis_stream) streams | $(GREP) "type=" | $(CUT) -f2 -d"\"") 104 parent_basis_stream := $(shell $(ACCUREV) show -fx -s $(basis_stream) streams | $(GREP) "basis=" | $(CUT) -f2 -d"\"") 109 transaction_id := $(shell $(ACCUREV) show -fx -s $(basis_stream) streams | $(GREP) "name=" | $(CUT) -f2 -d"\"")
|
/external/openssl/crypto/rand/ |
rand_egd.c | 119 # include <streams/un.h>
|
/external/webkit/WebCore/plugins/ |
PluginStream.cpp | 49 static StreamMap& streams() function in namespace:WebCore 79 streams().add(&m_stream, m_instance); 89 streams().remove(&m_stream); 216 return streams().get(stream);
|
/external/webkit/WebKit/mac/Plugins/ |
WebBaseNetscapePluginStream.mm | 80 static StreamMap& streams() 88 return streams().get(stream); 171 streams().add(&m_stream, plugin); 190 streams().remove(&m_stream);
|
WebNetscapePluginView.h | 100 HashSet<RefPtr<WebNetscapePluginStream> > streams; variable
|
/external/bluetooth/bluez/audio/ |
avdtp.c | 376 GSList *streams; /* Elements of type struct avdtp_stream * */ member in struct:avdtp 699 for (l = session->streams; l != NULL; l = g_slist_next(l)) { 928 session->streams = g_slist_remove(session->streams, stream); 936 if (session->ref == 1 && !session->streams) 987 g_slist_foreach(session->streams, (GFunc) release_stream, session); 988 session->streams = NULL; 1318 session->streams = g_slist_append(session->streams, stream); [all...] |
/frameworks/base/media/java/android/media/ |
AudioService.java | 153 /** @hide Maximum volume index values for audio streams */ 216 // Streams currently muted by ringer mode 286 // state on streams affected by ringer mode. 339 VolumeStreamState[] streams = mStreamStates = new VolumeStreamState[numStreamTypes]; local 342 streams[i] = new VolumeStreamState(System.VOLUME_SETTINGS[STREAM_VOLUME_ALIAS[i]], i); 345 // Correct stream index values for streams with aliases 348 int index = rescaleIndex(streams[i].mIndex, STREAM_VOLUME_ALIAS[i], i); 349 streams[i].mIndex = streams[i].getValidIndex(index); 351 index = rescaleIndex(streams[i].mLastAudibleIndex, STREAM_VOLUME_ALIAS[i], i) [all...] |
/external/libpng/ |
example.c | 143 #ifdef streams /* PNG file I/O method 1 */ 144 /* Set up the input control if you are using standard C streams */ 610 #ifdef streams /* I/O initialization method 1 */ 611 /* Set up the output control if you are using standard C streams */
|
/external/sonivox/jet_tools/JetCreator/ |
eas.py | 619 # close audio streams
625 # close output streams
799 # output to attached streams
[all...] |