Searched defs:result (Results 76 - 100 of 825) sorted by relevance

1234567891011>>

/frameworks/compile/mclinker/lib/Script/
H A DNameSpec.cpp34 NameSpec* result = g_NameSpecFactory->allocate(); local
35 new (result) NameSpec(pName, pAsNeeded);
36 return result;
H A DStrToken.cpp34 StrToken* result = g_StrTokenFactory->allocate(); local
35 new (result) StrToken(String, pString);
36 return result;
H A DStringList.cpp42 StringList* result = g_StringListFactory->allocate(); local
43 new (result) StringList();
44 return result;
H A DWildcardPattern.cpp50 WildcardPattern* result = g_WildcardPatternFactory->allocate(); local
51 new (result) WildcardPattern(pPattern, pPolicy);
52 return result;
/frameworks/compile/mclinker/lib/Support/
H A DLEB128.cpp97 uint64_t result = 0; local
111 result = ((*(pBuf + 3) & 0x7f) << 21) | ((*(pBuf + 2) & 0x7f) << 14) |
127 result |= (static_cast<uint64_t>(byte & 0x7f) << shift);
132 return result;
138 uint64_t result; local
141 result = byte & 0x7f;
143 return result;
146 result |= ((byte & 0x7f) << 7);
148 return result;
151 result |
185 uint64_t result = 0; local
206 uint64_t result = 0; local
[all...]
H A DMemoryAreaFactory.cpp29 MemoryArea* result = allocate(); local
30 new (result) MemoryArea(name);
31 m_AreaMap[name] = result;
32 return result;
43 MemoryArea* result = allocate(); local
44 new (result) MemoryArea(name);
45 m_AreaMap[name] = result;
46 return result;
56 MemoryArea* result = allocate(); local
57 new (result) MemoryAre
[all...]
/frameworks/compile/mclinker/unittests/
H A DStaticResolverTest.cpp58 bool result = m_pResolver->resolve(*old_sym, *new_sym, override, 0x0); local
59 ASSERT_TRUE(result);
84 bool result = m_pResolver->resolve(*old_sym, *new_sym, override, 0x0); local
85 ASSERT_TRUE(result);
111 bool result = m_pResolver->resolve(*old_sym, *new_sym, override, 0x0); local
112 ASSERT_TRUE(result);
138 bool result = m_pResolver->resolve(*old_sym, *new_sym, override, 0x0); local
139 ASSERT_TRUE(result);
159 bool result = m_pResolver->resolve(*old_sym, *new_sym, override, 0x0); local
160 ASSERT_TRUE(result);
188 bool result = m_pResolver->resolve(*old_sym, *new_sym, override, 0x0); local
209 bool result = m_pResolver->resolve(*old_sym, *new_sym, override, 0x0); local
234 bool result = m_pResolver->resolve(*old_sym, *new_sym, override, 0x0); local
257 bool result = m_pResolver->resolve(*old_sym, *new_sym, override, 0x0); local
[all...]
/frameworks/native/libs/input/tests/
H A DInputChannel_test.cpp63 status_t result = InputChannel::openInputChannelPair(String8("channel name"), local
66 ASSERT_EQ(OK, result)
114 status_t result = InputChannel::openInputChannelPair(String8("channel name"), local
117 ASSERT_EQ(OK, result)
128 status_t result = InputChannel::openInputChannelPair(String8("channel name"), local
131 ASSERT_EQ(OK, result)
144 status_t result = InputChannel::openInputChannelPair(String8("channel name"), local
147 ASSERT_EQ(OK, result)
/frameworks/native/services/inputflinger/
H A DInputManager.cpp54 status_t result = mDispatcherThread->run("InputDispatcher", PRIORITY_URGENT_DISPLAY); local
55 if (result) {
56 ALOGE("Could not start InputDispatcher thread due to error %d.", result);
57 return result;
60 result = mReaderThread->run("InputReader", PRIORITY_URGENT_DISPLAY);
61 if (result) {
62 ALOGE("Could not start InputReader thread due to error %d.", result);
65 return result;
72 status_t result = mReaderThread->requestExitAndWait(); local
73 if (result) {
[all...]
/frameworks/native/services/inputflinger/host/
H A DInputFlinger.cpp51 String8 result; local
57 result.appendFormat("Permission Denial: "
60 dumpInternal(result);
62 write(fd, result.string(), result.size());
66 void InputFlinger::dumpInternal(String8& result) { argument
67 result.append("INPUT FLINGER (dumpsys inputflinger)\n");
68 mHost->dump(result);
/frameworks/native/services/sensorservice/
H A DLinearAccelerationSensor.cpp52 bool result = mGravitySensor.process(outEvent, event); local
53 if (result && event.type == SENSOR_TYPE_ACCELEROMETER) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DResultException.java30 public ResultException(ResultCode result) { argument
36 switch (result) {
46 "For result code, " + result +
52 mResult = result;
57 public ResultException(ResultCode result, String explanation) { argument
58 this(result);
62 public ResultException(ResultCode result, int additionalInfo) { argument
63 this(result);
73 public ResultException(ResultCode result, in argument
78 public ResultCode result() { method in class:ResultException
[all...]
/frameworks/support/media-compat/api23/android/support/v4/media/
H A DMediaBrowserServiceCompatApi23.java31 void onLoadItem(String itemId, ResultWrapper<Parcel> result); argument
41 public void onLoadItem(String itemId, Result<MediaBrowser.MediaItem> result) { argument
43 new ResultWrapper<Parcel>(result));
/frameworks/volley/src/main/java/com/android/volley/
H A DResponse.java41 /** Returns a successful response containing the parsed result. */
42 public static <T> Response<T> success(T result, Cache.Entry cacheEntry) { argument
43 return new Response<T>(result, cacheEntry);
55 public final T result; field in class:Response
74 private Response(T result, Cache.Entry cacheEntry) { argument
75 this.result = result;
81 this.result = null;
/frameworks/wilhelm/src/itf/
H A DIAudioDecoderCapabilities.c28 result = SL_RESULT_PARAMETER_INVALID;
30 result = SL_RESULT_SUCCESS;
37 result = SL_RESULT_PARAMETER_INVALID;
54 result = GetCodecCapabilities(decoderId, pIndex, pDescriptor, DecoderDescriptors); local
H A DIAudioEncoderCapabilities.c28 result = SL_RESULT_PARAMETER_INVALID;
30 result = SL_RESULT_SUCCESS;
37 result = SL_RESULT_PARAMETER_INVALID;
54 result = GetCodecCapabilities(encoderId, pIndex, pDescriptor, local
H A DILEDArray.c30 result = SL_RESULT_SUCCESS;
41 result = SL_RESULT_PARAMETER_INVALID;
48 result = SL_RESULT_SUCCESS;
59 result = SL_RESULT_PARAMETER_INVALID; local
75 result = SL_RESULT_SUCCESS;
87 result = SL_RESULT_PARAMETER_INVALID;
95 result = SL_RESULT_SUCCESS;
/frameworks/wilhelm/src/objects/
H A DCAudioPlayer.c27 SLresult result = SL_RESULT_SUCCESS; local
30 result = android_audioPlayer_realize(thiz, async);
34 result = SndFile_Realize(thiz);
41 return result;
H A DCOutputMix.c26 SLresult result = SL_RESULT_SUCCESS; local
30 result = android_outputMix_realize(thiz, async);
33 return result;
/frameworks/wilhelm/src/
H A Dsl_entry.c27 result = liCreateEngine(pEngine, numOptions, pEngineOptions, numInterfaces, pInterfaceIds, local
41 result = liQueryNumSupportedInterfaces(pNumSupportedInterfaces, local
57 result = liQuerySupportedInterfaces(index, pInterfaceId, objectIDtoClass(SL_OBJECTID_ENGINE)); local
H A Dtrace.c41 void slTraceLeaveGlobal(const char *function, SLresult result) argument
43 if (SL_RESULT_SUCCESS == result) {
49 const char *str = slesutResultToString(result);
53 SL_LOGW("Leaving %s (0x%X)", function, result);
86 void slTraceLeaveInterface(const char *function, SLresult result) argument
101 if (SL_RESULT_SUCCESS == result) {
112 const char *str = slesutResultToString(result);
119 &underscore[1], result);
125 SL_LOGW("Leaving %s (0x%X)", function, result);
H A Dxa_entry.c27 result = liCreateEngine((SLObjectItf *) pEngine, numOptions, local
42 result = liQueryNumSupportedInterfaces(pNumSupportedInterfaces, local
56 result = liQuerySupportedInterfaces(index, (SLInterfaceID *) pInterfaceId, local
/frameworks/wilhelm/tests/sandbox/
H A Dengine.c27 SLresult result; local
29 result = slQueryNumSupportedEngineInterfaces(&numSupportedInterfaces);
30 assert(SL_RESULT_SUCCESS == result);
31 result = slQueryNumSupportedEngineInterfaces(NULL);
32 assert(SL_RESULT_PARAMETER_INVALID == result);
45 result = slQuerySupportedEngineInterfaces(index, &interfaceID);
47 assert(SL_RESULT_SUCCESS == result);
53 assert(SL_RESULT_PARAMETER_INVALID == result);
55 result = slQuerySupportedEngineInterfaces(index, NULL);
56 assert(SL_RESULT_PARAMETER_INVALID == result);
[all...]
H A Dsrcsink.c26 SLresult result; local
30 result = slCreateEngine(&engineObject, 0, NULL, 0, NULL, NULL);
31 assert(SL_RESULT_SUCCESS == result);
33 result = (*engineObject)->Realize(engineObject, SL_BOOLEAN_FALSE);
34 assert(SL_RESULT_SUCCESS == result);
35 result = (*engineObject)->GetInterface(engineObject, SL_IID_ENGINE, &engineEngine);
36 assert(SL_RESULT_SUCCESS == result);
66 result = (*engineEngine)->CreateAudioPlayer(engineEngine, &playerObject, &audioSrc,
68 assert(SL_RESULT_PARAMETER_INVALID == result);
73 result
[all...]
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
H A DAudioGain.cpp105 String8 result; local
108 result.append(buffer);
110 result.append(buffer);
112 result.append(buffer);
114 result.append(buffer);
116 result.append(buffer);
118 result.append(buffer);
120 result.append(buffer);
122 result.append(buffer);
124 result
[all...]

Completed in 3252 milliseconds

1234567891011>>