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

1 2

  /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
  /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...]
  /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;
233 returnCode = mTimeout;
235 if (returnCode < RESULT_FIRST_USER) {
236 returnCode = RESULT_FIRST_USER;
239 returnCode = RESULT_CANCELED;
246 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 66 int returnCode = PlatformUI.createAndRunWorkbench(display,
68 if (returnCode == PlatformUI.RETURN_RESTART) {
  /external/webkit/Tools/Scripts/
webkitdirs.pm     [all...]
  /packages/apps/Nfc/src/com/android/nfc/
DeviceHost.java 74 byte[] transceive(byte[] data, boolean raw, int[] returnCode);
  /development/apps/Development/src/com/android/development/
PackageBrowser.java 147 public void packageDeleted(String packageName, int returnCode)
149 if (returnCode == PackageManager.DELETE_SUCCEEDED) {
  /packages/apps/PackageInstaller/src/com/android/packageinstaller/
UninstallAppProgress.java 111 public void packageDeleted(String packageName, int returnCode) {
113 msg.arg1 = returnCode;
  /frameworks/base/core/tests/coretests/src/android/content/pm/
PackageManagerTests.java 96 public int returnCode;
99 public void packageInstalled(String packageName, int returnCode) {
101 this.returnCode = returnCode;
196 if (observer.returnCode != PackageManager.INSTALL_SUCCEEDED) {
198 + observer.returnCode);
201 if (observer.returnCode == PackageManager.INSTALL_SUCCEEDED) {
250 assertEquals(expectedResult, observer.returnCode);
794 public void packageDeleted(String packageName, int returnCode) throws RemoteException {
796 this.succeeded = returnCode == PackageManager.DELETE_SUCCEEDED
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/
browser_window_controller.h 279 returnCode:(NSInteger)code

Completed in 298 milliseconds

1 2