HomeSort by relevance Sort by last modified time
    Searched defs:ret_err (Results 1 - 3 of 3) sorted by null

  /system/core/init/
init_parser.cpp 74 std::string ret_err; local
75 if (!section_parser->ParseSection(args, &ret_err)) {
76 parse_error(&state, "%s\n", ret_err.c_str());
80 std::string ret_err; local
82 state.line, &ret_err)) {
83 parse_error(&state, "%s\n", ret_err.c_str());
  /external/libopus/tests/
test_opus_api.c 413 int *ret_err; local
414 ret_err = c?0:&err;
420 VG_UNDEF(ret_err,sizeof(*ret_err));
421 dec = opus_multistream_decoder_create(48000, 2, 1, 0, mapping, ret_err);
422 if(ret_err){VG_CHECK(ret_err,sizeof(*ret_err));}
423 if((ret_err && *ret_err!=OPUS_BAD_ARG) || dec!=NULL)test_failed()
    [all...]
test_opus_encode.c 149 int *ret_err; local
150 ret_err = i?0:&err;
151 MSenc = opus_multistream_encoder_create(8000, 2, 2, 0, mapping, OPUS_UNIMPLEMENTED, ret_err);
152 if((ret_err && *ret_err != OPUS_BAD_ARG) || MSenc!=NULL)test_failed();
154 MSenc = opus_multistream_encoder_create(8000, 0, 1, 0, mapping, OPUS_APPLICATION_VOIP, ret_err);
155 if((ret_err && *ret_err != OPUS_BAD_ARG) || MSenc!=NULL)test_failed();
157 MSenc = opus_multistream_encoder_create(44100, 2, 2, 0, mapping, OPUS_APPLICATION_VOIP, ret_err);
158 if((ret_err && *ret_err != OPUS_BAD_ARG) || MSenc!=NULL)test_failed()
    [all...]

Completed in 126 milliseconds