/external/sonivox/jet_tools/JetCreator/ |
eas.py | 22 # EAS error codes
138 eas_logger = logging.getLogger('EAS')
206 # map EAS severity levels to the Python logging module
218 def __init__ (self, handle, eas):
221 self.eas = eas
226 with self.eas.lock:
227 result = eas_dll.EAS_SetVolume(self.eas.handle, self.handle, volume)
234 with self.eas.lock:
235 volume = eas_dll.EAS_GetVolume(self.eas.handle, self.handle) [all...] |
JetUtils.py | 366 e = __import__('eas')
370 eas = e.EAS()
372 eas.LoadDLSCollection(dlsFile)
373 eas.StartWave()
374 audio_file = eas.OpenFile(midiFile)
378 eas.StopWave()
379 eas.Shutdown()
585 """ Gets the length of a midi file via eas """
586 e = __import__('eas')
[all...] |
JetPreview.py | 32 from eas import *
138 self.jet.eas.StartWave()
|
/packages/apps/Exchange/src/com/android/exchange/eas/ |
EasSettings.java | 17 package com.android.exchange.eas;
|
EasOptions.java | 17 package com.android.exchange.eas; 19 import com.android.exchange.Eas; 34 private static final String LOG_TAG = Eas.LOG_TAG; 41 Eas.SUPPORTED_PROTOCOL_EX2003, 42 Eas.SUPPORTED_PROTOCOL_EX2007, Eas.SUPPORTED_PROTOCOL_EX2007_SP1, 43 Eas.SUPPORTED_PROTOCOL_EX2010, Eas.SUPPORTED_PROTOCOL_EX2010_SP1); 111 // The string is a comma separated list of EAS versions in ascending order
|
EasSyncCollectionTypeBase.java | 1 package com.android.exchange.eas; 7 import com.android.exchange.Eas; 33 * Write the contents of a Collection node in an EAS sync request appropriate for our mailbox. 75 * @param protocolVersion The EAS protocol version for this request, as a double. 90 if (protocolVersion >= Eas.SUPPORTED_PROTOCOL_EX2007_DOUBLE) { 93 s.data(Tags.BASE_TYPE, Eas.BODY_PREFERENCE_TEXT); 94 s.data(Tags.BASE_TRUNCATION_SIZE, Eas.EAS12_TRUNCATION_SIZE); 97 s.data(Tags.SYNC_TRUNCATION, Eas.EAS2_5_TRUNCATION_SIZE);
|
EasConnectionCache.java | 17 package com.android.exchange.eas; 24 import com.android.exchange.Eas; 90 LogUtils.d(Eas.LOG_TAG, "Creating new connection manager for HostAuth %d", hostAuth.mId); 118 LogUtils.d(Eas.LOG_TAG, "Aging out connection manager for HostAuth %d", 129 LogUtils.d(Eas.LOG_TAG, "Reusing cached connection manager for HostAuth %d", 163 LogUtils.d(Eas.LOG_TAG, "Uncaching connection manager for HostAuth %d", hostAuth.mId);
|
EasFolderSync.java | 17 package com.android.exchange.eas; 40 * Implements the EAS FolderSync command. We use this both to actually do a folder sync, and also
|
EasSyncBase.java | 1 package com.android.exchange.eas; 12 import com.android.exchange.Eas; 25 * Performs an EAS sync operation for one folder (excluding mail upsync). 30 private static final String TAG = Eas.LOG_TAG; 84 final String className = Eas.getFolderClass(mMailbox.mType); 93 // The "Class" element is removed in EAS 12.1 and later versions 94 if (getProtocolVersion() < Eas.SUPPORTED_PROTOCOL_EX2007_SP1_DOUBLE) {
|
EasLoadAttachment.java | 17 package com.android.exchange.eas; 27 import com.android.exchange.Eas; 126 // These four characters are commonly received in EAS 2.5 attachment names and are 202 if (getProtocolVersion() >= Eas.SUPPORTED_PROTOCOL_EX2010_DOUBLE) { 203 // The operation is different in EAS 14.0 than in earlier versions 207 // For Exchange 2003 (EAS 2.5), we have to look for illegal chars in the file name 208 // that EAS sent to us! 209 if (getProtocolVersion() < Eas.SUPPORTED_PROTOCOL_EX2007_DOUBLE) { 227 if (getProtocolVersion() >= Eas.SUPPORTED_PROTOCOL_EX2010_DOUBLE) { 314 if (getProtocolVersion() >= Eas.SUPPORTED_PROTOCOL_EX2010_DOUBLE) [all...] |
EasMoveItems.java | 1 package com.android.exchange.eas;
|
EasProvision.java | 17 package com.android.exchange.eas; 26 import com.android.exchange.Eas; 39 * Implements the EAS Provision protocol. 53 private static final String LOG_TAG = Eas.LOG_TAG; 55 /** The policy type for versions of EAS prior to 2007. */ 57 /** The policy type for versions of EAS starting with 2007. */ 58 public static final String EAS_12_POLICY_TYPE = "MS-EAS-Provisioning-WBXML"; 60 /** The EAS protocol Provision status for "we implement all of the policies" */ 62 /** The EAS protocol Provision status meaning "we partially implement the policies" */ 202 if (version == Eas.SUPPORTED_PROTOCOL_EX2007_SP1_DOUBL [all...] |
EasSearch.java | 1 package com.android.exchange.eas; 11 import com.android.exchange.Eas; 109 s.data(Tags.SEARCH_VALUE, Eas.DATE_FORMAT.format(mSearchParams.mStartDate)); 115 s.data(Tags.SEARCH_VALUE, Eas.DATE_FORMAT.format(mSearchParams.mEndDate)); 129 s.data(Tags.BASE_TYPE, Eas.BODY_PREFERENCE_HTML);
|
EasSyncMail.java | 1 package com.android.exchange.eas; 13 import com.android.exchange.Eas; 54 // window, body preference type (HTML for EAS 12.0 and later; MIME for EAS 2.5), and 57 // so we turn MIME support off. Note that we are always using EAS 2.5 if there are fetch 64 if (protocolVersion < Eas.SUPPORTED_PROTOCOL_EX2007_DOUBLE) { 80 // Set the lookback appropriately (EAS calls this a "filter") 83 if (protocolVersion >= Eas.SUPPORTED_PROTOCOL_EX2007_DOUBLE) { 86 s.data(Tags.BASE_TYPE, Eas.BODY_PREFERENCE_HTML); 87 s.data(Tags.BASE_TRUNCATION_SIZE, Eas.EAS12_TRUNCATION_SIZE) [all...] |
/packages/apps/Exchange/src/com/android/exchange/service/ |
PingTask.java | 23 import com.android.exchange.Eas; 25 import com.android.exchange.eas.EasOperation; 26 import com.android.exchange.eas.EasPing; 38 private static final String TAG = Eas.LOG_TAG;
|
EasService.java | 38 import com.android.exchange.Eas; 39 import com.android.exchange.eas.EasFolderSync; 40 import com.android.exchange.eas.EasLoadAttachment; 41 import com.android.exchange.eas.EasOperation; 42 import com.android.exchange.eas.EasSearch; 49 * Service to handle all communication with the EAS server. Note that this is completely decoupled 55 private static final String TAG = Eas.LOG_TAG; 58 * The content authorities that can be synced for EAS accounts. Initialization must wait until 224 TextUtils.equals(Eas.EXCHANGE_SERVICE_INTENT_ACTION, intent.getAction())) { 290 account.mEmailAddress, Eas.EXCHANGE_ACCOUNT_MANAGER_TYPE) [all...] |
EmailSyncAdapterService.java | 62 import com.android.exchange.Eas; 66 import com.android.exchange.eas.EasSyncContacts; 67 import com.android.exchange.eas.EasSyncCalendar; 68 import com.android.exchange.eas.EasFolderSync; 69 import com.android.exchange.eas.EasLoadAttachment; 70 import com.android.exchange.eas.EasMoveItems; 71 import com.android.exchange.eas.EasOperation; 72 import com.android.exchange.eas.EasOutboxSync; 73 import com.android.exchange.eas.EasPing; 74 import com.android.exchange.eas.EasSearch [all...] |
PingSyncSynchronizer.java | 25 import com.android.exchange.Eas; 26 import com.android.exchange.eas.EasPing; 41 * sync ops, but some may not be (e.g. EAS Settings). 75 private static final String TAG = Eas.LOG_TAG; 119 Eas.EXCHANGE_ACCOUNT_MANAGER_TYPE);
|
/external/sonivox/arm-fm-22k/ |
Makefile | 60 host_src/eas.h \
|
/frameworks/av/media/libmediaplayerservice/ |
MidiFile.h | 22 #include <libsonivox/eas.h>
|
/packages/apps/Exchange/src/com/android/exchange/adapter/ |
ItemOperationsParser.java | 18 import com.android.exchange.eas.EasLoadAttachment.ProgressCallback; 25 * Parse the result of an ItemOperations command; we use this to load attachments in EAS 14.0
|
/external/sonivox/arm-hybrid-22k/ |
Makefile | 63 host_src/eas.h \
|
/external/sonivox/arm-wt-22k/ |
Android.mk | 72 host_src/eas.h \
|
/frameworks/av/media/libstagefright/ |
StagefrightMediaScanner.cpp | 31 #include <libsonivox/eas.h> 64 ALOGE("EAS library/header mismatch\n"); 69 // spin up a new EAS engine
|
/packages/apps/Exchange/tests/src/com/android/exchange/eas/ |
EasProvisionTests.java | 17 package com.android.exchange.eas; 26 import com.android.exchange.Eas; 35 * runtest -c com.android.exchange.eas.EasProvisionTests exchange 50 final double protocolVersion = Eas.SUPPORTED_PROTOCOL_EX2007_DOUBLE; 80 final double protocolVersion = Eas.SUPPORTED_PROTOCOL_EX2010_SP1_DOUBLE; 111 final double protocolVersion = Eas.SUPPORTED_PROTOCOL_EX2007_DOUBLE; 139 final double protocolVersion = Eas.SUPPORTED_PROTOCOL_EX2007_DOUBLE;
|