HomeSort by relevance Sort by last modified time
    Searched refs:returnCode (Results 1 - 25 of 58) sorted by null

1 2 3

  /frameworks/base/core/java/android/content/pm/
IPackageInstallObserver.aidl 25 void packageInstalled(in String packageName, int returnCode);
IPackageMoveObserver.aidl 25 void packageMoved(in String packageName, int returnCode);
IPackageDeleteObserver.aidl 26 void packageDeleted(in String packageName, in int returnCode);
  /frameworks/av/media/libstagefright/codecs/aacenc/SampleCode/
AAC_E_SAMPLES.c 151 int returnCode;
159 returnCode = parsecmdline(argc,argv, &infileName, &outfileName, &aacpara);
160 if(returnCode)
205 returnCode = pGetAPI(&AudioAPI);
206 if(returnCode)
211 returnCode = AudioAPI.Init(&hCodec, VO_AUDIO_CodingAAC, &useData);
212 if(returnCode < 0)
218 returnCode = AudioAPI.SetParam(hCodec, VO_PID_AAC_ENCPARAM, &aacpara);
233 returnCode = AudioAPI.SetInputData(hCodec,&inData);
239 returnCode = AudioAPI.GetOutputData(hCodec,&outData, &outInfo)
    [all...]
  /external/webkit/Source/WebCore/WebCore.gyp/scripts/
action_useragentstylesheets.py 95 returnCode = subprocess.call(command)
96 assert returnCode == 0
98 return returnCode
rule_binding.py 129 returnCode = subprocess.call(command)
130 assert returnCode == 0
132 return returnCode
rule_bison.py 72 returnCode = subprocess.call(['bison', '-d', '-p', prefix, inputFile, '-o', outputCpp])
73 assert returnCode == 0
action_csspropertynames.py 140 returnCode = subprocess.call(command)
141 assert returnCode == 0
162 return returnCode
action_cssvaluekeywords.py 146 returnCode = subprocess.call(command)
147 assert returnCode == 0
168 return returnCode
action_makenames.py 155 returnCode = subprocess.call(command)
156 assert returnCode == 0
170 return returnCode
  /external/chromium/chrome/browser/ui/login/
login_prompt_mac.h 28 returnCode:(int)returnCode
  /hardware/samsung_slsi/exynos5/libsecurepath/
tci.h 52 tciReturnCode_t returnCode; /**< Return code of command */
  /frameworks/av/media/libstagefright/codecs/amrwbenc/SampleCode/
AMRWB_E_SAMPLE.c 81 int returnCode;
148 returnCode = pGetAPI(&AudioAPI);
149 if(returnCode)
206 returnCode = AudioAPI.SetInputData(hCodec,&inData);
209 returnCode = AudioAPI.GetOutputData(hCodec,&outData, &outFormat);
210 if(returnCode == 0)
225 else if(returnCode == VO_ERR_LICENSE_ERROR)
230 } while(returnCode != VO_ERR_INPUT_BUFFER_SMALL);
241 } while (!eofFile && returnCode);
245 returnCode = AudioAPI.Uninit(hCodec)
    [all...]
  /hardware/samsung_slsi/exynos5/libkeymaster/
tci.h 82 tciReturnCode_t returnCode; /**< Return code of command */
tlcTeeKeymaster_if.c 214 if (RET_OK != pTci->response.header.returnCode)
217 pTci->response.header.returnCode);
342 if (RET_OK != pTci->response.header.returnCode)
345 pTci->response.header.returnCode);
473 if (RET_OK != pTci->response.header.returnCode)
476 pTci->response.header.returnCode);
557 if (RET_OK != pTci->response.header.returnCode)
560 pTci->response.header.returnCode);
683 if (RET_OK != pTci->response.header.returnCode)
686 pTci->response.header.returnCode);
    [all...]
  /external/webkit/Source/WebKit/mac/Panels/
WebAuthenticationPanel.h 62 - (void)sheetDidEnd:(NSWindow *)sheet returnCode:(int)returnCode contextInfo:(void *)contextInfo;
WebAuthenticationPanel.m 80 [[NSApplication sharedApplication] endSheet:panel returnCode:1];
96 [[NSApplication sharedApplication] endSheet:panel returnCode:0];
246 [[NSApplication sharedApplication] beginSheet:panel modalForWindow:window modalDelegate:self didEndSelector:@selector(sheetDidEnd:returnCode:contextInfo:) contextInfo:NULL];
249 - (void)sheetDidEnd:(NSWindow *)sheet returnCode:(int)returnCode contextInfo:(void *)contextInfo
257 if (returnCode == 0) {
  /packages/apps/Settings/src/com/android/settings/bluetooth/
RequestPermissionHelperActivity.java 101 int returnCode;
121 returnCode = RequestPermissionActivity.RESULT_BT_STARTING_OR_STARTED;
123 returnCode = RESULT_CANCELED;
128 returnCode = RESULT_CANCELED;
133 setResult(returnCode);
RequestPermissionActivity.java 223 int returnCode;
227 returnCode = RESULT_OK;
237 returnCode = mTimeout;
239 if (returnCode < RESULT_FIRST_USER) {
240 returnCode = RESULT_FIRST_USER;
243 returnCode = RESULT_CANCELED;
250 setResult(returnCode);
  /external/webkit/Tools/MiniBrowser/mac/
AppDelegate.m 245 didEndSelector:@selector(openPanelDidEnd:returnCode:contextInfo:)
249 - (void)openPanelDidEnd:(NSOpenPanel *)sheet returnCode:(int)returnCode contextInfo:(void *)contextInfo
252 if (returnCode != NSOKButton || ![[sheet filenames] count])
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
UnpackUpdateJars.java 110 int returnCode = 0;
112 returnCode = proc.waitFor();
117 if (returnCode!=0)
118 System.out.println("returnCode: " + returnCode);
  /sdk/eclipse/plugins/com.android.ide.eclipse.monitor/src/com/android/ide/eclipse/monitor/
MonitorApplication.java 78 int returnCode = PlatformUI.createAndRunWorkbench(display,
80 if (returnCode == PlatformUI.RETURN_RESTART) {
  /external/webkit/Tools/Scripts/
webkitdirs.pm     [all...]
  /tools/motodev/src/plugins/installer/src/com/motorola/studio/android/installer/ui/dialogs/
AcceptLicensesDialog.java 346 int returnCode = OK;
349 returnCode = super.open();
351 return returnCode;
  /packages/apps/Nfc/src/com/android/nfc/
DeviceHost.java 84 byte[] transceive(byte[] data, boolean raw, int[] returnCode);

Completed in 1200 milliseconds

1 2 3