/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/base/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
|
/packages/apps/Settings/src/com/android/settings/bluetooth/ |
RequestPermissionHelperActivity.java | 95 int returnCode; 115 returnCode = RequestPermissionActivity.RESULT_BT_STARTING_OR_STARTED; 117 returnCode = RESULT_CANCELED; 122 returnCode = RESULT_CANCELED; 127 setResult(returnCode);
|
RequestPermissionActivity.java | 218 int returnCode; 222 returnCode = RESULT_OK; 228 returnCode = mTimeout; 230 if (returnCode < RESULT_FIRST_USER) { 231 returnCode = RESULT_FIRST_USER; 234 returnCode = RESULT_CANCELED; 241 setResult(returnCode);
|
/frameworks/base/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) {
|
/external/llvm/lib/CompilerDriver/ |
Action.cpp | 48 bool IsSegmentationFault (int returnCode) { 50 return (returnCode >= 0xc0000000UL) 52 return (returnCode < 0);
|
/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])
|
/packages/apps/Nfc/src/com/android/nfc/ |
DeviceHost.java | 74 byte[] transceive(byte[] data, boolean raw, int[] returnCode);
|
/external/webkit/Tools/Scripts/ |
webkitdirs.pm | [all...] |
/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;
|
InstallAppProgress.java | 201 public void packageInstalled(String packageName, int returnCode) { 203 msg.arg1 = returnCode;
|
/external/chromium/chrome/browser/ui/cocoa/ |
browser_window_controller.h | 279 returnCode:(NSInteger)code
|
/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; 195 if (observer.returnCode != PackageManager.INSTALL_SUCCEEDED) { 196 Log.i(TAG, "Failed to install with error code = " + observer.returnCode); 238 assertEquals(expectedResult, observer.returnCode); 773 public void packageDeleted(String packageName, int returnCode) throws RemoteException { 775 this.succeeded = returnCode == PackageManager.DELETE_SUCCEEDED; [all...] |