Home | History | Annotate | Download | only in var_dictionary

Lines Matching refs:cmd

38   common.naclModule.postMessage({cmd: 'Get', key: key});
52 common.naclModule.postMessage({cmd: 'Set', key: key, value: value});
57 common.naclModule.postMessage({cmd: 'Delete', key: key});
61 common.naclModule.postMessage({cmd: 'GetKeys'});
66 common.naclModule.postMessage({cmd: 'HasKey', key: key});
73 var cmd = msg.cmd;
77 // cmd will be empty when the module first loads and sends the contents of
80 // Note that cmd is a String object, not a primitive, so the comparison cmd
82 if (cmd != '') {
84 'Function ' + cmd + ' returned ' + JSON.stringify(result));