Tagged Questions
0
votes
2answers
105 views
How to get actual size of mounted SD card in Android?
I'm trying to find a way to find the total size and free space of a mounted SD card on a phone, from my research on SOF and on the Android devs site I was able to find the method ...
0
votes
0answers
344 views
windows phone 8 : c# system out of memory exception : loading lots of images from the web
This is one of the first applications I'm developing on the Windows Phone environment so I'm basically learning as I go. I have an application with a pivot control and on each of the three pivot items ...
1
vote
5answers
146 views
Efficient use of boolean true and false in C++?
Would any compiler experts be able to comment on the efficient use of boolean values? Specifically, is the compiler able to optimize a std::vector<boolean> to use minimal memory? Is there an ...
0
votes
1answer
203 views
WP8: can my App read file that is stored in internal memory by user?
If I copy my files (text based *.lrc) to WP8 device's (Lumia 920) internal memory through USB connection, can my App read them? Or it is only allowed to read from isolated storage? what path would be ...
4
votes
1answer
206 views
operating systems main memory fragmentation
Suppose a small computer system has 4 MB of main memory. The system manages it in fixed sized frames. A frames table maintains the status of each frame in memory. How large (how many byte) should a ...
0
votes
1answer
29 views
checking android app memory files
I'm working on an android app, and the app saves data into the memory.
Is there anyway for me to view the files saved through my pc? it would help a lot with debugging.
Thank you.
0
votes
4answers
59 views
Android: How to access data across all Activites?
I am searching for a possibility to store the user ID (received after login) in a way that all Activites have access to it.
If I understood it correctly a SharedPreference is only available for one ...
3
votes
1answer
952 views
Android: download file from internet using DownloadManager and save it to the internal memory
I am downloading a file from the web to my Android device using DownloadManager. I am saving this file on the sdcard using:
DownloadManager.Request req = new ...
2
votes
2answers
85 views
How do I store structures that are read from a file in C?
I came up with a project to work on learning C and I have kind of hit a wall.
The project is simply a card game where the player has two sets of cards, one set is a deck of a set size and the other is ...
1
vote
2answers
167 views
How are my bytes in C stored?
First, I'm a student still. So I am not very experienced.
I'm working with a piece of bluetooth hardware and I am using its protocol to send it commands. The protocol requires packets to be sent ...
0
votes
1answer
114 views
When should I use NSKeyedArchiver instead of SQLite?
I'm writing an iPhone app, which needs to store about 10 records, each takes up 20-200 KB space. I need to choose between NSKeyedArchiver and SQLite. My questions are:
Which takes up less space to ...
0
votes
1answer
503 views
Sizing cache in Internal Memory
I'm looking to use internal memory to store my cache files instead of external storage. The main reason is that I need my app to function even if external storage is shared with a computer.
The dev ...
0
votes
1answer
114 views
Detailed and specific use of Asp.net Sessions?
Can any one help me in explaining the detailed and proper use of ASP.NET Sessions.
i read many web portals and blogs but i do not understand how to and where to use the sessions.
we create many ...
0
votes
1answer
322 views
Saving a picture into memory
I need to use the device camera to take a picture, save it into its memory and get the uri so I can email it afterwards.
I'm using Android 3.2 on a device with no memory card (just 11 gigs of ...
1
vote
2answers
2k views
Can't read the file from internal storage (file doesn't exist issue)
I have a routed device and when I do this
adb shell cat /data/misc/bluetooth/dynamic_auto_pairing.conf
it prints the content of this file.
But in my code when I write something like this, it says ...
0
votes
1answer
83 views
physical storage of the kernel data
I have some question about physical storage of the kernel data in Linux, I know that the upper 1 GB of the VIRTUAL memory of each process points to the same PHYSICAL location, but
this piece of the ...
7
votes
8answers
648 views
Using array fields instead of massive number of objects
In light of this article, I am wondering what people's experiences are with storing massive datasets (say, >10,000,000 objects) in-memory using arrays to store data fields instead of instantiating ...
1
vote
1answer
301 views
store data to isolated storage in memory
I have to store data to isolated storage in memory in such a way that other applications
that are run by the same user and at the same time other users running the same application
cannot access the ...
0
votes
2answers
88 views
Java: How should I store thing per-user in memory
I need to store values specific to a username into memory, I was thinking about something like dynamically naming vars, so that I could do something like
["bubby4j_falling"] = true;
and index it by
...
0
votes
1answer
228 views
iPhone - in-app purchase : recording the purchase
I've read here and elsewhere the following thing :
Finally, after providing the feature,
you should “remember” that the user
has purchased the app. Apple’s
recommended way is to use
...
1
vote
3answers
84 views
String not storing in a structure properly
typedef struct class {
char* CLASS_ID;
char* CLASS_NAME;
}
What would cause those two strings to lose their values over the course of 30-40 unrelated lines of code? (Assigned to a pointer ...
12
votes
1answer
24k views
Android memory types (RAM v Internal Memory)
On a separate thread I demonstrated my ignorance of memory types by asking about the best way to copy a file into "internal memory" and was advised that this was not a good idea and that it would be ...
3
votes
3answers
360 views
Efficient memory storage and retrieval of categorized string literals in C++
Note: This is a follow up to this question.
I have a "legacy" program which does hundreds of string matches against big chunks of HTML. For example if the HTML matches 1 of 20+ strings, do something. ...
0
votes
5answers
247 views
C string literal storage between multiple copies of process or library
What is the behavior of various systems when you have more than one copy of a particular program or library running, do string literals get stored once in RAM or once for every copy of the ...
1
vote
1answer
211 views
Storage Space/HD space on iPhone via code
How do I get the amount of storage room left on the iPhone? I need to be able to ge the info that you can get with appbox pro, ie. space used, space available, space total, all in GB.
How can I ...
0
votes
2answers
144 views
Objective-C memory management issue
I've created a graphing application that calls a web service. The user can zoom & move around the graph, and the program occasionally makes a decision to call the web service for more data ...
5
votes
2answers
6k views
android internal phone storage
how can you retrieve yours phone internal storage from an app? I found memoryinfo, but it seems that returns information on how much memory your currently running tasks. I am trying to get my app to ...
2
votes
2answers
1k views
dynamic array pointer to binary file
Know this might be rather basic, but I been trying to figure out how to one after create a dynamic array such as
double* data = new double[size];
be used as a source of data to be kept in to a ...
16
votes
7answers
2k views
C++ string literal data type storage
void f()
{
char *c = "Hello World!"
}
Where is the string stored? What's the property of it? I just know it is a constant, what else? Can I return it from inside of the function body?
8
votes
9answers
939 views
Best way to store many files in disk
I couldn't find a good title for the question, this is what I'm trying to do:
This is .NET application.
I need to store up to 200000 objects (between 3KB-500KB)
I need to store about 10 of them ...
1
vote
8answers
2k views
What is data area?
In C++ the storage class specifier static allocates memory from the data area. What does "data area" mean?
