Searched defs:status (Results 226 - 250 of 305) sorted by path

1234567891011>>

/frameworks/compile/mclinker/lib/LD/
H A DGNUArchiveReader.cpp129 Archive::Symbol::Status status = local
131 if (Archive::Symbol::Unknown != status)
132 pArchive.setSymbolStatus(idx, status);
134 if (Archive::Symbol::Include == status) {
/frameworks/compile/mclinker/lib/Support/
H A DDirectory.cpp102 FileStatus Directory::status() const function in class:Directory
106 // optimization: if the symlink status is known, and it isn't a symlink,
107 // then status and symlink_status are identical so just copy the
108 // symlink status to the regular status.
114 else detail::status(m_Path,m_FileStatus);
/frameworks/ex/variablespeed/jni/
H A Dvariablespeed.cc792 SLuint32 status; local
794 OpenSL(caller, GetPrefetchStatus, &status);
797 (status == SL_PREFETCHSTATUS_UNDERFLOW)) {
/frameworks/native/cmds/dumpstate/
H A Dutils.c292 int status; local
293 pid_t p = waitpid(pid, &status, WNOHANG);
296 if (WIFSIGNALED(status)) {
297 printf("*** %s: Killed by signal %d\n", command, WTERMSIG(status));
298 } else if (WIFEXITED(status) && WEXITSTATUS(status) > 0) {
299 printf("*** %s: Exit code %d\n", command, WEXITSTATUS(status));
302 return status;
/frameworks/native/cmds/installd/
H A Dcommands.c623 int status; local
630 got_pid = waitpid(pid, &status, 0);
643 if (WIFEXITED(status) && WEXITSTATUS(status) == 0) {
647 ALOGW("DexInv: --- END '%s' --- status=0x%04x, process failed\n",
648 apk_path, status);
649 return status; /* always nonzero */
/frameworks/native/cmds/servicemanager/
H A Dbctest.c36 unsigned status; local
49 status = bio_get_uint32(&reply);
53 return status;
H A Dbinder.c163 int status)
178 if (status) {
182 data.txn.data = &status;
160 binder_send_reply(struct binder_state *bs, struct binder_io *reply, void *buffer_to_free, int status) argument
/frameworks/native/include/android/
H A Dsensor.h105 int8_t status; member in struct:ASensorVector
/frameworks/native/libs/binder/
H A DBpBinder.cpp164 status_t status = IPCThreadState::self()->transact( local
166 if (status == DEAD_OBJECT) mAlive = 0;
167 return status;
H A DParcel.cpp765 status_t status; local
769 status = writeInt32(0);
770 if (status) return status;
785 status = result;
789 status = -errno;
793 status = result;
795 status = writeInt32(1);
796 if (!status) {
797 status
1000 status_t status; local
1164 status_t status = readInt32(&useAshmem); local
[all...]
H A DProcessState.cpp207 // driver API does not return status.
218 status_t status = IPCThreadState::self()->transact( local
220 if (status == DEAD_OBJECT)
/frameworks/native/libs/gui/
H A DGLConsumer.cpp405 status_t status = releaseBufferLocked( local
408 if (status < NO_ERROR) {
410 strerror(-status), status);
411 err = status;
/frameworks/native/libs/input/
H A DInput.cpp528 status_t status = mSamplePointerCoords.editTop().readFromParcel(parcel); local
529 if (status) {
530 return status;
567 status_t status = (pc++)->writeToParcel(parcel); local
568 if (status) {
569 return status;
H A DInputTransport.cpp825 status_t status = OK; local
826 while (!status && chainIndex-- > 0) {
827 status = sendUnchainedFinishedSignal(chainSeqs[chainIndex], handled);
829 if (status) {
837 return status;
H A DKeyCharacterMap.cpp113 status_t status = Tokenizer::open(filename, &tokenizer); local
114 if (status) {
115 ALOGE("Error %d opening key character map file %s.", status, filename.string());
117 status = load(tokenizer, format, outMap);
120 return status;
128 status_t status = Tokenizer::fromContents(filename, contents, &tokenizer); local
129 if (status) {
130 ALOGE("Error %d opening key character map.", status);
132 status = load(tokenizer, format, outMap);
135 return status;
140 status_t status = OK; local
691 status_t status = parseType(); local
695 status_t status = parseMap(); local
699 status_t status = parseKey(); local
710 status_t status = parseKeyProperty(); local
893 status_t status = parseModifier(token, &metaState); local
930 status_t status = parseCharacterLiteral(&character); local
[all...]
H A DKeyLayoutMap.cpp55 status_t status = Tokenizer::open(filename, &tokenizer); local
56 if (status) {
57 ALOGE("Error %d opening key layout map file %s.", status, filename.string());
62 status = NO_MEMORY;
68 status = parser.parse();
75 if (!status) {
81 return status;
176 status_t status = parseKey(); local
177 if (status) return status;
180 status_t status = parseAxis(); local
[all...]
H A DKeyboard.cpp48 status_t status = loadKeyLayout(deviceIdenfifier, keyLayoutName); local
49 if (status == NAME_NOT_FOUND) {
59 status_t status = loadKeyCharacterMap(deviceIdenfifier, keyCharacterMapName); local
60 if (status == NAME_NOT_FOUND) {
114 status_t status = KeyLayoutMap::load(path, &keyLayoutMap); local
115 if (status) {
116 return status;
131 status_t status = KeyCharacterMap::load(path, local
133 if (status) {
134 return status;
[all...]
H A DVirtualKeyMap.cpp53 status_t status = Tokenizer::open(filename, &tokenizer); local
54 if (status) {
55 ALOGE("Error %d opening virtual key map file %s.", status, filename.string());
60 status = NO_MEMORY;
66 status = parser.parse();
73 if (status) {
81 return status;
/frameworks/native/libs/input/tests/
H A DInputPublisherAndConsumer_test.cpp71 status_t status; local
85 status = mPublisher->publishKeyEvent(seq, deviceId, source, action, flags,
87 ASSERT_EQ(OK, status)
92 status = mConsumer->consume(&mEventFactory, true /*consumeBatches*/, -1, &consumeSeq, &event);
93 ASSERT_EQ(OK, status)
114 status = mConsumer->sendFinishedSignal(seq, true);
115 ASSERT_EQ(OK, status)
120 status = mPublisher->receiveFinishedSignal(&finishedSeq, &handled);
121 ASSERT_EQ(OK, status)
130 status_t status; local
253 status_t status; local
265 status_t status; local
[all...]
/frameworks/native/opengl/libagl/
H A Dmatrix.cpp1123 GLbitfield status = 0; local
1127 status |= 1<<i;
1133 return status;
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_eglapi.cpp44 * the trace status according to commands received from the host.
116 int status = 0; local
131 status = -1;
147 return status;
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DGLES11RenderEngine.cpp188 uint32_t* texName, uint32_t* fbName, uint32_t* status) {
201 *status = glCheckFramebufferStatusOES(GL_FRAMEBUFFER_OES);
187 bindImageAsFramebuffer(EGLImageKHR image, uint32_t* texName, uint32_t* fbName, uint32_t* status) argument
H A DGLES20RenderEngine.cpp154 uint32_t* texName, uint32_t* fbName, uint32_t* status) {
166 *status = glCheckFramebufferStatus(GL_FRAMEBUFFER);
153 bindImageAsFramebuffer(EGLImageKHR image, uint32_t* texName, uint32_t* fbName, uint32_t* status) argument
H A DProgram.cpp39 GLint status; local
40 glGetProgramiv(programId, GL_LINK_STATUS, &status);
41 if (status != GL_TRUE) {
101 GLint status; local
102 glGetShaderiv(shader, GL_COMPILE_STATUS, &status);
103 if (status != GL_TRUE) {
/frameworks/opt/mms/src/java/com/google/android/mms/pdu/
H A DNotifyRespInd.java31 * @param status the status value
38 int status) throws InvalidHeaderValueException {
43 setStatus(status);
36 NotifyRespInd(int mmsVersion, byte[] transactionId, int status) argument

Completed in 375 milliseconds

1234567891011>>