HomeSort by relevance Sort by last modified time
    Searched full:returncode (Results 1 - 25 of 40) sorted by null

1 2

  /packages/apps/Settings/src/com/android/settings/bluetooth/
RequestPermissionHelperActivity.java 90 int returnCode;
109 returnCode = RequestPermissionActivity.RESULT_BT_STARTING_OR_STARTED;
111 returnCode = Activity.RESULT_CANCELED;
116 returnCode = Activity.RESULT_CANCELED;
121 setResult(returnCode);
RequestPermissionActivity.java 209 int returnCode;
213 returnCode = Activity.RESULT_OK;
218 returnCode = mTimeout;
220 if (returnCode < Activity.RESULT_FIRST_USER) {
221 returnCode = Activity.RESULT_FIRST_USER;
224 returnCode = Activity.RESULT_CANCELED;
231 setResult(returnCode);
  /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);
  /external/webkit/WebCore/WebCore.gyp/scripts/
action_useragentstylesheets.py 95 returnCode = subprocess.call(command)
96 assert returnCode == 0
98 return returnCode
rule_bison.py 72 returnCode = subprocess.call(['bison', '-d', '-p', prefix, inputFile, '-o', outputCpp])
73 assert returnCode == 0
rule_gperf.py 81 returnCode = subprocess.call(command, stdout=ofile.fileno())
82 assert returnCode == 0
action_csspropertynames.py 140 returnCode = subprocess.call(command)
141 assert returnCode == 0
162 return returnCode
rule_binding.py 116 returnCode = subprocess.call(command)
117 assert returnCode == 0
131 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/webkit/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];
241 [[NSApplication sharedApplication] beginSheet:panel modalForWindow:window modalDelegate:self didEndSelector:@selector(sheetDidEnd:returnCode:contextInfo:) contextInfo:NULL];
244 - (void)sheetDidEnd:(NSWindow *)sheet returnCode:(int)returnCode contextInfo:(void *)contextInfo
252 if (returnCode == 0) {
  /development/testrunner/
run_command.py 115 if pipe.returncode:
117 pipe.returncode))
170 if subproc.returncode != 0: # In case of error print the output
172 return subproc.returncode
  /external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/port/
chromium.py 189 def returncode(self): member in class:ChromiumDriver
190 return self._proc.returncode
218 # ctrl+c is for the subprocess returncode to be negative
220 if (-1073741510 == self._proc.returncode or
221 - signal.SIGINT == self._proc.returncode):
mac.py 301 def returncode(self): member in class:MacDriver
302 return self._proc.returncode
340 # ctrl+c is for the subprocess returncode to be negative
342 if (-1073741510 == self.returncode() or
343 - signal.SIGINT == self.returncode()):
366 if (-1073741510 == self.returncode() or
367 - signal.SIGINT == self.returncode()):
test.py 137 def returncode(self): member in class:TestDriver
base.py 635 """Returns None if the Driver is still running. Returns the returncode
639 def returncode(self): member in class:Driver
640 """Returns the system-specific returncode if the Driver has stopped or
642 raise NotImplementedError('Driver.returncode')
  /build/tools/releasetools/
common.py 109 assert p1.returncode == 0, "mkbootfs of %s ramdisk failed" % (targetname,)
110 assert p2.returncode == 0, "minigzip of %s ramdisk failed" % (targetname,)
129 assert p.returncode == 0, "mkbootimg of %s image failed" % (
159 if p.returncode != 0:
185 if p.returncode == 0:
230 if p.returncode != 0:
231 raise ExternalError("signapk.jar failed: return code %s" % (p.returncode,))
236 if p.returncode != 0:
237 raise ExternalError("zipalign failed: return code %s" % (p.returncode,))
img_from_target_files 66 assert p.returncode == 0, "mkyaffs2image of userdata.img image failed"
100 assert p.returncode == 0, "mkyaffs2image of system.img image failed"
  /external/gtest/test/
gtest_test_utils.py 158 self._return_code = p.returncode
171 # subprocess.Popen.returncode.
  /packages/apps/PackageInstaller/src/com/android/packageinstaller/
InstallAppProgress.java 169 public void packageInstalled(String packageName, int returnCode) {
171 msg.arg1 = returnCode;
  /frameworks/base/core/tests/coretests/src/android/content/pm/
PackageManagerTests.java 104 public int returnCode;
107 public void packageInstalled(String packageName, int returnCode) {
109 this.returnCode = returnCode;
200 if (observer.returnCode != PackageManager.INSTALL_SUCCEEDED) {
201 Log.i(TAG, "Failed to install with error code = " + observer.returnCode);
235 assertEquals(observer.returnCode, result);
    [all...]
  /external/dropbear/
session.h 180 /* Used to avoid a race in the exit returncode handling - see
  /external/v8/tools/
presubmit.py 220 return process.returncode == 0

Completed in 207 milliseconds

1 2