Lines Matching refs:ret
1220 bool ret = false; in parseOpts() local
1299 ret = true; in parseOpts()
1303 return ret; in parseOpts()
1335 uint32_t ret; in getBCD() local
1343 ret = ((uint16_t)(tmp[1] << 8)) | tmp[0]; in getBCD()
1345 printf("ret: %x\n",ret); in getBCD()
1346 return ret&0xFF; in getBCD()
1413 bool ret = false; in writeFile() local
1455 ret = true; in writeFile()
1459 if (!ret) in writeFile()
1461 return ret; in writeFile()
1591 bool ret = false; in mergeBoot() local
1670 ret = true; in mergeBoot()
1674 return ret; in mergeBoot()
1690 bool ret = false; in unpackEntry() local
1712 ret = true; in unpackEntry()
1716 return ret; in unpackEntry()
1720 bool ret = false; in unpackBoot() local
1756 ret = true; in unpackBoot()
1760 return ret; in unpackBoot()
3102 int i, ret; in handle_command() local
3215 ret = find_config_item(g_ConfigItemVec, "loader"); in handle_command()
3216 if (ret == -1) in handle_command()
3219 bSuccess = download_boot(dev, g_ConfigItemVec[ret].szItemValue); in handle_command()
3359 int ret; in main() local
3402 ret = libusb_init(NULL); in main()
3403 if (ret < 0) { in main()
3405 g_pLogObject->Record("Error: libusb_init failed, err=%d", ret); in main()