HomeSort by relevance Sort by last modified time
    Searched refs:hWave (Results 1 - 4 of 4) sorted by null

  /external/srec/srec/cfront/
ca_wave.c 44 CA_Wave *hWave = NULL;
46 hWave = (CA_Wave *) CALLOC_CLR(1, sizeof(CA_Wave), "cfront.hWave");
48 hWave->data.device.file.typ = type;
50 hWave->data.channel = create_channel_object();
51 hWave->is_configured = False;
52 hWave->is_configuredForVoicing = False;
53 hWave->ca_rtti = CA_WAVE_SIGNATURE;
54 return (hWave);
57 END_CATCH_CA_EXCEPT(hWave);
    [all...]
ca_cms.c 47 ESR_ReturnCode CA_SetCMSParameters ( CA_Wave *hWave, const LCHAR *param_string )
51 if ( hWave != NULL )
52 set_status = swicms_set_cmn ( hWave->data.channel->swicms, param_string );
59 ESR_ReturnCode CA_GetCMSParameters ( CA_Wave *hWave, LCHAR *param_string, size_t* len )
63 if ( hWave != NULL )
64 get_status = swicms_get_cmn ( hWave->data.channel->swicms, param_string, len );
71 void CA_ReLoadCMSParameters(CA_Wave *hWave, const char *basename)
73 ASSERT(hWave);
74 if (hWave->is_configuredForAgc == False)
77 if( swicms_init(hWave->data.channel->swicms)
    [all...]