Menu
  • HOME
  • TAGS

Broken pipe error when executing Android method more than once?

java,android,illegalstateexception,broken-pipe

When you execute the command os.writeBytes("exit\n"); this ends your su session. The su process ends itself and the pipe your are using for writing commands to the su shell gets broken. Therefore if you want to execute another command you have to restart a new su session or do not...

Errno 32: Broken pipe

python,linux,broken-pipe

Seems like you are using Spyder IDE. This seems like a known issue in Spyder 2.1.10 , according to Issue 1474 (Issue 1106) . The fix seems to be available in Spyder 2.2....

Java IO Exception Broken Pipe when attempting to populate listview with data from Parse.com

android,listview,parse.com,broken-pipe

Parse has already async methods, Try this ParseQuery<ParseObject> query = ParseQuery.getQuery("Fraternities"); query.findInBackground(new FindCallback<ParseObject>() { public void done(List<ParseObject> fraternityList, ParseException e) { // Do your work here } }); ...

Dgrid - Firefox breaks while trying to load large data set in dgrid

javascript,firefox,dojo,dgrid,broken-pipe

I don't really know what is wrong per sey, but I would imagine that you are having memory issues. I was using Gridx with about 15,000 rows and had lots of problems with memory until I implemented the JSONRest store. For so many rows, I would strongly recommend to use...

java socket outputstream and broken pipe

java,sockets,outputstream,broken-pipe

'Broken pipe' means that you've written data to a connection that has already been closed by the other end. Ergo the problem lies at the other end, not in this code. Possibly the other end doesn't really understand your length-word protocol for example, or doesn't implement it correctly. If it's...

C++ fwrite , ferror code 36 Broken Pipie

c++,codeblocks,fwrite,broken-pipe,ferror

The problem is here: long test = fwrite(tablica,sizeof(long),sizeof(tablica),pFile); Calling sizeof on an array returns the size of the array in bytes, not the number of elements, as explained here: How do I determine the size of my array in C? So you're telling fwrite to write 40000 longs, not 10000...

Copy (over a web API) is complete; I get a broken pipe anyway. How to solve it?

java,box-api,broken-pipe

The SDK also provides BoxAPIRequest and BoxAPIResponse classes that let you make manual requests for advanced use-cases. These classes still automatically handle authentication, errors, back-off, etc. but give you more granular control over the request. In your case, you could do make a download request manually by doing: // Note:...

What is a broken pipe error?

python,broken-pipe

A pipe connects two processes. One of these processes holds the read-end of the pipe, and the other holds the write-end. When the pipe is written to, data is stored in a buffer waiting for the other processes to retrieve it. What happens if a process is writing to a...