Searched refs:ResultCode (Results 1 - 25 of 30) sorted by relevance

12

/external/libchrome/sandbox/win/src/
H A Dsandbox_policy.h91 virtual ResultCode SetTokenLevel(TokenLevel initial, TokenLevel lockdown) = 0;
132 virtual ResultCode SetJobLevel(JobLevel job_level,
141 virtual ResultCode SetJobMemoryLimit(size_t memory_limit) = 0;
146 virtual ResultCode SetAlternateDesktop(bool alternate_winstation) = 0;
154 virtual ResultCode CreateAlternateDesktop(bool alternate_winstation) = 0;
163 virtual ResultCode SetIntegrityLevel(IntegrityLevel level) = 0;
173 virtual ResultCode SetDelayedIntegrityLevel(IntegrityLevel level) = 0;
176 virtual ResultCode SetCapability(const wchar_t* sid) = 0;
180 virtual ResultCode SetLowBox(const wchar_t* sid) = 0;
186 virtual ResultCode SetProcessMitigation
[all...]
H A Dcrosscall_client.h25 // ResultCode CrossCall(IPCProvider& ipc_provider,
315 ResultCode CrossCall(IPCProvider& ipc_provider,
322 ResultCode result = ipc_provider.DoCall(call_params, answer);
334 ResultCode CrossCall(IPCProvider& ipc_provider,
343 ResultCode result = ipc_provider.DoCall(call_params, answer);
355 ResultCode CrossCall(IPCProvider& ipc_provider,
366 ResultCode result = ipc_provider.DoCall(call_params, answer);
383 ResultCode CrossCall(IPCProvider& ipc_provider,
396 ResultCode result = ipc_provider.DoCall(call_params, answer);
415 ResultCode CrossCal
[all...]
H A Dsandbox_types.h17 enum ResultCode : int {
H A Dcrosscall_params.h80 ResultCode call_outcome;
/external/ims/rcs/rcsservice/src/com/android/service/ims/
H A DRcsUtils.java37 import com.android.ims.RcsManager.ResultCode;
53 return ResultCode.SUCCESS;
57 return ResultCode.SUBSCRIBE_INVALID_PARAM;
61 return ResultCode.SUBSCRIBE_FETCH_ERROR;
65 return ResultCode.SUBSCRIBE_REQUEST_TIMEOUT;
69 return ResultCode.SUBSCRIBE_INSUFFICIENT_MEMORY;
73 return ResultCode.SUBSCRIBE_LOST_NETWORK;
77 return ResultCode.SUBSCRIBE_NOT_SUPPORTED;
81 return ResultCode.SUBSCRIBE_NOT_FOUND;
87 return ResultCode
[all...]
H A DRcsStackAdaptor.java62 import com.android.ims.RcsManager.ResultCode;
210 return ResultCode.ERROR_SERVICE_NOT_ENABLED;
214 if (ret != ResultCode.SUCCESS) {
222 return ResultCode.ERROR_SERVICE_NOT_PUBLISHED;
225 return ResultCode.SUCCESS;
267 return ResultCode.ERROR_SERVICE_NOT_ENABLED;
274 return ResultCode.ERROR_SERVICE_NOT_AVAILABLE;
279 return ResultCode.ERROR_SERVICE_NOT_AVAILABLE;
284 return ResultCode.ERROR_SERVICE_NOT_AVAILABLE;
289 return ResultCode
[all...]
H A DRcsService.java57 import com.android.ims.RcsManager.ResultCode;
199 * @return the resultCode which is defined by ResultCode.
208 return ResultCode.ERROR_SERVICE_NOT_AVAILABLE;
221 * @return the resultCode which is defined by ResultCode.
228 return ResultCode.ERROR_SERVICE_NOT_AVAILABLE;
243 * @see RcsManager.ResultCode
244 * @see ResultCode.SUBSCRIBE_TOO_FREQUENTLY
250 return ResultCode.ERROR_SERVICE_NOT_AVAILABLE;
H A DRcsSettingUtils.java42 import com.android.ims.RcsManager.ResultCode;
H A DTaskManager.java48 import com.android.ims.RcsManager.ResultCode;
/external/ims/rcs/rcsmanager/src/java/com/android/ims/
H A DRcsPresence.java38 import com.android.ims.RcsManager.ResultCode;
174 * code which is defined by RcsManager.ResultCode (<0).
192 * @return the request ID if it is >0. Or it is RcsManager.ResultCode for error.
195 * @see RcsManager.ResultCode
200 int ret = ResultCode.ERROR_SERVICE_NOT_AVAILABLE;
206 ResultCode.ERROR_SERVICE_NOT_AVAILABLE);
218 * code which is defined by RcsManager.ResultCode (<0).
237 * @return the request ID if it is >0. Or it is RcsManager.ResultCode for error.
240 * @see RcsManager.ResultCode
246 int ret = ResultCode
[all...]
H A DRcsManager.java97 public static class ResultCode { class in class:RcsManager
312 ResultCode.ERROR_SERVICE_NOT_AVAILABLE);
317 ResultCode.ERROR_SERVICE_NOT_AVAILABLE);
334 ResultCode.ERROR_SERVICE_NOT_AVAILABLE);
/external/ims/rcs/rcsservice/src/com/android/service/ims/presence/
H A DPresenceSubscriber.java66 import com.android.ims.RcsManager.ResultCode;
129 if(ret < ResultCode.SUCCESS){
135 ret = ResultCode.SUBSCRIBE_INVALID_PARAM;
141 ret = ResultCode.SUBSCRIBE_TOO_LARGE;
174 if(ret < ResultCode.SUCCESS){
208 return ResultCode.SUBSCRIBE_ALREADY_IN_QUEUE;
212 return ResultCode.SUBSCRIBE_TOO_FREQUENTLY;
224 return ResultCode.ERROR_SERVICE_NOT_AVAILABLE;
228 if(ret < ResultCode.SUCCESS){
242 if(ret < ResultCode
[all...]
H A DPresenceBase.java46 import com.android.ims.RcsManager.ResultCode;
74 if(resultCode >= ResultCode.SUCCESS){
89 if(resultCode != ResultCode.SUCCESS){
121 (resultCode == ResultCode.SUCCESS)){
H A DPresenceAvailabilityTask.java46 import com.android.ims.RcsManager.ResultCode;
H A DPresencePublishTask.java46 import com.android.ims.RcsManager.ResultCode;
H A DPresenceTask.java40 import com.android.ims.RcsManager.ResultCode;
H A DPresencePublication.java65 import com.android.ims.RcsManager.ResultCode;
112 public static final int PUBLISH_ERROR_CODE_START = ResultCode.SUBSCRIBER_ERROR_CODE_END;
133 public static final int PUBLISH_SUCESS = ResultCode.SUCCESS;
563 return ResultCode.ERROR_SERVICE_NOT_AVAILABLE;
568 return ResultCode.SUCCESS;
575 return ResultCode.ERROR_SERVICE_NOT_AVAILABLE;
582 return ResultCode.ERROR_SERVICE_NOT_AVAILABLE;
590 return ResultCode.SUCCESS;
682 return ResultCode.SUCCESS;
689 return ResultCode
[all...]
H A DPresenceCapabilityTask.java45 import com.android.ims.RcsManager.ResultCode;
H A DPresenceInfoParser.java41 import com.android.ims.RcsManager.ResultCode;
H A DStackListener.java59 import com.android.ims.RcsManager.ResultCode;
/external/llvm/utils/lit/lit/
H A DTest.py7 class ResultCode(object): class in inherits:object
11 # provides unique ResultCode objects in any particular instance.
16 cls._instances[name] = res = super(ResultCode, cls).__new__(cls)
29 PASS = ResultCode('PASS', False)
30 FLAKYPASS = ResultCode('FLAKYPASS', False)
31 XFAIL = ResultCode('XFAIL', False)
32 FAIL = ResultCode('FAIL', True)
33 XPASS = ResultCode('XPASS', True)
34 UNRESOLVED = ResultCode('UNRESOLVED', True)
35 UNSUPPORTED = ResultCode('UNSUPPORTE
[all...]
/external/ims/rcs/presencepolling/src/com/android/service/ims/presence/
H A DPollingAction.java39 import com.android.ims.RcsManager.ResultCode;
120 mResult = ResultCode.SUBSCRIBE_NOT_FOUND;
133 mResult = ResultCode.ERROR_SERVICE_NOT_AVAILABLE;
149 mResult = ResultCode.SUCCESS;
160 if (mResult == ResultCode.SUCCESS) {
189 if (ResultCode.SUBSCRIBE_TEMPORARY_ERROR == mResult) {
H A DPersistService.java46 import com.android.ims.RcsManager.ResultCode;
H A DCapabilityPolling.java59 import com.android.ims.RcsManager.ResultCode;
/external/swiftshader/third_party/LLVM/utils/TableGen/
H A DIntrinsicEmitter.cpp668 std::string ResultCode = local
670 Results.push_back(StringMatcher::StringPair(I->first, ResultCode));

Completed in 943 milliseconds

12